From e2e318bdfe4608e49d2f0d6af2686663600a0de6 Mon Sep 17 00:00:00 2001 From: Ross Harrison Date: Mon, 8 Oct 2012 14:13:56 -0500 Subject: [PATCH] Add AsyncSenTest to repo --- AsyncSenTest/AsyncSenTest.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 AsyncSenTest/AsyncSenTest.podspec diff --git a/AsyncSenTest/AsyncSenTest.podspec b/AsyncSenTest/AsyncSenTest.podspec new file mode 100644 index 00000000..d2ba9451 --- /dev/null +++ b/AsyncSenTest/AsyncSenTest.podspec @@ -0,0 +1,13 @@ + +Pod::Spec.new do |s| + s.name = "AsyncSenTest" + s.version = "0.0.1" + s.summary = "Asynchronous Test for OCTest (SenTest)." + s.homepage = "https://github.com/rharriso/AsyncSenTest" + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { "Ross Harrison" => "rtharrison86@gmail.com" } + s.source = { :git => "https://github.com/rharriso/AsyncSenTest.git", :tag => "0.0.1" } + s.source_files = 'Classes', 'Classes/**/*.{h,m}' + s.frameworks = 'SenTestingKit' + s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(SDKROOT)/Developer/Library/Frameworks" "$(DEVELOPER_LIBRARY_DIR)/Frameworks"' } +end