diff --git a/Cedar/0.0.1/Cedar.podspec b/Cedar/0.0.1/Cedar.podspec new file mode 100644 index 00000000000000..057305ba7c5aef --- /dev/null +++ b/Cedar/0.0.1/Cedar.podspec @@ -0,0 +1,22 @@ +Pod::Spec.new do |s| + s.name = 'Cedar' + s.version = '0.0.1' + 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.source = { :git => 'git://github.com/pivotal/cedar.git' } + + files = FileList['Source/**/*.{h,m}'] + if config.ios? + s.header_dir = 'Cedar-iOS' + files.exclude(/CDROTestRunner.m$/) + else + files.exclude(/iPhone/) + end + s.source_files = files + + s.clean_paths = FileList['*'].exclude(/(Source|README.markdown|MIT.LICENSE)$/) + + s.library = 'stdc++' +end \ No newline at end of file