From 37edabe65a2f948bdac5404a7f32a63375dfd1a6 Mon Sep 17 00:00:00 2001 From: Alexey Belkevich Date: Thu, 11 Jul 2013 12:27:10 +0300 Subject: [PATCH 1/2] Added cocoapods podspec for CedarAsync --- CedarAsync.podspec | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 CedarAsync.podspec diff --git a/CedarAsync.podspec b/CedarAsync.podspec new file mode 100644 index 0000000..69ccf81 --- /dev/null +++ b/CedarAsync.podspec @@ -0,0 +1,18 @@ +Pod::Spec.new do |s| + s.name = "CedarAsync" + s.version = "0.0.1" + s.summary = "Asynchronous testing for Cedar (and others)." + s.description = "CedarAsync lets you use Cedar matchers to test asynchronous code." + s.homepage = "https://github.com/cppforlife/CedarAsync" + s.license = { :type => 'MIT', :text => 'LICENSE' } + s.author = { "Dmitriy Kalinin" => "email@address.com" } + s.source = { :git => "https://github.com/cppforlife/CedarAsync.git", :commit => "ccd4ecc3ae2a697267f22a3e216942ef00e74a54" } + + s.ios.deployment_target = '5.0' + s.osx.deployment_target = '10.7' + + s.source_files = 'Source', 'Source/**/*.{h,m}' + s.dependency "Cedar" + s.xcconfig = { 'CLANG_CXX_LANGUAGE_STANDARD' => 'gnu++11', 'CLANG_CXX_LIBRARY' => 'libc++' } + +end From 83607be32ef2b01fa8ec65b5017ba0d4b4cd1a5b Mon Sep 17 00:00:00 2001 From: Alexey Belkevich Date: Tue, 5 Nov 2013 13:23:32 +0200 Subject: [PATCH 2/2] Updated podspec version --- CedarAsync.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CedarAsync.podspec b/CedarAsync.podspec index 69ccf81..55e607e 100644 --- a/CedarAsync.podspec +++ b/CedarAsync.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "CedarAsync" - s.version = "0.0.1" + s.version = "0.0.2" s.summary = "Asynchronous testing for Cedar (and others)." s.description = "CedarAsync lets you use Cedar matchers to test asynchronous code." s.homepage = "https://github.com/cppforlife/CedarAsync"