diff --git a/Parse-OSX.podspec b/Parse-OSX.podspec deleted file mode 100644 index 6c7b65805..000000000 --- a/Parse-OSX.podspec +++ /dev/null @@ -1,42 +0,0 @@ -Pod::Spec.new do |s| - s.deprecated_in_favor_of = 'Parse' - - s.name = 'Parse-OSX' - s.version = '1.8.1' - s.license = { :type => 'Commercial', :text => "See https://www.parse.com/about/terms" } - s.homepage = 'https://www.parse.com/' - s.summary = 'Parse is a complete technology stack to power your app\'s backend.' - s.documentation_url = 'https://parse.com/docs/ios_guide' - s.authors = 'Parse' - - s.source = { :git => "https://github.com/ParsePlatform/Parse-SDK-iOS-OSX.git", :tag => s.version.to_s } - - s.platform = :osx - s.osx.deployment_target = '10.9' - s.requires_arc = true - - s.header_dir = 'Parse' - s.module_name = 'Parse' - - s.source_files = 'Parse/*.{h,m}', - 'Parse/Internal/**/*.{h,m}' - s.public_header_files = 'Parse/*.h' - s.resources = 'Parse/Resources/en.lproj' - s.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.frameworks = 'ApplicationServices', - 'CFNetwork', - 'CoreGraphics', - 'CoreLocation', - 'QuartzCore', - 'Security', - 'SystemConfiguration' - s.libraries = 'z', 'sqlite3' - - s.dependency 'Bolts/Tasks', '>= 1.2.0' -end diff --git a/Rakefile b/Rakefile index 55e85fc63..6b427e428 100644 --- a/Rakefile +++ b/Rakefile @@ -297,8 +297,7 @@ namespace :test do desc 'Run Podspec Lint' task :podspecs do |_| - podspecs = ['Parse.podspec', - 'Parse-OSX.podspec'] + podspecs = ['Parse.podspec'] results = [] podspecs.each do |podspec| results << system("pod lib lint #{podspec} --verbose")