Skip to content

Instantly share code, notes, and snippets.

@klaaspieter
Created May 8, 2013 12:11
Show Gist options
  • Save klaaspieter/5540044 to your computer and use it in GitHub Desktop.
Save klaaspieter/5540044 to your computer and use it in GitHub Desktop.
Podspec for the ObjectiveMixin library https://github.com/vl4dimir/ObjectiveMixin
Pod::Spec.new do |s|
s.name = "ObjectiveMixin"
s.version = "1.0.1"
s.summary = "Ruby-like mixin functionality for Objective-C programs."
s.homepage = "https://github.com/vl4dimir/ObjectiveMixin"
s.license = { :type => 'BSD', :file => 'LICENSE' }
s.author = "Vladimir Mitrovic"
s.source = { :git => "https://github.com/vl4dimir/ObjectiveMixin.git", :tag => "1.0.1" }
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.source_files = 'ObjectiveMixin/**/*.{h,m}'
s.public_header_files = 'ObjectiveMixin/**/*.h'
s.requires_arc = false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment