diff --git a/Kiwi/1.0.0/Kiwi.podspec b/Kiwi/1.0.0/Kiwi.podspec index 2c30eb26048f1b..7d7aecd95ff236 100644 --- a/Kiwi/1.0.0/Kiwi.podspec +++ b/Kiwi/1.0.0/Kiwi.podspec @@ -8,4 +8,5 @@ Pod::Spec.new do |s| s.source_files = 'Kiwi' s.framework = 'SenTestingKit' s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(SDKROOT)/Developer/Library/Frameworks"' } + s.clean_paths = ["Examples", "Classes", "*.xcodeproj", "Other Sources", "Resources", "Templates", "Tests", "*.sh"] end diff --git a/Kiwi/1.0.1/Kiwi.podspec b/Kiwi/1.0.1/Kiwi.podspec new file mode 100644 index 00000000000000..50241ec8564fe3 --- /dev/null +++ b/Kiwi/1.0.1/Kiwi.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = 'Kiwi' + s.version = '1.0.1' + s.summary = 'A Behavior Driven Development library for iPhone and iPad development.' + s.homepage = 'http://kiwi-lib.info' + s.authors = { 'Allen Ding' => 'allen@allending.com', 'Luke Redpath' => 'luke@lukeredpath.co.uk' } + s.source = { :git => 'https://github.com/allending/Kiwi.git', :tag => 'v1.0.1' } + s.source_files = 'Kiwi' + s.framework = 'SenTestingKit' + s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(SDKROOT)/Developer/Library/Frameworks"' } + s.clean_paths = ["Examples", "Classes", "*.xcodeproj", "Other Sources", "Resources", "Templates", "Tests", "*.sh"] +end