12 lines
455 B
Ruby
12 lines
455 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'ObjectiveMixin'
|
|
s.version = '1.0.0'
|
|
s.license = 'Simplified BSD'
|
|
s.summary = 'Ruby-like mixin functionality for Objective-C programs.'
|
|
s.homepage = 'https://github.com/vl4dimir/ObjectiveMixin'
|
|
s.author = { 'Vladimir Mitrovic' => 'https://github.com/vl4dimir' }
|
|
s.source = { :git => 'https://github.com/vl4dimir/ObjectiveMixin.git', :tag => '1.0.0' }
|
|
s.source_files = 'ObjectiveMixin/*.{h,m}'
|
|
|
|
end
|