2015-01-08 14:40:02 +08:00
|
|
|
Pod::Spec.new do |s|
|
2015-01-09 04:43:43 +08:00
|
|
|
s.name = 'Snap'
|
2015-01-09 04:54:58 +08:00
|
|
|
s.version = '0.0.2'
|
2015-01-08 14:40:02 +08:00
|
|
|
s.license = 'MIT'
|
|
|
|
s.summary = 'Harness the power of auto layout with a simplified, chainable, and compile time safe syntax.'
|
2015-01-09 04:43:43 +08:00
|
|
|
s.homepage = 'https://github.com/Masonry/Snap'
|
2015-01-08 14:40:02 +08:00
|
|
|
s.authors = { 'Robert Payne' => 'robertpayne@me.com' }
|
|
|
|
s.social_media_url = 'http://twitter.com/robertjpayne'
|
2015-01-09 04:54:58 +08:00
|
|
|
s.source = { :git => 'https://github.com/Masonry/Snap.git', :tag => '0.0.2' }
|
2015-01-08 14:40:02 +08:00
|
|
|
|
|
|
|
s.ios.deployment_target = '8.0'
|
|
|
|
s.osx.deployment_target = '10.9'
|
|
|
|
|
2015-01-09 04:43:43 +08:00
|
|
|
s.source_files = 'Snap/*.swift'
|
2015-01-08 14:40:02 +08:00
|
|
|
end
|