Skip to content

Commit

Permalink
[Add] Cedar.podspec 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanregisser committed Apr 24, 2012
1 parent a7e9291 commit 2f44b3d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Cedar/0.0.1/Cedar.podspec
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 2f44b3d

Please sign in to comment.