Files
JBChartView/Specify/0.0.2/Specify.podspec
T
Ryan Davies d0262abcac [Fix] Specify (0.0.2)
Reference Inline ~> 0.1.0 specifically. 0.2.0 breaks build.
2013-02-12 22:25:00 +00:00

16 lines
647 B
Ruby

Pod::Spec.new do |s|
s.name = 'Specify'
s.version = '0.0.2'
s.license = 'MIT'
s.platform = :ios, '5.0'
s.summary = "An Objective-C behaviour-driven development library."
s.homepage = 'https://github.com/rdavies/Specify'
s.author = { 'Ryan Davies' => 'ryan@ryandavies.net' }
s.source = { :git => 'https://github.com/rdavies/Specify.git', :tag => '0.0.2' }
s.source_files = 'Specify/*.{h,m}'
s.framework = 'SenTestingKit'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(SDKROOT)/Developer/Library/Frameworks" "$(DEVELOPER_LIBRARY_DIR)/Frameworks"' }
s.requires_arc = true
s.dependency 'Inline', '~> 0.1.0'
end