Jonas Budelmann 12 жил өмнө
parent
commit
b296cb5dbc
1 өөрчлөгдсөн 5 нэмэгдсэн , 3 устгасан
  1. 5 3
      Masonry.podspec

+ 5 - 3
Masonry.podspec

@@ -1,12 +1,12 @@
 Pod::Spec.new do |s|
 Pod::Spec.new do |s|
   s.name     = 'Masonry'
   s.name     = 'Masonry'
-  s.version  = '0.1.6'
+  s.version  = '0.2.0'
   s.license  = 'MIT'
   s.license  = 'MIT'
   s.summary  = 'Harness the power of iOS AutoLayout NSLayoutConstraints with a simplified, chainable and descriptive syntax.'
   s.summary  = 'Harness the power of iOS AutoLayout NSLayoutConstraints with a simplified, chainable and descriptive syntax.'
   s.homepage = 'https://github.com/cloudkite/Masonry'
   s.homepage = 'https://github.com/cloudkite/Masonry'
   s.author   = { 'Jonas Budelmann' => 'jonas.budelmann@gmail.com' }
   s.author   = { 'Jonas Budelmann' => 'jonas.budelmann@gmail.com' }
 
 
-  s.source   = { :git => 'https://github.com/cloudkite/Masonry.git', :tag => 'v0.1.6' }
+  s.source   = { :git => 'https://github.com/cloudkite/Masonry.git', :tag => 'v0.2.0' }
 
 
   s.description = %{
   s.description = %{
     Masonary is a light-weight layout framework which wraps AutoLayout with a nicer syntax.
     Masonary is a light-weight layout framework which wraps AutoLayout with a nicer syntax.
@@ -16,8 +16,10 @@ Pod::Spec.new do |s|
 
 
   s.source_files = 'Masonry/*.{h,m}'
   s.source_files = 'Masonry/*.{h,m}'
 
 
-  s.frameworks = 'Foundation', 'UIKit'
+  s.ios.frameworks = 'Foundation', 'UIKit'
+  s.osx.frameworks = 'Foundation', 'AppKit'
 
 
   s.ios.deployment_target = '6.0' # using autolayout
   s.ios.deployment_target = '6.0' # using autolayout
+  s.osx.deployment_target = '10.8' # should change to 10.7
   s.requires_arc = true
   s.requires_arc = true
 end
 end