Skip to content

Commit

Permalink
Deprecate Parse-OSX pod, add OS X support to Parse pod.
Browse files Browse the repository at this point in the history
  • Loading branch information
nlutsenko committed Aug 19, 2015
1 parent bbd1fe6 commit ee70030
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 11 deletions.
3 changes: 3 additions & 0 deletions Parse-OSX.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
Pod::Spec.new do |s|
s.deprecated = true
s.deprecated_in_favor_of = 'Parse'

s.name = 'Parse-OSX'
s.version = '1.8.0'
s.license = { :type => 'Commercial', :text => "See https://www.parse.com/about/terms" }
Expand Down
40 changes: 29 additions & 11 deletions Parse.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,43 @@ Pod::Spec.new do |s|

s.source = { :git => "https://github.com/ParsePlatform/Parse-SDK-iOS-OSX.git", :tag => s.version.to_s }

s.platform = :ios
s.platform = :ios, :osx
s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.9'

s.requires_arc = true

s.source_files = 'Parse/*.{h,m}',
'Parse/Internal/**/*.{h,m}'
s.public_header_files = 'Parse/*.h'

s.osx.exclude_files = 'Parse/PFNetworkActivityIndicatorManager.{h,m}',
'Parse/PFProduct.{h,m}',
'Parse/PFPurchase.{h,m}',
'Parse/Internal/PFAlertView.{h,m}',
'Parse/Internal/Product/**/*.{h,m}',
'Parse/Internal/Purchase/**/*.{h,m}'

s.resources = 'Parse/Resources/en.lproj'

s.frameworks = 'AudioToolbox',
'CFNetwork',
'CoreGraphics',
'CoreLocation',
'QuartzCore',
'Security',
'StoreKit',
'SystemConfiguration'
s.weak_frameworks = 'Accounts',
'Social'
s.ios.frameworks = 'AudioToolbox',
'CFNetwork',
'CoreGraphics',
'CoreLocation',
'QuartzCore',
'Security',
'StoreKit',
'SystemConfiguration'
s.ios.weak_frameworks = 'Accounts',
'Social'
s.osx.frameworks = 'ApplicationServices',
'CFNetwork',
'CoreGraphics',
'CoreLocation',
'QuartzCore',
'Security',
'SystemConfiguration'

s.libraries = 'z', 'sqlite3'

s.dependency 'Bolts/Tasks', '>= 1.2.0'
Expand Down

0 comments on commit ee70030

Please sign in to comment.