14 lines
633 B
Ruby
14 lines
633 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "MACollectionUtilities"
|
|
s.version = "0.0.1"
|
|
s.summary = "Smalltalk-inspired methods and macros on Cocoa collection classes, taking advantage of blocks."
|
|
s.homepage = "https://github.com/mikeash/MACollectionUtilities"
|
|
s.license = 'MIT'
|
|
s.author = { "Mike Ash" => "mike@mikeash.com" }
|
|
s.source = { :git => "https://github.com/mikeash/MACollectionUtilities.git", :commit => "0f680db6f852fb53b908bf7a6565a38b65194933" }
|
|
s.ios.deployment_target = '4.0'
|
|
s.osx.deployment_target = '10.6'
|
|
s.source_files = '*.{h,m}'
|
|
s.public_header_files = '*.h'
|
|
end
|