Showing
1 changed file
with
5 additions
and
3 deletions
1 | Pod::Spec.new do |s| | 1 | Pod::Spec.new do |s| |
2 | s.name = 'Masonry' | 2 | s.name = 'Masonry' |
3 | - s.version = '0.1.6' | 3 | + s.version = '0.2.0' |
4 | s.license = 'MIT' | 4 | s.license = 'MIT' |
5 | s.summary = 'Harness the power of iOS AutoLayout NSLayoutConstraints with a simplified, chainable and descriptive syntax.' | 5 | s.summary = 'Harness the power of iOS AutoLayout NSLayoutConstraints with a simplified, chainable and descriptive syntax.' |
6 | s.homepage = 'https://github.com/cloudkite/Masonry' | 6 | s.homepage = 'https://github.com/cloudkite/Masonry' |
7 | s.author = { 'Jonas Budelmann' => 'jonas.budelmann@gmail.com' } | 7 | s.author = { 'Jonas Budelmann' => 'jonas.budelmann@gmail.com' } |
8 | 8 | ||
9 | - s.source = { :git => 'https://github.com/cloudkite/Masonry.git', :tag => 'v0.1.6' } | 9 | + s.source = { :git => 'https://github.com/cloudkite/Masonry.git', :tag => 'v0.2.0' } |
10 | 10 | ||
11 | s.description = %{ | 11 | s.description = %{ |
12 | Masonary is a light-weight layout framework which wraps AutoLayout with a nicer syntax. | 12 | Masonary is a light-weight layout framework which wraps AutoLayout with a nicer syntax. |
@@ -16,8 +16,10 @@ Pod::Spec.new do |s| | @@ -16,8 +16,10 @@ Pod::Spec.new do |s| | ||
16 | 16 | ||
17 | s.source_files = 'Masonry/*.{h,m}' | 17 | s.source_files = 'Masonry/*.{h,m}' |
18 | 18 | ||
19 | - s.frameworks = 'Foundation', 'UIKit' | 19 | + s.ios.frameworks = 'Foundation', 'UIKit' |
20 | + s.osx.frameworks = 'Foundation', 'AppKit' | ||
20 | 21 | ||
21 | s.ios.deployment_target = '6.0' # using autolayout | 22 | s.ios.deployment_target = '6.0' # using autolayout |
23 | + s.osx.deployment_target = '10.8' # should change to 10.7 | ||
22 | s.requires_arc = true | 24 | s.requires_arc = true |
23 | end | 25 | end |
-
Please register or login to post a comment