From d6f189175ec50bb061d5da170b007af12b54b873 Mon Sep 17 00:00:00 2001 From: Marc Schwieterman Date: Sun, 28 Oct 2012 23:18:12 -0400 Subject: [PATCH] [Update] Cedar (0.8.1) --- Cedar/0.8.1/Cedar.podspec | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Cedar/0.8.1/Cedar.podspec diff --git a/Cedar/0.8.1/Cedar.podspec b/Cedar/0.8.1/Cedar.podspec new file mode 100644 index 00000000..f06fce4b --- /dev/null +++ b/Cedar/0.8.1/Cedar.podspec @@ -0,0 +1,25 @@ +Pod::Spec.new do |s| + s.name = 'Cedar' + s.version = '0.8.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.license = { :type => 'MIT', :file => 'MIT.LICENSE' } + s.source = { :git => 'https://github.com/pivotal/cedar.git', :tag => '0.8.1' } + + files_pattern = 'Source/**/*.{h,m,mm}' + + 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/) + + # 0.8.x versions of this pod require C++98: + # https://github.com/pivotal/cedar/issues/47 + s.xcconfig = { + 'CLANG_CXX_LANGUAGE_STANDARD' => 'c++98', + 'CLANG_CXX_LIBRARY' => 'libstdc++' + } + +end