Skip to content

Commit

Permalink
[Update] Cedar (0.9.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcisme committed Oct 29, 2012
1 parent d6f1891 commit 155cf26
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions Cedar/0.9.0/Cedar.podspec
@@ -0,0 +1,26 @@
Pod::Spec.new do |s|
s.name = 'Cedar'
s.version = '0.9.0'
s.license = 'MIT'
s.summary = 'BDD-style testing using Objective-C.'
s.homepage = 'https://github.com/pivotal/cedar'
s.author = { 'Pivotal Labs' => 'http://pivotallabs.com' }
s.license = { :type => 'MIT', :file => 'MIT.LICENSE' }
s.source = { :git => 'https://github.com/pivotal/cedar.git', :tag => '0.9.0' }

files_pattern = 'Source/**/*.{h,m,mm}'

s.ios.deployment_target = '5.0'
s.ios.header_dir = 'Cedar-iOS'
s.ios.source_files = FileList[files_pattern].exclude(/CDROTestRunner.m$/)

s.osx.source_files = FileList[files_pattern].exclude(/iPhone/)

# Versions of this pod >= 0.9.0 require C++11.
# https://github.com/pivotal/cedar/issues/47
s.xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++0x',
'CLANG_CXX_LIBRARY' => 'libc++'
}

end

0 comments on commit 155cf26

Please sign in to comment.