Pod::Spec.new do |s| s.name = 'CorePlot' s.version = '1.6' s.license = 'BSD' s.summary = 'Cocoa plotting framework for Mac OS X and iOS.' s.homepage = 'https://github.com/core-plot' s.social_media_url = 'https://twitter.com/CorePlot' s.documentation_url = 'http://core-plot.github.io' s.authors = { 'Drew McCormack' => 'drewmccormack@mac.com', 'Brad Larson' => 'larson@sunsetlakesoftware.com', 'Eric Skroch' => 'eskroch@mac.com', 'Barry Wark' => 'barrywark@gmail.com' } s.source = { :git => 'https://github.com/core-plot/core-plot.git', :tag => 'release_1.6'} s.description = 'Core Plot is a plotting framework for OS X and iOS. It provides 2D visualization ' \ 'of data, and is tightly integrated with Apple technologies like Core Animation, ' \ 'Core Data, and Cocoa Bindings.' s.ios.deployment_target = '8.0' s.osx.deployment_target = '10.7' s.ios.header_dir = 'ios' s.osx.header_dir = 'osx' s.source_files = 'framework/Source/*.{h,m}', 'framework/CocoaPods/*.h', 'framework/TestResources/CorePlotProbes.d' s.exclude_files = '**/*{TestCase,Tests}.{h,m}', '**/mainpage.h' s.ios.source_files = 'framework/CorePlot-CocoaTouch.h', 'framework/iPhoneOnly/*.{h,m}' s.osx.source_files = 'framework/MacOnly/*.{h,m}' s.private_header_files = '**/_*.h', '**/CorePlotProbes.h' s.requires_arc = true s.xcconfig = { 'ALWAYS_SEARCH_USER_PATHS' => 'YES' } s.frameworks = 'QuartzCore', 'Accelerate' s.ios.frameworks = 'UIKit', 'Foundation' s.osx.frameworks = 'Cocoa' end