From cbeeeecb73dcdf4e58b0d09aff59d7350a9695be Mon Sep 17 00:00:00 2001 From: Peter Jihoon Kim Date: Sun, 30 Sep 2012 18:15:17 +0800 Subject: [PATCH] removed clean_paths from Specta podspec --- Specta/0.1.6/Specta.podspec | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/Specta/0.1.6/Specta.podspec b/Specta/0.1.6/Specta.podspec index 6987ec3e..1ae856ce 100644 --- a/Specta/0.1.6/Specta.podspec +++ b/Specta/0.1.6/Specta.podspec @@ -2,11 +2,11 @@ Pod::Spec.new do |s| s.name = 'Specta' s.version = '0.1.6' s.license = 'MIT' - s.summary = 'A light-weight TDD / BDD framework for Objective-C & Cocoa' + s.summary = 'A light-weight TDD / BDD framework for Objective-C & Cocoa.' s.homepage = 'http://github.com/petejkim/specta' s.author = { 'Peter Jihoon Kim' => 'raingrove@gmail.com' } - s.source = { :git => 'http://github.com/petejkim/specta.git', :tag => 'v0.1.6' } + s.source = { :git => 'https://github.com/petejkim/specta.git', :tag => 'v0.1.6' } s.description = %{ Specta is a light-weight testing framework for Objective-C and Cocoa that @@ -18,11 +18,8 @@ Pod::Spec.new do |s| s.source_files = 'src/**/*.{h,m}' - s.clean_paths = "Rakefile", "products", "test", "*.xcodeproj" - s.frameworks = 'Foundation', 'SenTestingKit' - s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(DEVELOPER_FRAMEWORKS_DIR)"', - 'LD_RUNPATH_SEARCH_PATHS' => '"$(DEVELOPER_FRAMEWORKS_DIR)"' } + s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(SDKROOT)/Developer/Library/Frameworks" "$(DEVELOPER_LIBRARY_DIR)/Frameworks"' } end