From a1b0fefdc146c5cdc171b2edce864d2cf150bf04 Mon Sep 17 00:00:00 2001 From: stcui Date: Sun, 11 Nov 2012 01:19:09 +0800 Subject: [PATCH 001/148] Add BeeFramework --- BeeFramework/0.1/BeeFramework.podspec | 54 +++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 BeeFramework/0.1/BeeFramework.podspec diff --git a/BeeFramework/0.1/BeeFramework.podspec b/BeeFramework/0.1/BeeFramework.podspec new file mode 100644 index 00000000..d115381e --- /dev/null +++ b/BeeFramework/0.1/BeeFramework.podspec @@ -0,0 +1,54 @@ +# +# Be sure to run `pod spec lint BeeFramework.podspec' to ensure this is a +# valid spec. +# +# Remove all comments before submitting the spec. Optional attributes are commented. +# +# For details see: https://github.com/CocoaPods/CocoaPods/wiki/The-podspec-format +# +Pod::Spec.new do |s| + s.name = "BeeFramework" + s.version = "0.1" + s.summary = "Bee Framework 是一款iOS平台的MVC应用快速开发框架." + s.description = <<-DESC + Bee Framework 是一款iOS平台的MVC应用快速开发框架,使用Objective-C开发. + 其早期原型曾经被应用在 QQ游戏大厅 for iPhone、QQ空间 for iPhone 等多款精品APP中. 在最近几个月中, 我梳理并重构了设计,并取名为Bee, 寓意着“清晰, 灵活, 高效, 纯粹”. + + Bee 从根本上解决了iOS开发者长期困扰的各种问题, 诸如: 分层架构如何设计, 层与层之间消息传递与处理, 网络操作及缓存, 异步及多线程, 以及适配产品多变的UI布局需求. + DESC + s.homepage = "http://bbs.whatsbug.com/BeeFramework" + s.license = 'MIT' + + # Specify the authors of the library, with email addresses. You can often find + # the email addresses of the authors by using the SCM log. E.g. $ git log + # + s.authors = { "gavinkwoe" => "gavinkwoe@gmail.com" } + # s.authors = { "stcui" => "saintcui@gmail.com", "other author" => "and email address" } + # + # If absolutely no email addresses are available, then you can use this form instead. + # + # s.author = 'stcui', 'other author' + + # Specify the location from where the source should be retreived. + # + s.source = { :git => "https://github.com/stcui/BeeFramework.git", :tag => "0.1" } + + # If this Pod runs only on iOS or OS X, then specify the platform and + # the deployment target. + # + # s.platform = :ios, '5.0' + s.platform = :ios + + s.source_files = 'BeeFramework/{Foundation,MVC}/**/*.{h,m}', 'BeeFramework/BeeFramework/Bee.h' + + s.frameworks = 'CoreMedia', 'CoreVideo', 'AVFoundation', 'Security', 'SystemConfiguration', 'QuartzCore', 'MobileCoreServices', 'CFNetwork' + s.libraries = 'libz' + s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libz' } + + # Finally, specify any Pods that this Pod depends on. + # + s.dependency 'JSONKit' + s.dependency 'ASIHTTPRequest' + s.dependency 'Reachability' + s.dependency 'SFHFKeychainUtils' +end From 2a885d287f46c60de6cb3d64a1242c61c454e9e2 Mon Sep 17 00:00:00 2001 From: stcui Date: Sun, 11 Nov 2012 01:31:24 +0800 Subject: [PATCH 002/148] update public header --- BeeFramework/0.1/BeeFramework.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BeeFramework/0.1/BeeFramework.podspec b/BeeFramework/0.1/BeeFramework.podspec index d115381e..6d932dbd 100644 --- a/BeeFramework/0.1/BeeFramework.podspec +++ b/BeeFramework/0.1/BeeFramework.podspec @@ -40,7 +40,7 @@ Pod::Spec.new do |s| s.platform = :ios s.source_files = 'BeeFramework/{Foundation,MVC}/**/*.{h,m}', 'BeeFramework/BeeFramework/Bee.h' - + s.public_header_files = 'BeeFramework/{Foundation,MVC}/**/*.h', 'BeeFramework/BeeFramework/Bee.h' s.frameworks = 'CoreMedia', 'CoreVideo', 'AVFoundation', 'Security', 'SystemConfiguration', 'QuartzCore', 'MobileCoreServices', 'CFNetwork' s.libraries = 'libz' s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libz' } From 58378b42204dd4791ca4a1e2f540568bb222098e Mon Sep 17 00:00:00 2001 From: stcui Date: Sun, 11 Nov 2012 01:36:47 +0800 Subject: [PATCH 003/148] fix podspec source path --- BeeFramework/0.1/BeeFramework.podspec | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/BeeFramework/0.1/BeeFramework.podspec b/BeeFramework/0.1/BeeFramework.podspec index 6d932dbd..cb97065f 100644 --- a/BeeFramework/0.1/BeeFramework.podspec +++ b/BeeFramework/0.1/BeeFramework.podspec @@ -39,8 +39,7 @@ Pod::Spec.new do |s| # s.platform = :ios, '5.0' s.platform = :ios - s.source_files = 'BeeFramework/{Foundation,MVC}/**/*.{h,m}', 'BeeFramework/BeeFramework/Bee.h' - s.public_header_files = 'BeeFramework/{Foundation,MVC}/**/*.h', 'BeeFramework/BeeFramework/Bee.h' + s.source_files = 'BeeFramework/{Foundation,MVC}/**/*.{h,m}', 'BeeFramework/Bee.h' s.frameworks = 'CoreMedia', 'CoreVideo', 'AVFoundation', 'Security', 'SystemConfiguration', 'QuartzCore', 'MobileCoreServices', 'CFNetwork' s.libraries = 'libz' s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libz' } From 109f137ba6d12b74e30246b5299356b34332440d Mon Sep 17 00:00:00 2001 From: stcui Date: Sun, 11 Nov 2012 01:47:01 +0800 Subject: [PATCH 004/148] fix libz --- BeeFramework/0.1/BeeFramework.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BeeFramework/0.1/BeeFramework.podspec b/BeeFramework/0.1/BeeFramework.podspec index cb97065f..c584af56 100644 --- a/BeeFramework/0.1/BeeFramework.podspec +++ b/BeeFramework/0.1/BeeFramework.podspec @@ -41,7 +41,7 @@ Pod::Spec.new do |s| s.source_files = 'BeeFramework/{Foundation,MVC}/**/*.{h,m}', 'BeeFramework/Bee.h' s.frameworks = 'CoreMedia', 'CoreVideo', 'AVFoundation', 'Security', 'SystemConfiguration', 'QuartzCore', 'MobileCoreServices', 'CFNetwork' - s.libraries = 'libz' + s.library = 'z' s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libz' } # Finally, specify any Pods that this Pod depends on. From 4d6d72c86ede95da45e4a6049fd1d49b4f1fe61d Mon Sep 17 00:00:00 2001 From: stcui Date: Sun, 11 Nov 2012 01:51:23 +0800 Subject: [PATCH 005/148] add ojbc++ source files --- BeeFramework/0.1/BeeFramework.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BeeFramework/0.1/BeeFramework.podspec b/BeeFramework/0.1/BeeFramework.podspec index c584af56..6c16a843 100644 --- a/BeeFramework/0.1/BeeFramework.podspec +++ b/BeeFramework/0.1/BeeFramework.podspec @@ -39,7 +39,7 @@ Pod::Spec.new do |s| # s.platform = :ios, '5.0' s.platform = :ios - s.source_files = 'BeeFramework/{Foundation,MVC}/**/*.{h,m}', 'BeeFramework/Bee.h' + s.source_files = 'BeeFramework/{Foundation,MVC}/**/*.{h,m,mm}', 'BeeFramework/Bee.h' s.frameworks = 'CoreMedia', 'CoreVideo', 'AVFoundation', 'Security', 'SystemConfiguration', 'QuartzCore', 'MobileCoreServices', 'CFNetwork' s.library = 'z' s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libz' } From 55d036f79ba66adfa47cc901974ab64d54833aa1 Mon Sep 17 00:00:00 2001 From: Alexey Belkevich Date: Mon, 12 Nov 2012 18:38:56 +0200 Subject: [PATCH 006/148] Added reachability-ios --- reachability-ios/reachability-ios.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 reachability-ios/reachability-ios.podspec diff --git a/reachability-ios/reachability-ios.podspec b/reachability-ios/reachability-ios.podspec new file mode 100644 index 00000000..42723f97 --- /dev/null +++ b/reachability-ios/reachability-ios.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = "reachability-ios" + s.version = "1.0.0" + s.summary = "Wrapper for SCNetworkReachability methods of SystemConfiguration.framework" + s.homepage = "https://github.com/belkevich/reachability-ios" + s.license = { :type => 'MIT', :file => 'LICENSE.txt' } + s.author = { "Alexey Belkevich" => "belkevich.alexey@gmail.com" } + s.source = { :git => "https://github.com/belkevich/reachability-ios.git", + :tag => "1.0.0"} + s.platform = :ios + s.source_files = '*.{h,m}' + s.framework = 'SystemConfiguration.framework' +end From fc091805f88d0a733fb342397af254ef16d74789 Mon Sep 17 00:00:00 2001 From: Andy Molloy Date: Mon, 12 Nov 2012 13:28:18 -0500 Subject: [PATCH 007/148] Add podspec for ColorPopover --- ColorPopover/0.1/ColorPopover.podspec | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ColorPopover/0.1/ColorPopover.podspec diff --git a/ColorPopover/0.1/ColorPopover.podspec b/ColorPopover/0.1/ColorPopover.podspec new file mode 100644 index 00000000..2a75fa12 --- /dev/null +++ b/ColorPopover/0.1/ColorPopover.podspec @@ -0,0 +1,9 @@ +Pod::Spec.new do |s| + s.name = 'ColorPopover' + s.version = '0.1' + s.summary = 'A ColorPopover is a very simple component for iPhone/iPad that provides a "Popover" color picker.' + s.author = { 'Sebastiao Gazolla Jr' => 'gz@gazapps.com' } + s.source = { :git => 'https://github.com/gazolla/ColorPopover.git', :commit => '545fe3fe0ee84b11a9c60f6caae97b268156c9bd' } + s.source_files = 'Colors/ColorPopover/*.{h,m}' + s.dependency 'WEPopover', '~> 0.0.1' +end From d4e83c60c2f41256516df32ab398f9057c7ac85f Mon Sep 17 00:00:00 2001 From: Andy Molloy Date: Mon, 12 Nov 2012 13:41:45 -0500 Subject: [PATCH 008/148] Add homepage for ColorPopover --- ColorPopover/0.1/ColorPopover.podspec | 1 + 1 file changed, 1 insertion(+) diff --git a/ColorPopover/0.1/ColorPopover.podspec b/ColorPopover/0.1/ColorPopover.podspec index 2a75fa12..7b8c7514 100644 --- a/ColorPopover/0.1/ColorPopover.podspec +++ b/ColorPopover/0.1/ColorPopover.podspec @@ -1,6 +1,7 @@ Pod::Spec.new do |s| s.name = 'ColorPopover' s.version = '0.1' + s.homepage = 'https://github.com/gazolla/ColorPopover' s.summary = 'A ColorPopover is a very simple component for iPhone/iPad that provides a "Popover" color picker.' s.author = { 'Sebastiao Gazolla Jr' => 'gz@gazapps.com' } s.source = { :git => 'https://github.com/gazolla/ColorPopover.git', :commit => '545fe3fe0ee84b11a9c60f6caae97b268156c9bd' } From e5f82934022ca78007129f5ed20fb6d733d4ac32 Mon Sep 17 00:00:00 2001 From: Andy Molloy Date: Mon, 12 Nov 2012 13:53:43 -0500 Subject: [PATCH 009/148] Fix several issues with the ColorPopover podspec revealed by pod spec lint --- ColorPopover/0.0.1/ColorPopover.podspec | 35 +++++++++++++++++++++++++ ColorPopover/0.1/ColorPopover.podspec | 10 ------- 2 files changed, 35 insertions(+), 10 deletions(-) create mode 100644 ColorPopover/0.0.1/ColorPopover.podspec delete mode 100644 ColorPopover/0.1/ColorPopover.podspec diff --git a/ColorPopover/0.0.1/ColorPopover.podspec b/ColorPopover/0.0.1/ColorPopover.podspec new file mode 100644 index 00000000..3791c32e --- /dev/null +++ b/ColorPopover/0.0.1/ColorPopover.podspec @@ -0,0 +1,35 @@ +Pod::Spec.new do |s| + s.name = 'ColorPopover' + s.version = '0.0.1' + s.platform = :ios + s.homepage = 'https://github.com/gazolla/ColorPopover' + s.summary = 'ColorPopover is a simple component for iOS that provides a "Popover" color picker.' + s.author = { 'Sebastiao Gazolla Jr' => 'gz@gazapps.com' } + s.source = { :git => 'https://github.com/gazolla/ColorPopover.git', :commit => '545fe3fe0ee84b11a9c60f6caae97b268156c9bd' } + s.source_files = 'Colors/ColorPopover/*.{h,m}' + s.dependency 'WEPopover', '~> 0.0.1' + s.license = { + :type => 'MIT', + :text => <<-LICENSE + Copyright (c) 2012 Sebastian Gazolla Jr + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + LICENSE + } +end diff --git a/ColorPopover/0.1/ColorPopover.podspec b/ColorPopover/0.1/ColorPopover.podspec deleted file mode 100644 index 7b8c7514..00000000 --- a/ColorPopover/0.1/ColorPopover.podspec +++ /dev/null @@ -1,10 +0,0 @@ -Pod::Spec.new do |s| - s.name = 'ColorPopover' - s.version = '0.1' - s.homepage = 'https://github.com/gazolla/ColorPopover' - s.summary = 'A ColorPopover is a very simple component for iPhone/iPad that provides a "Popover" color picker.' - s.author = { 'Sebastiao Gazolla Jr' => 'gz@gazapps.com' } - s.source = { :git => 'https://github.com/gazolla/ColorPopover.git', :commit => '545fe3fe0ee84b11a9c60f6caae97b268156c9bd' } - s.source_files = 'Colors/ColorPopover/*.{h,m}' - s.dependency 'WEPopover', '~> 0.0.1' -end From 7f4b3d2e110654123d8a2405fcc9d642b173207e Mon Sep 17 00:00:00 2001 From: Andy Molloy Date: Mon, 12 Nov 2012 13:55:36 -0500 Subject: [PATCH 010/148] Formatting of ColorPopover.podspec --- ColorPopover/0.0.1/ColorPopover.podspec | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/ColorPopover/0.0.1/ColorPopover.podspec b/ColorPopover/0.0.1/ColorPopover.podspec index 3791c32e..734cc367 100644 --- a/ColorPopover/0.0.1/ColorPopover.podspec +++ b/ColorPopover/0.0.1/ColorPopover.podspec @@ -1,15 +1,15 @@ Pod::Spec.new do |s| - s.name = 'ColorPopover' - s.version = '0.0.1' - s.platform = :ios - s.homepage = 'https://github.com/gazolla/ColorPopover' - s.summary = 'ColorPopover is a simple component for iOS that provides a "Popover" color picker.' - s.author = { 'Sebastiao Gazolla Jr' => 'gz@gazapps.com' } - s.source = { :git => 'https://github.com/gazolla/ColorPopover.git', :commit => '545fe3fe0ee84b11a9c60f6caae97b268156c9bd' } - s.source_files = 'Colors/ColorPopover/*.{h,m}' - s.dependency 'WEPopover', '~> 0.0.1' - s.license = { - :type => 'MIT', + s.name = 'ColorPopover' + s.version = '0.0.1' + s.platform = :ios + s.dependency 'WEPopover', '~> 0.0.1' + s.homepage = 'https://github.com/gazolla/ColorPopover' + s.summary = 'ColorPopover is a simple component for iOS that provides a "Popover" color picker.' + s.author = { 'Sebastiao Gazolla Jr' => 'gz@gazapps.com' } + s.source = { :git => 'https://github.com/gazolla/ColorPopover.git', :commit => '545fe3fe0ee84b11a9c60f6caae97b268156c9bd' } + s.source_files = 'Colors/ColorPopover/*.{h,m}' + s.license = { + :type => 'MIT', :text => <<-LICENSE Copyright (c) 2012 Sebastian Gazolla Jr From c8f9ec9dd85d7555cf465a35c2dcc021333c1e98 Mon Sep 17 00:00:00 2001 From: Caleb Shay Date: Mon, 12 Nov 2012 14:51:51 -0500 Subject: [PATCH 011/148] Add pod spec for NGVaryingGridView --- NGVaryingGridView/0.0.1/NGVaryingGridView.podspec | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 NGVaryingGridView/0.0.1/NGVaryingGridView.podspec diff --git a/NGVaryingGridView/0.0.1/NGVaryingGridView.podspec b/NGVaryingGridView/0.0.1/NGVaryingGridView.podspec new file mode 100644 index 00000000..be8493d0 --- /dev/null +++ b/NGVaryingGridView/0.0.1/NGVaryingGridView.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = "NGVaryingGridView" + s.version = "0.0.1" + s.summary = "A GridView which allows to set individual Rects for the Cells." + s.homepage = "https://github.com/NOUSguide/NGVaryingGridView" + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { "NOUSGuide Inc." => "http://www.nousguide.com" } + s.source = { :git => "https://github.com/NOUSguide/NGVaryingGridView.git", :commit => "7b2d2f306a2bcddf1f9e565ecf6ffabb9f82addd" } + s.platform = :ios + s.source_files = 'Classes', 'NGVaryingGridView/NGVaryingGridView/NGVaryingGridView.{h,m}' + s.requires_arc = true +end From ebc82536b3e3e1031733b4f50f4fcb340e09c4d3 Mon Sep 17 00:00:00 2001 From: Alexey Belkevich Date: Mon, 12 Nov 2012 23:04:22 +0200 Subject: [PATCH 012/148] Moved reachability-ios podspec file to '1.0.0' directory --- reachability-ios/{ => 1.0.0}/reachability-ios.podspec | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename reachability-ios/{ => 1.0.0}/reachability-ios.podspec (100%) diff --git a/reachability-ios/reachability-ios.podspec b/reachability-ios/1.0.0/reachability-ios.podspec similarity index 100% rename from reachability-ios/reachability-ios.podspec rename to reachability-ios/1.0.0/reachability-ios.podspec From fa5c04711d08c043e054114614570598c0c2cfaf Mon Sep 17 00:00:00 2001 From: Ronald Mannak Date: Mon, 12 Nov 2012 16:23:20 -0800 Subject: [PATCH 013/148] Added YBStatechart 1.0.1 --- YBStatechart/1.0.1/YBStatechart.podspec | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 YBStatechart/1.0.1/YBStatechart.podspec diff --git a/YBStatechart/1.0.1/YBStatechart.podspec b/YBStatechart/1.0.1/YBStatechart.podspec new file mode 100644 index 00000000..7d3909c4 --- /dev/null +++ b/YBStatechart/1.0.1/YBStatechart.podspec @@ -0,0 +1,15 @@ +Pod::Spec.new do |s| + s.name = "YBStatechart" + s.version = "1.0.1" + s.summary = "Framework for statecharts. A statecharts is a formalized type of finite state machine." + s.homepage = "https://github.com/ronaldmannak/YBStatechart" + s.license = 'Apache 2.0' + s.authors = { "Martijn The" => "post@martijnthe.nl", "Ronald Mannak" => "ronaldmannak@me.com" } + + s.platform = :ios, '5.0' + + s.source = { :git => "https://github.com/ronaldmannak/YBStatechart.git", :tag => s.version.to_s } + s.source_files = 'YBStatechart/*.{h,m}' + + s.requires_arc = true +end From 7b0634c3bac23eddf064957665229466904394d9 Mon Sep 17 00:00:00 2001 From: JP Simard Date: Mon, 12 Nov 2012 23:03:28 -0500 Subject: [PATCH 014/148] Added iOS-MagnifyingGlass --- .../0.0.1/iOS-MagnifyingGlass.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 iOS-MagnifyingGlass/0.0.1/iOS-MagnifyingGlass.podspec diff --git a/iOS-MagnifyingGlass/0.0.1/iOS-MagnifyingGlass.podspec b/iOS-MagnifyingGlass/0.0.1/iOS-MagnifyingGlass.podspec new file mode 100644 index 00000000..ecd96165 --- /dev/null +++ b/iOS-MagnifyingGlass/0.0.1/iOS-MagnifyingGlass.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = 'iOS-MagnifyingGlass' + s.version = '0.0.1' + s.platform = :ios + s.license = 'MIT' + s.summary = 'A magnifying glass for iOS.' + s.homepage = 'https://github.com/acoomans/iOS-MagnifyingGlass' + s.author = { 'Arnaud Coomans' => 'arnaud.coomans@gmail.com' } + s.source = { :git => 'https://github.com/acoomans/iOS-MagnifyingGlass.git', :commit => '69f0f8817e996c9037d43dbf1812c890a3388acc' } + s.source_files = 'MagnifyingGlass/*.{h,m}' + s.resources = 'MagnifyingGlass/Resources/*.png' + s.requires_arc = true +end From 20b8159f667061d52ba2c32ce3e979b56e237518 Mon Sep 17 00:00:00 2001 From: stcui Date: Tue, 13 Nov 2012 14:27:23 +0800 Subject: [PATCH 015/148] update git url --- BeeFramework/0.1/BeeFramework.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BeeFramework/0.1/BeeFramework.podspec b/BeeFramework/0.1/BeeFramework.podspec index 6c16a843..4b231b52 100644 --- a/BeeFramework/0.1/BeeFramework.podspec +++ b/BeeFramework/0.1/BeeFramework.podspec @@ -31,7 +31,7 @@ Pod::Spec.new do |s| # Specify the location from where the source should be retreived. # - s.source = { :git => "https://github.com/stcui/BeeFramework.git", :tag => "0.1" } + s.source = { :git => "https://github.com/gavinkwoe/BeeFramework.git", :tag => "0.1" } # If this Pod runs only on iOS or OS X, then specify the platform and # the deployment target. From d6578233478d6712ede4492be137e148a6cc5cb2 Mon Sep 17 00:00:00 2001 From: Matthias Wessendorf Date: Tue, 13 Nov 2012 08:15:25 +0100 Subject: [PATCH 016/148] Adding dev release for Nov. 13th to repo --- AeroGear/1.0.0.M1.20121113/AeroGear.podspec | 30 +++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 AeroGear/1.0.0.M1.20121113/AeroGear.podspec diff --git a/AeroGear/1.0.0.M1.20121113/AeroGear.podspec b/AeroGear/1.0.0.M1.20121113/AeroGear.podspec new file mode 100644 index 00000000..525c8dc2 --- /dev/null +++ b/AeroGear/1.0.0.M1.20121113/AeroGear.podspec @@ -0,0 +1,30 @@ +# +# JBoss, Home of Professional Open Source +# Copyright ${year}, Red Hat, Inc., and individual contributors +# by the @authors tag. See the copyright.txt in the distribution for a +# full listing of individual contributors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +Pod::Spec.new do |s| + s.name = "AeroGear" + s.version = "1.0.0.M1.20121113" + s.summary = "Provides a lightweight set of utilities for communication, security, storage and more." + s.homepage = "https://github.com/aerogear/aerogear-ios" + s.license = 'Apache License, Version 2.0' + s.author = "Red Hat, Inc." + s.source = { :git => 'https://github.com/aerogear/aerogear-ios.git', :tag => '1.0.0.M1.20121113' } + s.platform = :ios + s.source_files = 'AeroGear-iOS/AeroGear-iOS/**/*.{h,m}' + s.public_header_files = 'AeroGear-iOS/AeroGear-iOS/AeroGear.h', 'AeroGear-iOS/AeroGear-iOS/config/AGConfig.h', 'AeroGear-iOS/AeroGear-iOS/pipeline/AGPipe.h', 'AeroGear-iOS/AeroGear-iOS/pipeline/AGPipeline.h', 'AeroGear-iOS/AeroGear-iOS/pipeline/AGPipeConfig.h', 'AeroGear-iOS/AeroGear-iOS/datamanager/AGStore.h', 'AeroGear-iOS/AeroGear-iOS/datamanager/AGDataManager.h', 'AeroGear-iOS/AeroGear-iOS/datamanager/AGStoreConfig.h', 'AeroGear-iOS/AeroGear-iOS/security/AGAuthenticationModule.h', 'AeroGear-iOS/AeroGear-iOS/security/AGAuthenticator.h', 'AeroGear-iOS/AeroGear-iOS/security/AGAuthConfig.h' + s.requires_arc = true + s.dependency 'AFNetworking', '1.0RC1' +end \ No newline at end of file From b24bfe700ca2f24504f526bd71fe45c8f9853031 Mon Sep 17 00:00:00 2001 From: Alexey Belkevich Date: Tue, 13 Nov 2012 09:25:39 +0200 Subject: [PATCH 017/148] Renamed 'reachability-ios' to 'SCNetworkReachability' --- SCNetworkReachability/SCNetworkReachability.podspec | 13 +++++++++++++ .../reachability-ios.podspec | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 SCNetworkReachability/SCNetworkReachability.podspec rename {reachability-ios => SCNetworkReachability}/reachability-ios.podspec (92%) diff --git a/SCNetworkReachability/SCNetworkReachability.podspec b/SCNetworkReachability/SCNetworkReachability.podspec new file mode 100644 index 00000000..0f1fc38c --- /dev/null +++ b/SCNetworkReachability/SCNetworkReachability.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = "SCNetworkReachability" + s.version = "1.0.0" + s.summary = "Wrapper for SCNetworkReachability methods of SystemConfiguration.framework" + s.homepage = "https://github.com/belkevich/reachability-ios" + s.license = { :type => 'MIT', :file => 'LICENSE.txt' } + s.author = { "Alexey Belkevich" => "belkevich.alexey@gmail.com" } + s.source = { :git => "https://github.com/belkevich/reachability-ios.git", + :tag => "1.0.0"} + s.platform = :ios + s.source_files = '*.{h,m}' + s.framework = 'SystemConfiguration.framework' +end diff --git a/reachability-ios/reachability-ios.podspec b/SCNetworkReachability/reachability-ios.podspec similarity index 92% rename from reachability-ios/reachability-ios.podspec rename to SCNetworkReachability/reachability-ios.podspec index 42723f97..0f1fc38c 100644 --- a/reachability-ios/reachability-ios.podspec +++ b/SCNetworkReachability/reachability-ios.podspec @@ -1,5 +1,5 @@ Pod::Spec.new do |s| - s.name = "reachability-ios" + s.name = "SCNetworkReachability" s.version = "1.0.0" s.summary = "Wrapper for SCNetworkReachability methods of SystemConfiguration.framework" s.homepage = "https://github.com/belkevich/reachability-ios" From 50bbc4efb484c6b4bdff647f79889eecbb022e67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20St=C3=B8vring?= Date: Tue, 13 Nov 2012 12:00:49 +0100 Subject: [PATCH 018/148] Corrected pod for version 1.1 of BSKeyboardControls. --- .../1.1/BSKeyboardControls.podspec | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/BSKeyboardControls/1.1/BSKeyboardControls.podspec b/BSKeyboardControls/1.1/BSKeyboardControls.podspec index ac4d523b..8b5dda3b 100644 --- a/BSKeyboardControls/1.1/BSKeyboardControls.podspec +++ b/BSKeyboardControls/1.1/BSKeyboardControls.podspec @@ -1,12 +1,11 @@ Pod::Spec.new do |s| - s.name = "BSKeyboardControls" - s.version = "1.1" - s.summary = "Put controls above the keyboard on your iPhone or iPad app." - s.homepage = "https://github.com/SimonBS/BSKeyboardControls" - s.license = "MIT" - s.author = { "Simon Støvring" => "simon@codeinacup.com" } - s.description = "Easily put back, next and done controls above the keyboard on your iPhone or iPad app." - s.source = { :git => "https://github.com/SimonBS/BSKeyboardControls.git", :tag => "v1.1" } + s.name = 'BSKeyboardControls' + s.version = '1.1' + s.summary = 'Put controls above the keyboard on your iPhone or iPad app.' + s.homepage = 'https://github.com/simonbs/BSKeyboardControls' + s.license = 'MIT' + s.author = { 'Simon Støvring' => 'simonstoevring@gmail.com' } + s.source = { :git => 'https://github.com/simonbs/BSKeyboardControls.git', :tag => 'v1.1' } s.platform = :ios - s.source_files = "BSKeyboardControls/BSKeyboardControls.{h,m}" + s.source_files = 'BSKeyboardControls/BSKeyboardControls.{h,m}' end From 2a2ca09b97987c7f9637fb94cc54cc2bcd078a74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20St=C3=B8vring?= Date: Tue, 13 Nov 2012 12:01:46 +0100 Subject: [PATCH 019/148] Corrected pod for version 0.0.1 of BSKeyboardControls. --- BSKeyboardControls/0.0.1/BSKeyboardControls.podspec | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/BSKeyboardControls/0.0.1/BSKeyboardControls.podspec b/BSKeyboardControls/0.0.1/BSKeyboardControls.podspec index 99232c06..ee592a61 100644 --- a/BSKeyboardControls/0.0.1/BSKeyboardControls.podspec +++ b/BSKeyboardControls/0.0.1/BSKeyboardControls.podspec @@ -4,9 +4,8 @@ Pod::Spec.new do |s| s.summary = "Put controls above the keyboard on your iPhone or iPad app." s.homepage = "https://github.com/SimonBS/BSKeyboardControls" s.license = "MIT" - s.author = { "Simon Støvring" => "simon@codeinacup.com" } - s.description = "Easily put back, next and done controls above the keyboard on your iPhone or iPad app." + s.author = { "Simon Støvring" => "simonstoevring@gmail.com" } s.source = { :git => "https://github.com/SimonBS/BSKeyboardControls.git", :commit => "baa108195e9cb18a53bede6d33c722470164e872" } s.platform = :ios s.source_files = "BSKeyboardControls/BSKeyboardControls.{h,m}" -end +end \ No newline at end of file From bb156b907e9b70390a4df26aa38bc80e0aa28f38 Mon Sep 17 00:00:00 2001 From: stcui Date: Tue, 13 Nov 2012 22:06:34 +0800 Subject: [PATCH 020/148] remove comments, use english description --- BeeFramework/0.1/BeeFramework.podspec | 35 +++------------------------ 1 file changed, 4 insertions(+), 31 deletions(-) diff --git a/BeeFramework/0.1/BeeFramework.podspec b/BeeFramework/0.1/BeeFramework.podspec index 4b231b52..32e10a10 100644 --- a/BeeFramework/0.1/BeeFramework.podspec +++ b/BeeFramework/0.1/BeeFramework.podspec @@ -1,42 +1,17 @@ -# -# Be sure to run `pod spec lint BeeFramework.podspec' to ensure this is a -# valid spec. -# -# Remove all comments before submitting the spec. Optional attributes are commented. -# -# For details see: https://github.com/CocoaPods/CocoaPods/wiki/The-podspec-format -# Pod::Spec.new do |s| s.name = "BeeFramework" s.version = "0.1" - s.summary = "Bee Framework 是一款iOS平台的MVC应用快速开发框架." + s.summary = "Bee Framework is an iOS MVC framework to help you develop your app rapidly" s.description = <<-DESC - Bee Framework 是一款iOS平台的MVC应用快速开发框架,使用Objective-C开发. - 其早期原型曾经被应用在 QQ游戏大厅 for iPhone、QQ空间 for iPhone 等多款精品APP中. 在最近几个月中, 我梳理并重构了设计,并取名为Bee, 寓意着“清晰, 灵活, 高效, 纯粹”. - - Bee 从根本上解决了iOS开发者长期困扰的各种问题, 诸如: 分层架构如何设计, 层与层之间消息传递与处理, 网络操作及缓存, 异步及多线程, 以及适配产品多变的UI布局需求. + Bee Framework is a MVC Framework to develop iOS application. + It has pretty clear hieracy and signal based mechanism, also with cache and asynchonized networking methods in it. DESC s.homepage = "http://bbs.whatsbug.com/BeeFramework" s.license = 'MIT' - # Specify the authors of the library, with email addresses. You can often find - # the email addresses of the authors by using the SCM log. E.g. $ git log - # - s.authors = { "gavinkwoe" => "gavinkwoe@gmail.com" } - # s.authors = { "stcui" => "saintcui@gmail.com", "other author" => "and email address" } - # - # If absolutely no email addresses are available, then you can use this form instead. - # - # s.author = 'stcui', 'other author' - - # Specify the location from where the source should be retreived. - # + s.authors = { "gavinkwoe" => "gavinkwoe@gmail.com", "stcui" => "saintcui@gmail.com } s.source = { :git => "https://github.com/gavinkwoe/BeeFramework.git", :tag => "0.1" } - # If this Pod runs only on iOS or OS X, then specify the platform and - # the deployment target. - # - # s.platform = :ios, '5.0' s.platform = :ios s.source_files = 'BeeFramework/{Foundation,MVC}/**/*.{h,m,mm}', 'BeeFramework/Bee.h' @@ -44,8 +19,6 @@ Pod::Spec.new do |s| s.library = 'z' s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libz' } - # Finally, specify any Pods that this Pod depends on. - # s.dependency 'JSONKit' s.dependency 'ASIHTTPRequest' s.dependency 'Reachability' From 6853efa8569f6ba94ec404ef3eb3cd7d6fc7bdd3 Mon Sep 17 00:00:00 2001 From: stcui Date: Tue, 13 Nov 2012 22:06:34 +0800 Subject: [PATCH 021/148] remove comments, use english description --- BeeFramework/0.1/BeeFramework.podspec | 37 ++++----------------------- 1 file changed, 5 insertions(+), 32 deletions(-) diff --git a/BeeFramework/0.1/BeeFramework.podspec b/BeeFramework/0.1/BeeFramework.podspec index 4b231b52..14c83301 100644 --- a/BeeFramework/0.1/BeeFramework.podspec +++ b/BeeFramework/0.1/BeeFramework.podspec @@ -1,42 +1,17 @@ -# -# Be sure to run `pod spec lint BeeFramework.podspec' to ensure this is a -# valid spec. -# -# Remove all comments before submitting the spec. Optional attributes are commented. -# -# For details see: https://github.com/CocoaPods/CocoaPods/wiki/The-podspec-format -# Pod::Spec.new do |s| s.name = "BeeFramework" s.version = "0.1" - s.summary = "Bee Framework 是一款iOS平台的MVC应用快速开发框架." + s.summary = "Bee Framework is an iOS MVC framework to help you develop your app rapidly." s.description = <<-DESC - Bee Framework 是一款iOS平台的MVC应用快速开发框架,使用Objective-C开发. - 其早期原型曾经被应用在 QQ游戏大厅 for iPhone、QQ空间 for iPhone 等多款精品APP中. 在最近几个月中, 我梳理并重构了设计,并取名为Bee, 寓意着“清晰, 灵活, 高效, 纯粹”. - - Bee 从根本上解决了iOS开发者长期困扰的各种问题, 诸如: 分层架构如何设计, 层与层之间消息传递与处理, 网络操作及缓存, 异步及多线程, 以及适配产品多变的UI布局需求. + Bee Framework is a MVC Framework to develop iOS application. + It has pretty clear hieracy and signal based mechanism, also with cache and asynchonized networking methods in it. DESC s.homepage = "http://bbs.whatsbug.com/BeeFramework" s.license = 'MIT' - # Specify the authors of the library, with email addresses. You can often find - # the email addresses of the authors by using the SCM log. E.g. $ git log - # - s.authors = { "gavinkwoe" => "gavinkwoe@gmail.com" } - # s.authors = { "stcui" => "saintcui@gmail.com", "other author" => "and email address" } - # - # If absolutely no email addresses are available, then you can use this form instead. - # - # s.author = 'stcui', 'other author' + s.author = { "gavinkwoe" => "gavinkwoe@gmail.com"} + s.source = { :git => "https://github.com/stcui/BeeFramework.git", :tag => "0.1" } - # Specify the location from where the source should be retreived. - # - s.source = { :git => "https://github.com/gavinkwoe/BeeFramework.git", :tag => "0.1" } - - # If this Pod runs only on iOS or OS X, then specify the platform and - # the deployment target. - # - # s.platform = :ios, '5.0' s.platform = :ios s.source_files = 'BeeFramework/{Foundation,MVC}/**/*.{h,m,mm}', 'BeeFramework/Bee.h' @@ -44,8 +19,6 @@ Pod::Spec.new do |s| s.library = 'z' s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libz' } - # Finally, specify any Pods that this Pod depends on. - # s.dependency 'JSONKit' s.dependency 'ASIHTTPRequest' s.dependency 'Reachability' From a6103bc4dca2a6e6eaaefe76ca9ebb75c8a8af29 Mon Sep 17 00:00:00 2001 From: Chris Moore Date: Tue, 13 Nov 2012 09:42:20 -0500 Subject: [PATCH 022/148] [Add] ADClusterMapView (0.0.1) --- .../0.0.1/ADClusterMapView.podspec | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 ADClusterMapView/0.0.1/ADClusterMapView.podspec diff --git a/ADClusterMapView/0.0.1/ADClusterMapView.podspec b/ADClusterMapView/0.0.1/ADClusterMapView.podspec new file mode 100644 index 00000000..cd3c0458 --- /dev/null +++ b/ADClusterMapView/0.0.1/ADClusterMapView.podspec @@ -0,0 +1,19 @@ +Pod::Spec.new do |s| + s.name = "ADClusterMapView" + s.version = "0.0.1" + s.summary = "ADClusterMapView is a drop-in subclass of MKMapView that displays and animate clusters of annotations." + s.description = <<-DESC + ADClusterMapView is a drop-in subclass of MKMapView that + displays and animate clusters of annotations. This is very + useful in cases where you have to display many annotations + on the map. Concept and implementation were described on + Applidium's [website][http://applidium.com/en/news/too_many_pins_on_your_map/]. + DESC + s.homepage = "https://github.com/applidium/ADClusterMapView" + s.license = { :type => 'NetBSD', :file => 'LICENSE' } + s.author = { "Applidium" => "https://github.com/applidium/" } + s.source = { :git => "https://github.com/applidium/ADClusterMapView.git", :commit => "d68d69b238929" } + s.platform = :ios + s.source_files = 'ADClusterMapView/**/*.{h,m}' + s.frameworks = 'MapKit', 'CoreLocation' +end From 9533b9ee38a61b04318382ff6d3eed7d3f1043de Mon Sep 17 00:00:00 2001 From: Fabio Pelosin Date: Tue, 13 Nov 2012 16:34:38 +0100 Subject: [PATCH 023/148] [Fix] BSKeyboardControls --- BSKeyboardControls/0.0.1/BSKeyboardControls.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BSKeyboardControls/0.0.1/BSKeyboardControls.podspec b/BSKeyboardControls/0.0.1/BSKeyboardControls.podspec index 99232c06..576ccab1 100644 --- a/BSKeyboardControls/0.0.1/BSKeyboardControls.podspec +++ b/BSKeyboardControls/0.0.1/BSKeyboardControls.podspec @@ -6,7 +6,7 @@ Pod::Spec.new do |s| s.license = "MIT" s.author = { "Simon Støvring" => "simon@codeinacup.com" } s.description = "Easily put back, next and done controls above the keyboard on your iPhone or iPad app." - s.source = { :git => "https://github.com/SimonBS/BSKeyboardControls.git", :commit => "baa108195e9cb18a53bede6d33c722470164e872" } + s.source = { :git => "https://github.com/simonbs/BSKeyboardControls.git", :commit => "baa108195e9cb18a53bede6d33c722470164e872" } s.platform = :ios s.source_files = "BSKeyboardControls/BSKeyboardControls.{h,m}" end From f3193b0e5510f7a6b30cadd920d9149b851009d3 Mon Sep 17 00:00:00 2001 From: stcui Date: Tue, 13 Nov 2012 23:39:00 +0800 Subject: [PATCH 024/148] add BeeDebugger --- BeeDebugger/0.1/BeeDebugger.podspec | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 BeeDebugger/0.1/BeeDebugger.podspec diff --git a/BeeDebugger/0.1/BeeDebugger.podspec b/BeeDebugger/0.1/BeeDebugger.podspec new file mode 100644 index 00000000..b8285567 --- /dev/null +++ b/BeeDebugger/0.1/BeeDebugger.podspec @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +Pod::Spec.new do |s| + s.name = "BeeDebugger" + s.version = "0.1" + s.summary = "A powerful runtime Debugger on iOS platform." + s.description = <<-DESC + BeeDebugger can show your system info and memeory usage when running your app. + Just add [BeeDebugger show]; after [
makeKeyAndVisible]; + DESC + s.homepage = "http://bbs.whatsbug.com" + s.license = 'MIT' + s.author = { "gavinkwoe" => "gavinkwoe@gmail.com" } + + s.platform = :ios + s.source = { :git => "https://github.com/stcui/BeeFramework.git", :tag => "0.1" } + s.source_files = 'BeeDebugger' + s.resource = "BeeDebugger/*.png" + s.frameworks = 'CoreMedia', 'CoreVideo', 'AVFoundation', 'Security', 'SystemConfiguration', 'QuartzCore', 'MobileCoreServices', 'CFNetwork' + s.library = 'z' + s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libz' } + + s.dependency 'BeeFramework' +end From a3852857e8cd78805f2447788f19bc3867401c0a Mon Sep 17 00:00:00 2001 From: Alexey Belkevich Date: Tue, 13 Nov 2012 17:59:25 +0200 Subject: [PATCH 025/148] Fixed dependence of 'SystemConfiguration' in 'SCNetworkReachability' --- SCNetworkReachability/1.0.0/SCNetworkReachability.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SCNetworkReachability/1.0.0/SCNetworkReachability.podspec b/SCNetworkReachability/1.0.0/SCNetworkReachability.podspec index 0f1fc38c..d056c64f 100644 --- a/SCNetworkReachability/1.0.0/SCNetworkReachability.podspec +++ b/SCNetworkReachability/1.0.0/SCNetworkReachability.podspec @@ -9,5 +9,5 @@ Pod::Spec.new do |s| :tag => "1.0.0"} s.platform = :ios s.source_files = '*.{h,m}' - s.framework = 'SystemConfiguration.framework' + s.framework = 'SystemConfiguration' end From 6c535c2f8321690d785ae14abab8454835ef4387 Mon Sep 17 00:00:00 2001 From: JP Simard Date: Tue, 13 Nov 2012 15:10:45 -0500 Subject: [PATCH 026/148] Added COPeoplePickerViewController --- .../0.0.1/COPeoplePickerViewController.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 COPeoplePickerViewController/0.0.1/COPeoplePickerViewController.podspec diff --git a/COPeoplePickerViewController/0.0.1/COPeoplePickerViewController.podspec b/COPeoplePickerViewController/0.0.1/COPeoplePickerViewController.podspec new file mode 100644 index 00000000..f80a6978 --- /dev/null +++ b/COPeoplePickerViewController/0.0.1/COPeoplePickerViewController.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = 'COPeoplePickerViewController' + s.version = '0.0.1' + s.platform = :ios + s.license = 'MIT' + s.summary = 'Tokenized People Picker. Re-implementation of the email address picker of iCal (work in progress).' + s.homepage = 'https://github.com/eaigner/COPeoplePickerViewController' + s.author = { 'Erik Aigner' => 'erik@chocomoko.com' } + s.source = { :git => 'https://github.com/eaigner/COPeoplePickerViewController.git', :commit => '088d124f33549e2955a437b8742108388d1592e7' } + + s.source_files = 'COPeoplePickerViewController/COPeoplePickerViewController.*' + s.frameworks = 'AddressBook, AddressBookUI, QuartzCore' + s.requires_arc = true +end From acdf5525539da8d58aa7b8ecfb531f9dbae3c0dd Mon Sep 17 00:00:00 2001 From: JP Simard Date: Tue, 13 Nov 2012 15:14:42 -0500 Subject: [PATCH 027/148] Fixed COPeoplePickerViewController --- .../0.0.1/COPeoplePickerViewController.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/COPeoplePickerViewController/0.0.1/COPeoplePickerViewController.podspec b/COPeoplePickerViewController/0.0.1/COPeoplePickerViewController.podspec index f80a6978..64aab870 100644 --- a/COPeoplePickerViewController/0.0.1/COPeoplePickerViewController.podspec +++ b/COPeoplePickerViewController/0.0.1/COPeoplePickerViewController.podspec @@ -9,6 +9,6 @@ Pod::Spec.new do |s| s.source = { :git => 'https://github.com/eaigner/COPeoplePickerViewController.git', :commit => '088d124f33549e2955a437b8742108388d1592e7' } s.source_files = 'COPeoplePickerViewController/COPeoplePickerViewController.*' - s.frameworks = 'AddressBook, AddressBookUI, QuartzCore' + s.frameworks = 'AddressBook', 'AddressBookUI', 'QuartzCore' s.requires_arc = true end From 52ab15b88d23119856b83d66c4769acef0f0d631 Mon Sep 17 00:00:00 2001 From: Daniel Amitay Date: Tue, 13 Nov 2012 15:18:13 -0500 Subject: [PATCH 028/148] [Add] iHasApp 2.0.1 --- iHasApp/2.0.1/iHasApp.podspec | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 iHasApp/2.0.1/iHasApp.podspec diff --git a/iHasApp/2.0.1/iHasApp.podspec b/iHasApp/2.0.1/iHasApp.podspec new file mode 100644 index 00000000..9df44588 --- /dev/null +++ b/iHasApp/2.0.1/iHasApp.podspec @@ -0,0 +1,16 @@ +Pod::Spec.new do |s| + s.name = "iHasApp" + s.version = "2.0.1" + s.summary = "The iHasApp iOS Framework allows you to detect installed apps on a user's device." + s.description = <<-DESC + The iHasApp iOS Framework allows you to detect installed apps on a user's device. + Detection results can be in the form of an array of detected appIds, or an array of appDictionaries from the iTunes Search API. + DESC + s.homepage = "https://github.com/danielamitay/iHasApp" + s.license = 'MIT' + s.author = { "Daniel Amitay" => "hello@danielamitay.com" } + s.source = { :git => "https://github.com/danielamitay/iHasApp.git", :tag => "2.0.1"} + s.platform = :ios, '5.0' + s.resource = 'iHasApp.framework' + s.requires_arc = true +end From e8c60ec86f5d57f36df24c653d6c92e1cfa1e009 Mon Sep 17 00:00:00 2001 From: Brian Antonelli Date: Tue, 13 Nov 2012 16:38:03 -0500 Subject: [PATCH 029/148] Adding 1.0 version of TouchDB Analyzed 1 podspec. TouchDB.podspec passed validation. --- TouchDB/1.0.0/TouchDB.podspec | 79 +++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 TouchDB/1.0.0/TouchDB.podspec diff --git a/TouchDB/1.0.0/TouchDB.podspec b/TouchDB/1.0.0/TouchDB.podspec new file mode 100644 index 00000000..d90c4354 --- /dev/null +++ b/TouchDB/1.0.0/TouchDB.podspec @@ -0,0 +1,79 @@ +license = < 'Apache', :text => license} + s.summary = 'CouchDB-compatible mobile database; Objective-C version.' + s.homepage = 'https://github.com/couchbaselabs/TouchDB-iOS' + s.author = { 'Jens Alfke' => 'jens@couchbase.com' } + + s.source = { :git => 'https://github.com/couchbaselabs/TouchDB-iOS.git', + :tag => "v#{version}", + :submodules => "true" } + + s.platform = :ios, '5.0' + + + s.source_files = FileList['Source/**/*.{h,m}'].exclude(/GNUstep/).exclude(/_Tests/), + FileList['vendor/oauthconsumer/**/*.{h,m,c}'].exclude(/OAHMAC_SHA1SignatureProvider\.m/), + FileList['vendor/fmdb/src/**/*.{h,m}'] + + s.header_dir = 'TouchDB' + + def s.post_install(target) + src = config.project_pods_root.to_s() + '/TouchDB/Source' + + # Prepend some headers manually. The regular build does this with a prefix header, but + # that pollutes the global namespace. (and conflicts with CouchCocoa) + Dir.glob(src + '/**/*.m').each { |path| + File.open( path, 'r+') { |f| + firstLine = f.readline() + if firstLine =~ /patched/ + next + end + f.rewind + + content = f.readlines() + f.rewind + + f.puts '// patched during Pod install' + f.puts '#import "TDJSON.h"' + f.puts '#import "CollectionUtils.h"' + f.puts '#import "Logging.h"' + f.puts '#import "Test.h"' + + # add the version symbols to an arbitrary .m file + if path =~ /TDServer\.m/ + f.puts "const unsigned char TouchDBVersionString[] __attribute__ ((used)) = \"@(#)PROGRAM:TouchDB PROJECT:TouchDB-#{version}\";" + f.puts "const double TouchDBVersionNumber __attribute__ ((used)) = (double)#{version};" + end + + f.puts + f.puts content + } + } + end + + s.dependency 'CocoaHTTPServer' + s.dependency 'MYUtilities' + s.dependency 'JSONKit' + + s.framework = 'SystemConfiguration' + s.library = 'sqlite3' +end From 7ea1c3ee13358cd2ff0a8211f613eb1d6712a8a1 Mon Sep 17 00:00:00 2001 From: Fabio Pelosin Date: Wed, 14 Nov 2012 00:34:32 +0100 Subject: [PATCH 030/148] CocoaPods release 0.16.0.rc4 --- CocoaPods-version.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CocoaPods-version.yml b/CocoaPods-version.yml index 1ac38ea6..87d53b4c 100644 --- a/CocoaPods-version.yml +++ b/CocoaPods-version.yml @@ -1,3 +1,3 @@ --- -last: 0.16.0.rc3 +last: 0.16.0.rc4 min: 0.6.0 From 9100d1657815d388e5a2c64b0451fa17d37e10db Mon Sep 17 00:00:00 2001 From: Fabio Pelosin Date: Wed, 14 Nov 2012 00:40:21 +0100 Subject: [PATCH 031/148] [Fix] TouchDB. --- TouchDB/{1.0.0 => 1.0}/TouchDB.podspec | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename TouchDB/{1.0.0 => 1.0}/TouchDB.podspec (100%) diff --git a/TouchDB/1.0.0/TouchDB.podspec b/TouchDB/1.0/TouchDB.podspec similarity index 100% rename from TouchDB/1.0.0/TouchDB.podspec rename to TouchDB/1.0/TouchDB.podspec From cc1c0bb37d2a25ad1ff0196e22b6408af8f84e4f Mon Sep 17 00:00:00 2001 From: Daniel Amitay Date: Wed, 14 Nov 2012 01:54:41 -0500 Subject: [PATCH 032/148] [Update] iHasApp (2.1.0) - Full source and dataset --- iHasApp/2.1.0/iHasApp.podspec | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 iHasApp/2.1.0/iHasApp.podspec diff --git a/iHasApp/2.1.0/iHasApp.podspec b/iHasApp/2.1.0/iHasApp.podspec new file mode 100644 index 00000000..1b4a0703 --- /dev/null +++ b/iHasApp/2.1.0/iHasApp.podspec @@ -0,0 +1,16 @@ +Pod::Spec.new do |s| + s.name = "iHasApp" + s.version = "2.1.0" + s.summary = "The iHasApp iOS Framework allows you to detect installed apps on a user's device." + s.description = <<-DESC + The iHasApp iOS Framework allows you to detect installed apps on a user's device. + Detection results can be in the form of an array of detected appIds, or an array of appDictionaries from the iTunes Search API. + DESC + s.homepage = "https://github.com/danielamitay/iHasApp" + s.license = 'MIT' + s.author = { "Daniel Amitay" => "hello@danielamitay.com" } + s.source = { :git => "https://github.com/danielamitay/iHasApp.git", :tag => "2.1.0"} + s.platform = :ios, '5.0' + s.source_files = 'iHasApp' + s.requires_arc = true +end From e46db104761ccaa199f4150ef88304bb862abb7a Mon Sep 17 00:00:00 2001 From: Kevin Renskers Date: Wed, 14 Nov 2012 10:01:51 +0000 Subject: [PATCH 033/148] [Update] LastFm (0.9.3) --- LastFm/0.9.3/LastFm.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 LastFm/0.9.3/LastFm.podspec diff --git a/LastFm/0.9.3/LastFm.podspec b/LastFm/0.9.3/LastFm.podspec new file mode 100644 index 00000000..0b72f8e2 --- /dev/null +++ b/LastFm/0.9.3/LastFm.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = "LastFm" + s.version = "0.9.3" + s.summary = "Block based Last.fm SDK for iOS and Mac OS X." + s.homepage = "https://github.com/gangverk/LastFm" + s.license = 'MIT' + s.author = { "Kevin Renskers" => "info@mixedcase.nl" } + s.source = { :git => "https://github.com/gangverk/LastFm.git", :tag => s.version.to_s } + s.ios.deployment_target = '4.0' + s.osx.deployment_target = '10.6' + s.source_files = 'LastFm/*.{h,m}' + s.requires_arc = true + s.dependency 'KissXML', '~> 5.0' +end From cd7893f58a1db7e40504a7b5371a1a884369e3f5 Mon Sep 17 00:00:00 2001 From: Diego Chohfi Date: Wed, 14 Nov 2012 11:23:02 -0200 Subject: [PATCH 034/148] Adding version 1.2 of DCKeyValueObjectMapping --- .../1.2/DCKeyValueObjectMapping.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 DCKeyValueObjectMapping/1.2/DCKeyValueObjectMapping.podspec diff --git a/DCKeyValueObjectMapping/1.2/DCKeyValueObjectMapping.podspec b/DCKeyValueObjectMapping/1.2/DCKeyValueObjectMapping.podspec new file mode 100644 index 00000000..58c0313c --- /dev/null +++ b/DCKeyValueObjectMapping/1.2/DCKeyValueObjectMapping.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = 'DCKeyValueObjectMapping' + s.version = '1.2' + s.ios.deployment_target = '5.0' + s.license = 'MIT' + s.summary = 'Automatic KeyValue Object Mapping for Objective-C, parse JSON/Plist/XML automatically, support Core Data, convetion over configuration.' + s.homepage = 'https://github.com/dchohfi/KeyValueObjectMapping' + s.author = { 'Diego Chohfi' => 'dchohfi@gmail.com' } + s.source = { :git => 'https://github.com/dchohfi/KeyValueObjectMapping.git', :tag => '1.2' } + s.source_files = 'KeyValueObjectMapping' + s.compiler_flags = '-Wno-format-security' + s.requires_arc = true +end From 88f5aa5628ab0269f288c2d3afb84cb1926a1230 Mon Sep 17 00:00:00 2001 From: Diego Chohfi Date: Wed, 14 Nov 2012 11:31:20 -0200 Subject: [PATCH 035/148] Removing ('-Wno' compiler flags) compiler flags --- DCKeyValueObjectMapping/1.0.0/DCKeyValueObjectMapping.podspec | 1 - DCKeyValueObjectMapping/1.1/DCKeyValueObjectMapping.podspec | 1 - DCKeyValueObjectMapping/1.2/DCKeyValueObjectMapping.podspec | 1 - 3 files changed, 3 deletions(-) diff --git a/DCKeyValueObjectMapping/1.0.0/DCKeyValueObjectMapping.podspec b/DCKeyValueObjectMapping/1.0.0/DCKeyValueObjectMapping.podspec index 82ad9552..dcc03083 100644 --- a/DCKeyValueObjectMapping/1.0.0/DCKeyValueObjectMapping.podspec +++ b/DCKeyValueObjectMapping/1.0.0/DCKeyValueObjectMapping.podspec @@ -7,6 +7,5 @@ Pod::Spec.new do |s| s.author = { 'Diego Chohfi' => 'dchohfi@gmail.com' } s.source = { :git => 'https://github.com/dchohfi/KeyValueObjectMapping.git', :tag => '1.0.0' } s.source_files = 'KeyValueObjectMapping' - s.compiler_flags = '-Wno-format-security' s.requires_arc = true end diff --git a/DCKeyValueObjectMapping/1.1/DCKeyValueObjectMapping.podspec b/DCKeyValueObjectMapping/1.1/DCKeyValueObjectMapping.podspec index 34296c38..9d73dd74 100644 --- a/DCKeyValueObjectMapping/1.1/DCKeyValueObjectMapping.podspec +++ b/DCKeyValueObjectMapping/1.1/DCKeyValueObjectMapping.podspec @@ -7,6 +7,5 @@ Pod::Spec.new do |s| s.author = { 'Diego Chohfi' => 'dchohfi@gmail.com' } s.source = { :git => 'https://github.com/dchohfi/KeyValueObjectMapping.git', :tag => '1.1' } s.source_files = 'KeyValueObjectMapping' - s.compiler_flags = '-Wno-format-security' s.requires_arc = true end diff --git a/DCKeyValueObjectMapping/1.2/DCKeyValueObjectMapping.podspec b/DCKeyValueObjectMapping/1.2/DCKeyValueObjectMapping.podspec index 58c0313c..44c6d5e6 100644 --- a/DCKeyValueObjectMapping/1.2/DCKeyValueObjectMapping.podspec +++ b/DCKeyValueObjectMapping/1.2/DCKeyValueObjectMapping.podspec @@ -8,6 +8,5 @@ Pod::Spec.new do |s| s.author = { 'Diego Chohfi' => 'dchohfi@gmail.com' } s.source = { :git => 'https://github.com/dchohfi/KeyValueObjectMapping.git', :tag => '1.2' } s.source_files = 'KeyValueObjectMapping' - s.compiler_flags = '-Wno-format-security' s.requires_arc = true end From 4abef4c6b427bb170f9715a97f3b8127fb87ba20 Mon Sep 17 00:00:00 2001 From: Jeong YunWon Date: Thu, 15 Nov 2012 01:55:26 +0900 Subject: [PATCH 036/148] FoundationExtension update --- FoundationExtension/{0.5 => 0.6}/FoundationExtension.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename FoundationExtension/{0.5 => 0.6}/FoundationExtension.podspec (96%) diff --git a/FoundationExtension/0.5/FoundationExtension.podspec b/FoundationExtension/0.6/FoundationExtension.podspec similarity index 96% rename from FoundationExtension/0.5/FoundationExtension.podspec rename to FoundationExtension/0.6/FoundationExtension.podspec index 5b56a9a9..e6b6c2de 100644 --- a/FoundationExtension/0.5/FoundationExtension.podspec +++ b/FoundationExtension/0.6/FoundationExtension.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "FoundationExtension" - s.version = "0.5" + s.version = "0.6" s.summary = "Foundation/UIKit extension kit. It is category based and looks familiar to Foundation/UIKit. It includes many common snippets as shortcut." s.description = <<-DESC This library includes small Foundation/Cocoa/UIKit extensions. This library does not includes high-level data structure, algorithm or frameworks, but collection of code snippets. @@ -14,7 +14,7 @@ Pod::Spec.new do |s| s.homepage = "https://github.com/youknowone/FoundationExtension" s.license = "2-clause BSD" s.author = { "Jeong YunWon" => "jeong@youknowone.org" } - s.source = { :git => "https://github.com/youknowone/FoundationExtension.git", :tag => "pod-0.5" } + s.source = { :git => "https://github.com/youknowone/FoundationExtension.git", :tag => "pod-0.6" } s.dependency "cdebug", "~> 0.1" s.subspec "FoundationExtension" do |ss| From 63b0cd241bd9f0162eec2ba7f272117e010387b7 Mon Sep 17 00:00:00 2001 From: Michael Grossheim Date: Wed, 14 Nov 2012 13:54:07 -0600 Subject: [PATCH 037/148] Removed C++ specific includes/libraries not needed by the Objective-C port --- ZXingObjC/2.0.1/ZXingObjC.podspec | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/ZXingObjC/2.0.1/ZXingObjC.podspec b/ZXingObjC/2.0.1/ZXingObjC.podspec index 7009d42b..38d60b3c 100644 --- a/ZXingObjC/2.0.1/ZXingObjC.podspec +++ b/ZXingObjC/2.0.1/ZXingObjC.podspec @@ -9,13 +9,9 @@ Pod::Spec.new do |s| s.source = { :git => "https://github.com/TheLevelUp/ZXingObjC.git", :tag => "v2.0.1" } -# s.source_files = FileList['ZXingObjC/**/*.{h,cpp,m,mm}'].exclude(/.*ZXCode128Writer.m/) - s.source_files = 'ZXingObjC/**/*.{h,cpp,m,mm}' + s.source_files = 'ZXingObjC/**/*.{h,m}' s.requires_arc = false -# workaround for a missing import in objc/src/ZXing/ZXImage.mm -# s.prefix_header_contents = '#import ' - - s.libraries = 'stdc++', 'iconv' s.frameworks = 'ImageIO', 'CoreGraphics', 'CoreVideo', 'CoreMedia', 'QuartzCore', 'AVFoundation', 'AudioToolbox' + end From ca70f9346f671322820449b79ed02af30464fa98 Mon Sep 17 00:00:00 2001 From: JP Simard Date: Wed, 14 Nov 2012 15:25:13 -0500 Subject: [PATCH 038/148] Added StackBluriOS --- StackBluriOS/0.0.1/StackBluriOS.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 StackBluriOS/0.0.1/StackBluriOS.podspec diff --git a/StackBluriOS/0.0.1/StackBluriOS.podspec b/StackBluriOS/0.0.1/StackBluriOS.podspec new file mode 100644 index 00000000..30b8f1da --- /dev/null +++ b/StackBluriOS/0.0.1/StackBluriOS.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = 'StackBluriOS' + s.version = '0.0.1' + s.platform = :ios + s.license = 'BSD' + s.summary = 'Stack Blur implementation for iOS.' + s.homepage = 'https://github.com/tomsoft1/StackBluriOS' + s.author = { 'Thomas Landspurg' => 'thomas.landspurg@gmail.com' } + s.source = { :git => 'https://github.com/tomsoft1/StackBluriOS.git', :commit => 'cb6c78776a7548d0ac9a5686116a9e0f2e08587e' } + + s.source_files = 'Classes/UIImage+StackBlur.*' + s.requires_arc = true +end From 4007f8856caa0550705c4f5ea6cc9025082970c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eloy=20Dur=C3=A1n?= Date: Wed, 14 Nov 2012 23:24:17 +0100 Subject: [PATCH 039/148] CocoaPods release 0.16.0.rc5 --- CocoaPods-version.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CocoaPods-version.yml b/CocoaPods-version.yml index 87d53b4c..c6db3c49 100644 --- a/CocoaPods-version.yml +++ b/CocoaPods-version.yml @@ -1,3 +1,3 @@ --- -last: 0.16.0.rc4 +last: 0.16.0.rc5 min: 0.6.0 From bed6366b30c11e6bca1c107d4b52b05250afdebe Mon Sep 17 00:00:00 2001 From: Brian Antonelli Date: Wed, 14 Nov 2012 17:46:19 -0500 Subject: [PATCH 040/148] Adding coby pod. Analyzed 1 podspec. coby.podspec passed validation. --- coby/0.0.1/coby.podspec | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 coby/0.0.1/coby.podspec diff --git a/coby/0.0.1/coby.podspec b/coby/0.0.1/coby.podspec new file mode 100644 index 00000000..a6635084 --- /dev/null +++ b/coby/0.0.1/coby.podspec @@ -0,0 +1,22 @@ +Pod::Spec.new do |s| + s.name = 'coby' + s.version = '0.0.1' + s.summary = 'Opinionated categories for Objective C.' + s.homepage = 'https://github.com/pjaspers/Tin' + s.author = { 'pjaspers' => 'piet@jaspe.rs' } + s.source = { :git => 'https://github.com/pjaspers/coby.git', :commit => 'b03cd1965c3783085fe31cbd94fde6d90d0254ff' } + s.description = 'Opinionated categories on default objc-classes.' + s.license = { + :type => 'MIT', + :text => <<-LICENSE + Copyright (c) 2012 Piet Jaspers, Jelle Vandebeeck, Tom (@inferis) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +LICENSE + } + s.source_files = "*.{h,m}" +end \ No newline at end of file From 36396c7df58d9b0dc37301ed5a7cfe47841dfb69 Mon Sep 17 00:00:00 2001 From: Chih-Wei Lee Date: Thu, 15 Nov 2012 07:47:33 +0800 Subject: [PATCH 041/148] [Add] LienKit 1.0.0 --- LineKit/1.0.0/LineKit.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 LineKit/1.0.0/LineKit.podspec diff --git a/LineKit/1.0.0/LineKit.podspec b/LineKit/1.0.0/LineKit.podspec new file mode 100644 index 00000000..e89fe694 --- /dev/null +++ b/LineKit/1.0.0/LineKit.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = "LineKit" + s.version = "1.0.0" + s.summary = "Share to Naver Line from your apps." + s.homepage = "https://github.com/dlackty/LineKit" + s.license = { :type => 'MIT', :file => 'LICENSE' } + + s.author = { "Chih-Wei Lee" => "dlackty@gmail.com" } + s.source = { :git => "https://github.com/dlackty/LineKit.git", :tag => "1.0.0" } + s.platform = :ios, '4.0' + + s.source_files = 'LineKit/*.{h,m}' +end From 354631913aacc3988e17d4f2e8d486e66caf0d39 Mon Sep 17 00:00:00 2001 From: Brian Antonelli Date: Wed, 14 Nov 2012 22:43:42 -0500 Subject: [PATCH 042/148] Requires CFNetwork Projects that use this fail without the CFNetwork framework --- objectiveflickr/2.0.2/objectiveflickr.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objectiveflickr/2.0.2/objectiveflickr.podspec b/objectiveflickr/2.0.2/objectiveflickr.podspec index b75b9860..72a49ddd 100644 --- a/objectiveflickr/2.0.2/objectiveflickr.podspec +++ b/objectiveflickr/2.0.2/objectiveflickr.podspec @@ -26,6 +26,6 @@ Pod::Spec.new do |s| s.platform = :ios s.source_files = 'Source/*.{h,m}' , 'LFWebAPIKit/*.{h,m}' s.resources = 'BridgeSupport' - s.framework = 'SystemConfiguration' + s.frameworks = 'SystemConfiguration', 'CFNetwork' end From c189cd338ddad05ac2a2d09c0d504c49bac50ea5 Mon Sep 17 00:00:00 2001 From: Yi Qiang Date: Wed, 14 Nov 2012 22:49:00 -0800 Subject: [PATCH 043/148] v1.0.0 of Mixpanel --- Mixpanel/1.0.0/Mixpanel.podspec | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Mixpanel/1.0.0/Mixpanel.podspec diff --git a/Mixpanel/1.0.0/Mixpanel.podspec b/Mixpanel/1.0.0/Mixpanel.podspec new file mode 100644 index 00000000..ebff2226 --- /dev/null +++ b/Mixpanel/1.0.0/Mixpanel.podspec @@ -0,0 +1,11 @@ +Pod::Spec.new do |s| + s.name = 'Mixpanel' + s.version = '1.0.0' + s.license = 'Apache License' + s.summary = 'iPhone tracking library for Mixpanel Analytics.' + s.homepage = 'http://mixpanel.com' + s.author = { 'Mixpanel' => 'support@mixpanel.com' } + s.source = { :git => 'https://github.com/mixpanel/mixpanel-iphone.git', :tag => 'v1.0.0' } + s.platform = :ios + s.source_files = 'Mixpanel/**/*.{h,m}' +end From f455e0bf305a662489b5ed139091521ea36959da Mon Sep 17 00:00:00 2001 From: Matthias Wessendorf Date: Thu, 15 Nov 2012 08:24:51 +0100 Subject: [PATCH 044/148] new dev version to repo --- AeroGear/1.0.0.M1.20121115/AeroGear.podspec | 30 +++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 AeroGear/1.0.0.M1.20121115/AeroGear.podspec diff --git a/AeroGear/1.0.0.M1.20121115/AeroGear.podspec b/AeroGear/1.0.0.M1.20121115/AeroGear.podspec new file mode 100644 index 00000000..c4e2df4b --- /dev/null +++ b/AeroGear/1.0.0.M1.20121115/AeroGear.podspec @@ -0,0 +1,30 @@ +# +# JBoss, Home of Professional Open Source +# Copyright ${year}, Red Hat, Inc., and individual contributors +# by the @authors tag. See the copyright.txt in the distribution for a +# full listing of individual contributors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +Pod::Spec.new do |s| + s.name = "AeroGear" + s.version = "1.0.0.M1.20121115" + s.summary = "Provides a lightweight set of utilities for communication, security, storage and more." + s.homepage = "https://github.com/aerogear/aerogear-ios" + s.license = 'Apache License, Version 2.0' + s.author = "Red Hat, Inc." + s.source = { :git => 'https://github.com/aerogear/aerogear-ios.git', :tag => '1.0.0.M1.20121115' } + s.platform = :ios + s.source_files = 'AeroGear-iOS/AeroGear-iOS/**/*.{h,m}' + s.public_header_files = 'AeroGear-iOS/AeroGear-iOS/AeroGear.h', 'AeroGear-iOS/AeroGear-iOS/config/AGConfig.h', 'AeroGear-iOS/AeroGear-iOS/pipeline/AGPipe.h', 'AeroGear-iOS/AeroGear-iOS/pipeline/AGPipeline.h', 'AeroGear-iOS/AeroGear-iOS/pipeline/AGPipeConfig.h', 'AeroGear-iOS/AeroGear-iOS/datamanager/AGStore.h', 'AeroGear-iOS/AeroGear-iOS/datamanager/AGDataManager.h', 'AeroGear-iOS/AeroGear-iOS/datamanager/AGStoreConfig.h', 'AeroGear-iOS/AeroGear-iOS/security/AGAuthenticationModule.h', 'AeroGear-iOS/AeroGear-iOS/security/AGAuthenticator.h', 'AeroGear-iOS/AeroGear-iOS/security/AGAuthConfig.h' + s.requires_arc = true + s.dependency 'AFNetworking', '1.0RC1' +end \ No newline at end of file From 031ad8ca77f1b771bbd1a00a09026561326bafc6 Mon Sep 17 00:00:00 2001 From: Kevin Renskers Date: Thu, 15 Nov 2012 09:19:57 +0000 Subject: [PATCH 045/148] [Update] LastFm (0.9.5) --- LastFm/0.9.5/LastFm.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 LastFm/0.9.5/LastFm.podspec diff --git a/LastFm/0.9.5/LastFm.podspec b/LastFm/0.9.5/LastFm.podspec new file mode 100644 index 00000000..b7cf3202 --- /dev/null +++ b/LastFm/0.9.5/LastFm.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = "LastFm" + s.version = "0.9.5" + s.summary = "Block based Last.fm SDK for iOS and Mac OS X." + s.homepage = "https://github.com/gangverk/LastFm" + s.license = 'MIT' + s.author = { "Kevin Renskers" => "info@mixedcase.nl" } + s.source = { :git => "https://github.com/gangverk/LastFm.git", :tag => s.version.to_s } + s.ios.deployment_target = '4.0' + s.osx.deployment_target = '10.6' + s.source_files = 'LastFm/*.{h,m}' + s.requires_arc = true + s.dependency 'KissXML', '~> 5.0' +end From cfb81ced29469a6104744dd56e3b11a85ec63949 Mon Sep 17 00:00:00 2001 From: Jaap Manenschijn Date: Thu, 15 Nov 2012 10:30:25 +0100 Subject: [PATCH 046/148] [Add]Base64nl & PDKeychainBindingsController --- Base64nl/1.0.2/Base64nl.podspec | 10 ++++++++++ .../0.0.1/PDKeychainBindingsController.podspec | 11 +++++++++++ 2 files changed, 21 insertions(+) create mode 100644 Base64nl/1.0.2/Base64nl.podspec create mode 100644 PDKeychainBindingsController/0.0.1/PDKeychainBindingsController.podspec diff --git a/Base64nl/1.0.2/Base64nl.podspec b/Base64nl/1.0.2/Base64nl.podspec new file mode 100644 index 00000000..586bf6fd --- /dev/null +++ b/Base64nl/1.0.2/Base64nl.podspec @@ -0,0 +1,10 @@ +Pod::Spec.new do |s| + s.name = "Base64nl" + s.version = "1.0.2" + s.summary = "Bae64 is a set of categories that provide methods to encode and decode data as a base-64-encoded string." + s.homepage = "https://github.com/nicklockwood/Base64" + s.license = 'MIT' + s.author = "Nick Lockwood" + s.source = { :git => "https://github.com/nicklockwood/Base64.git", :tag => "1.0.2" } + s.source_files = 'Base64' +end diff --git a/PDKeychainBindingsController/0.0.1/PDKeychainBindingsController.podspec b/PDKeychainBindingsController/0.0.1/PDKeychainBindingsController.podspec new file mode 100644 index 00000000..ff5e44dc --- /dev/null +++ b/PDKeychainBindingsController/0.0.1/PDKeychainBindingsController.podspec @@ -0,0 +1,11 @@ +Pod::Spec.new do |s| + s.name = "PDKeychainBindingsController" + s.version = "0.0.1" + s.summary = "PDKeychainBindingsController is intended to make using the Max OSX and iOS Keychains as easy as NSUserDefaults." + s.homepage = "https://github.com/carlbrown/PDKeychainBindingsController" + s.license = 'MIT' + s.author = 'Carl Brown' + s.source = { :git => "https://github.com/carlbrown/PDKeychainBindingsController.git", :commit => "78f6debff6" } + s.source_files = 'PDKeychainBindingsController' + s.requires_arc = true +end From 9e7e367a0cd33e003e02e4833c2f0b3b67924b49 Mon Sep 17 00:00:00 2001 From: Kevin Renskers Date: Thu, 15 Nov 2012 09:33:11 +0000 Subject: [PATCH 047/148] Removed LastFm 0.9.5 --- LastFm/0.9.5/LastFm.podspec | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 LastFm/0.9.5/LastFm.podspec diff --git a/LastFm/0.9.5/LastFm.podspec b/LastFm/0.9.5/LastFm.podspec deleted file mode 100644 index b7cf3202..00000000 --- a/LastFm/0.9.5/LastFm.podspec +++ /dev/null @@ -1,14 +0,0 @@ -Pod::Spec.new do |s| - s.name = "LastFm" - s.version = "0.9.5" - s.summary = "Block based Last.fm SDK for iOS and Mac OS X." - s.homepage = "https://github.com/gangverk/LastFm" - s.license = 'MIT' - s.author = { "Kevin Renskers" => "info@mixedcase.nl" } - s.source = { :git => "https://github.com/gangverk/LastFm.git", :tag => s.version.to_s } - s.ios.deployment_target = '4.0' - s.osx.deployment_target = '10.6' - s.source_files = 'LastFm/*.{h,m}' - s.requires_arc = true - s.dependency 'KissXML', '~> 5.0' -end From 5d587fc29f4fd51601760faeab437c85b555c6b9 Mon Sep 17 00:00:00 2001 From: Kevin Renskers Date: Thu, 15 Nov 2012 11:43:11 +0000 Subject: [PATCH 048/148] [Update] LastFm (0.10.0) --- LastFm/0.10.0/LastFm.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 LastFm/0.10.0/LastFm.podspec diff --git a/LastFm/0.10.0/LastFm.podspec b/LastFm/0.10.0/LastFm.podspec new file mode 100644 index 00000000..a7cb718c --- /dev/null +++ b/LastFm/0.10.0/LastFm.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = "LastFm" + s.version = "0.10.0" + s.summary = "Block based Last.fm SDK for iOS and Mac OS X." + s.homepage = "https://github.com/gangverk/LastFm" + s.license = 'MIT' + s.author = { "Kevin Renskers" => "info@mixedcase.nl" } + s.source = { :git => "https://github.com/gangverk/LastFm.git", :tag => s.version.to_s } + s.ios.deployment_target = '4.0' + s.osx.deployment_target = '10.6' + s.source_files = 'LastFm/*.{h,m}' + s.requires_arc = true + s.dependency 'KissXML', '~> 5.0' +end From 486c79badb516639adeb0c14e1f6366eec8bf715 Mon Sep 17 00:00:00 2001 From: Simon Booth Date: Thu, 15 Nov 2012 12:05:00 +0000 Subject: [PATCH 049/148] Add podspec for WorkflowSchema --- WorkflowSchema/0.1.0/WorkflowSchema.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 WorkflowSchema/0.1.0/WorkflowSchema.podspec diff --git a/WorkflowSchema/0.1.0/WorkflowSchema.podspec b/WorkflowSchema/0.1.0/WorkflowSchema.podspec new file mode 100644 index 00000000..68e4c4b8 --- /dev/null +++ b/WorkflowSchema/0.1.0/WorkflowSchema.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = "WorkflowSchema" + s.version = "0.1.0" + s.summary = "An iOS framework which allows you to define app workflows in XML." + s.homepage = "https://github.com/CRedit360/WorkflowSchema" + s.license = 'MIT' + s.author = { "Simon Booth" => "simon.booth@credit360.com" } + s.source = { :git => "https://github.com/CRedit360/WorkflowSchema.git", :tag => "0.1.0" } + s.platform = :ios, '5.0' + s.source_files = 'WorkflowSchema/Code' + s.resources = 'WorkflowSchema/*.lproj/WorkflowSchema.strings' + s.requires_arc = true +end From fdd5473153d6446ba0b41991a7d17799ba03afff Mon Sep 17 00:00:00 2001 From: Brian Antonelli Date: Thu, 15 Nov 2012 09:22:41 -0500 Subject: [PATCH 050/148] Fixing homepage link --- coby/0.0.1/coby.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coby/0.0.1/coby.podspec b/coby/0.0.1/coby.podspec index a6635084..4bffdd27 100644 --- a/coby/0.0.1/coby.podspec +++ b/coby/0.0.1/coby.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |s| s.name = 'coby' s.version = '0.0.1' s.summary = 'Opinionated categories for Objective C.' - s.homepage = 'https://github.com/pjaspers/Tin' + s.homepage = 'https://github.com/pjaspers/coby' s.author = { 'pjaspers' => 'piet@jaspe.rs' } s.source = { :git => 'https://github.com/pjaspers/coby.git', :commit => 'b03cd1965c3783085fe31cbd94fde6d90d0254ff' } s.description = 'Opinionated categories on default objc-classes.' From f2f26f91fef914822b7ba8d23ea4acfcac28ae7a Mon Sep 17 00:00:00 2001 From: Kevin Renskers Date: Thu, 15 Nov 2012 17:15:58 +0000 Subject: [PATCH 051/148] [Update] LastFm (0.10.1) --- LastFm/0.10.1/LastFm.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 LastFm/0.10.1/LastFm.podspec diff --git a/LastFm/0.10.1/LastFm.podspec b/LastFm/0.10.1/LastFm.podspec new file mode 100644 index 00000000..3c30704b --- /dev/null +++ b/LastFm/0.10.1/LastFm.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = "LastFm" + s.version = "0.10.1" + s.summary = "Block based Last.fm SDK for iOS and Mac OS X." + s.homepage = "https://github.com/gangverk/LastFm" + s.license = 'MIT' + s.author = { "Kevin Renskers" => "info@mixedcase.nl" } + s.source = { :git => "https://github.com/gangverk/LastFm.git", :tag => s.version.to_s } + s.ios.deployment_target = '4.0' + s.osx.deployment_target = '10.6' + s.source_files = 'LastFm/*.{h,m}' + s.requires_arc = true + s.dependency 'KissXML', '~> 5.0' +end From 224ef883aa29fc4351885c5acf2d1b4c114ad503 Mon Sep 17 00:00:00 2001 From: Brian Antonelli Date: Thu, 15 Nov 2012 12:45:00 -0500 Subject: [PATCH 052/148] Adding TMQuiltView pod. --- TMQuiltView/0.0.1/TMQuiltView.podspec | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 TMQuiltView/0.0.1/TMQuiltView.podspec diff --git a/TMQuiltView/0.0.1/TMQuiltView.podspec b/TMQuiltView/0.0.1/TMQuiltView.podspec new file mode 100644 index 00000000..6e511b66 --- /dev/null +++ b/TMQuiltView/0.0.1/TMQuiltView.podspec @@ -0,0 +1,24 @@ +Pod::Spec.new do |s| + s.name = "TMQuiltView" + s.version = "0.0.1" + s.summary = "Interface similar to the UITableView with UI similar to Pintrest." + s.homepage = "https://github.com/1000Memories/TMQuiltView" + s.license = { + :type => 'MIT', + :text => <<-LICENSE + Copyright (c) 2012 1000memories + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +LICENSE + } + s.author = { "1000Memories" => "developers@1000memories.com" } + s.source = { :git => "https://github.com/1000Memories/TMQuiltView.git", :commit => "99a0f20259b12695c5c233e3921f88061d450b75" } + s.platform = :ios + + s.source_files = 'TMQuiltView/TMQuiltView/*.{h,m}' +end From dfbdb03dfd152f3284a207d74b4b66b45b137744 Mon Sep 17 00:00:00 2001 From: Tyler Casselman Date: Thu, 15 Nov 2012 10:24:48 -0800 Subject: [PATCH 053/148] Add the v1.0.0 Mixpanel tag to the repo The other 3 spec versions for this library seem to point to arbitrary commits in the mixpanel repo. The spec I have created points to the v1.0.0 tag. This tag's api seems to match the mixpanel instructions leading me to believe this tag is the commit Mixpanel is expecting user to use. I think spec versions 0.0.1, 1.2.1 and 1.3.1 should be removed. --- Mixpanel/1.0.0/Mixpanel.podspec | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Mixpanel/1.0.0/Mixpanel.podspec diff --git a/Mixpanel/1.0.0/Mixpanel.podspec b/Mixpanel/1.0.0/Mixpanel.podspec new file mode 100644 index 00000000..ebff2226 --- /dev/null +++ b/Mixpanel/1.0.0/Mixpanel.podspec @@ -0,0 +1,11 @@ +Pod::Spec.new do |s| + s.name = 'Mixpanel' + s.version = '1.0.0' + s.license = 'Apache License' + s.summary = 'iPhone tracking library for Mixpanel Analytics.' + s.homepage = 'http://mixpanel.com' + s.author = { 'Mixpanel' => 'support@mixpanel.com' } + s.source = { :git => 'https://github.com/mixpanel/mixpanel-iphone.git', :tag => 'v1.0.0' } + s.platform = :ios + s.source_files = 'Mixpanel/**/*.{h,m}' +end From cc8ed7800a87054f0be683614372ab7833a13c37 Mon Sep 17 00:00:00 2001 From: Tyler Casselman Date: Thu, 15 Nov 2012 10:53:05 -0800 Subject: [PATCH 054/148] Add CoreTelephony framework to the Mixpanel spec CoreTelephony is a dependency of Mixpanel 1.0.0 tag spec --- Mixpanel/1.0.0/Mixpanel.podspec | 1 + 1 file changed, 1 insertion(+) diff --git a/Mixpanel/1.0.0/Mixpanel.podspec b/Mixpanel/1.0.0/Mixpanel.podspec index ebff2226..8a5f7b36 100644 --- a/Mixpanel/1.0.0/Mixpanel.podspec +++ b/Mixpanel/1.0.0/Mixpanel.podspec @@ -6,6 +6,7 @@ Pod::Spec.new do |s| s.homepage = 'http://mixpanel.com' s.author = { 'Mixpanel' => 'support@mixpanel.com' } s.source = { :git => 'https://github.com/mixpanel/mixpanel-iphone.git', :tag => 'v1.0.0' } + s.frameworks = 'CoreTelephony' s.platform = :ios s.source_files = 'Mixpanel/**/*.{h,m}' end From 08a2e7690472fb1d09cafa4d0bad4eb1f34ff0bc Mon Sep 17 00:00:00 2001 From: Matt Vaznaian Date: Thu, 15 Nov 2012 12:01:35 -0800 Subject: [PATCH 055/148] Add StackMob v1.1.3, add StackMobPush v1.0.2 --- StackMob/1.1.3/StackMob.podspec | 24 ++++++++++++++++++++++++ StackMobPush/1.0.2/StackMobPush.podspec | 21 +++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 StackMob/1.1.3/StackMob.podspec create mode 100644 StackMobPush/1.0.2/StackMobPush.podspec diff --git a/StackMob/1.1.3/StackMob.podspec b/StackMob/1.1.3/StackMob.podspec new file mode 100644 index 00000000..10e7fb1e --- /dev/null +++ b/StackMob/1.1.3/StackMob.podspec @@ -0,0 +1,24 @@ +Pod::Spec.new do |s| + s.name = 'StackMob' + s.version = '1.1.3' + s.license = 'Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)' + s.summary = "StackMob's SDK for accessing the StackMob Services on iOS." + s.homepage = 'http://stackmob.com' + s.author = { 'StackMob' => 'info@stackmob.com' } + s.source = { :git => 'https://github.com/stackmob/stackmob-ios-sdk.git', :tag => s.version.to_s } + s.platform = :ios, '5.0' + s.source_files = 'Classes/*.{h,m}', 'Utility/*.{h,m}', 'CoreData/Classes/*.{h,m}', 'Push/*.{h,m}' + s.dependency 'AFNetworking', '1.0' + s.frameworks = 'CoreData', 'Security', 'SystemConfiguration', 'MobileCoreServices' + s.requires_arc = true + s.documentation = { + :appledoc => [ + '--index-desc','OverviewForDocs.md', + '--clean-output', + '--no-keep-undocumented-objects', + '--no-keep-undocumented-members', + '--no-repeat-first-par', + '--no-merge-categories', + '--install-docset' + ]} +end diff --git a/StackMobPush/1.0.2/StackMobPush.podspec b/StackMobPush/1.0.2/StackMobPush.podspec new file mode 100644 index 00000000..286e4292 --- /dev/null +++ b/StackMobPush/1.0.2/StackMobPush.podspec @@ -0,0 +1,21 @@ +Pod::Spec.new do |s| + s.name = 'StackMobPush' + s.version = '1.0.2' + s.license = 'Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)' + s.summary = "StackMob's Push SDK for sending push notifications via the StackMob Services on iOS." + s.homepage = 'http://stackmob.com' + s.author = { 'StackMob' => 'info@stackmob.com' } + s.source = { :git => 'https://github.com/stackmob/stackmob-ios-push-sdk.git', :tag => s.version.to_s } + s.platform = :ios, '5.0' + s.source_files = 'stackmob-ios-push-sdk/*.{h,m}' + s.requires_arc = true + s.documentation = { + :appledoc => [ + '--no-keep-undocumented-objects', + '--no-keep-undocumented-members', + '--no-repeat-first-par', + '--no-merge-categories', + '--install-docset' + ]} + +end \ No newline at end of file From 1850f4ee7e2e8e7e339b5eea8f5dc6eae8ad6fb2 Mon Sep 17 00:00:00 2001 From: Matt Vaznaian Date: Thu, 15 Nov 2012 12:15:02 -0800 Subject: [PATCH 056/148] modified stackmobpush v1.0.2 spec --- StackMobPush/1.0.2/StackMobPush.podspec | 1 + 1 file changed, 1 insertion(+) diff --git a/StackMobPush/1.0.2/StackMobPush.podspec b/StackMobPush/1.0.2/StackMobPush.podspec index 286e4292..adf7f360 100644 --- a/StackMobPush/1.0.2/StackMobPush.podspec +++ b/StackMobPush/1.0.2/StackMobPush.podspec @@ -8,6 +8,7 @@ Pod::Spec.new do |s| s.source = { :git => 'https://github.com/stackmob/stackmob-ios-push-sdk.git', :tag => s.version.to_s } s.platform = :ios, '5.0' s.source_files = 'stackmob-ios-push-sdk/*.{h,m}' + s.dependency 'AFNetworking', '1.0RC1' s.requires_arc = true s.documentation = { :appledoc => [ From e043fe6288e7b766bbeb2987b9b9d26616960376 Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Thu, 15 Nov 2012 17:31:38 -0500 Subject: [PATCH 057/148] Added KSLabel --- KSLabel/0.1.0/KSLabel.podspec | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 KSLabel/0.1.0/KSLabel.podspec diff --git a/KSLabel/0.1.0/KSLabel.podspec b/KSLabel/0.1.0/KSLabel.podspec new file mode 100644 index 00000000..a4b11f89 --- /dev/null +++ b/KSLabel/0.1.0/KSLabel.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = "KSLabel" + s.version = "0.1.0" + s.summary = "A drop in subclass of NSTextField for programmatically created labels." + s.homepage = "https://github.com/Keithbsmiley/KSLabel" + s.license = 'MIT' + s.author = { "Keith Smiley" => "keithbsmiley@gmail.com" } + s.source = { :git => "https://github.com/Keithbsmiley/KSLabel.git", :tag => "0.1.0" } + s.platform = :osx + s.source_files = '*.{h,m}' + s.requires_arc = true +end From f5a1b4a4897d28f0d43c1f660fdc47017430ca94 Mon Sep 17 00:00:00 2001 From: David Whetstone Date: Thu, 15 Nov 2012 16:52:53 -0800 Subject: [PATCH 058/148] Add CrittercismSDK 3.4.0 --- CrittercismSDK/3.4.0/CrittercismSDK.podspec | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 CrittercismSDK/3.4.0/CrittercismSDK.podspec diff --git a/CrittercismSDK/3.4.0/CrittercismSDK.podspec b/CrittercismSDK/3.4.0/CrittercismSDK.podspec new file mode 100644 index 00000000..7f51a9e7 --- /dev/null +++ b/CrittercismSDK/3.4.0/CrittercismSDK.podspec @@ -0,0 +1,15 @@ +Pod::Spec.new do |s| + s.name = 'CrittercismSDK' + s.version = '3.4.0' + s.license = { :type => 'Commercial', :text => 'See http://www.crittercism.com/tos-v3.html' } + s.summary = 'Mobile App Performance Monitoring and Crash Reporting.' + s.homepage = 'http://www.crittercism.com' + s.author = { 'Crittercism' => 'support@crittercism.com' } + s.source = { :http => 'https://www.crittercism.com/images/Crittercism_v3_4_0.zip' } + s.description = 'Mobile App Performance Monitoring and Crash Reporting.' + s.platform = :ios + s.source_files = 'CrittercismSDK/*.h' + s.preserve_paths = 'CrittercismSDK/libCrittercism_v3_4_0.a' + s.library = 'Crittercism_v3_4_0' + s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '"$(PODS_ROOT)/CrittercismSDK/CrittercismSDK"' } +end From 4d76fec61e13a0993dc0740e3cbbe272911b6848 Mon Sep 17 00:00:00 2001 From: Jeong YunWon Date: Fri, 16 Nov 2012 13:21:24 +0900 Subject: [PATCH 059/148] [Update] FoundationExtension bug fix --- .../{0.6 => 0.6.1}/FoundationExtension.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename FoundationExtension/{0.6 => 0.6.1}/FoundationExtension.podspec (96%) diff --git a/FoundationExtension/0.6/FoundationExtension.podspec b/FoundationExtension/0.6.1/FoundationExtension.podspec similarity index 96% rename from FoundationExtension/0.6/FoundationExtension.podspec rename to FoundationExtension/0.6.1/FoundationExtension.podspec index e6b6c2de..8909bac7 100644 --- a/FoundationExtension/0.6/FoundationExtension.podspec +++ b/FoundationExtension/0.6.1/FoundationExtension.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "FoundationExtension" - s.version = "0.6" + s.version = "0.6.1" s.summary = "Foundation/UIKit extension kit. It is category based and looks familiar to Foundation/UIKit. It includes many common snippets as shortcut." s.description = <<-DESC This library includes small Foundation/Cocoa/UIKit extensions. This library does not includes high-level data structure, algorithm or frameworks, but collection of code snippets. @@ -14,7 +14,7 @@ Pod::Spec.new do |s| s.homepage = "https://github.com/youknowone/FoundationExtension" s.license = "2-clause BSD" s.author = { "Jeong YunWon" => "jeong@youknowone.org" } - s.source = { :git => "https://github.com/youknowone/FoundationExtension.git", :tag => "pod-0.6" } + s.source = { :git => "https://github.com/youknowone/FoundationExtension.git", :tag => "pod-0.6.1" } s.dependency "cdebug", "~> 0.1" s.subspec "FoundationExtension" do |ss| From d9f57e1eadb913ea42df5c4de0202ad573606a11 Mon Sep 17 00:00:00 2001 From: Jeong YunWon Date: Fri, 16 Nov 2012 22:22:06 +0900 Subject: [PATCH 060/148] [Update] FoundationExtension bugfix Support low version OS X --- .../{0.6.1 => 0.6.2}/FoundationExtension.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename FoundationExtension/{0.6.1 => 0.6.2}/FoundationExtension.podspec (96%) diff --git a/FoundationExtension/0.6.1/FoundationExtension.podspec b/FoundationExtension/0.6.2/FoundationExtension.podspec similarity index 96% rename from FoundationExtension/0.6.1/FoundationExtension.podspec rename to FoundationExtension/0.6.2/FoundationExtension.podspec index 8909bac7..b3ed1dd0 100644 --- a/FoundationExtension/0.6.1/FoundationExtension.podspec +++ b/FoundationExtension/0.6.2/FoundationExtension.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "FoundationExtension" - s.version = "0.6.1" + s.version = "0.6.2" s.summary = "Foundation/UIKit extension kit. It is category based and looks familiar to Foundation/UIKit. It includes many common snippets as shortcut." s.description = <<-DESC This library includes small Foundation/Cocoa/UIKit extensions. This library does not includes high-level data structure, algorithm or frameworks, but collection of code snippets. @@ -14,7 +14,7 @@ Pod::Spec.new do |s| s.homepage = "https://github.com/youknowone/FoundationExtension" s.license = "2-clause BSD" s.author = { "Jeong YunWon" => "jeong@youknowone.org" } - s.source = { :git => "https://github.com/youknowone/FoundationExtension.git", :tag => "pod-0.6.1" } + s.source = { :git => "https://github.com/youknowone/FoundationExtension.git", :tag => "pod-0.6.2" } s.dependency "cdebug", "~> 0.1" s.subspec "FoundationExtension" do |ss| From 04dfaeff00746497ca0e0c6e00e0a62bbc9e2a4e Mon Sep 17 00:00:00 2001 From: Jeong YunWon Date: Fri, 16 Nov 2012 22:27:38 +0900 Subject: [PATCH 061/148] [Update] libintl-alternative Remove compiler warning --- .../{0.1 => 0.1.1}/libintl-alternative.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename libintl-alternative/{0.1 => 0.1.1}/libintl-alternative.podspec (87%) diff --git a/libintl-alternative/0.1/libintl-alternative.podspec b/libintl-alternative/0.1.1/libintl-alternative.podspec similarity index 87% rename from libintl-alternative/0.1/libintl-alternative.podspec rename to libintl-alternative/0.1.1/libintl-alternative.podspec index 64893ed7..59ef3213 100644 --- a/libintl-alternative/0.1/libintl-alternative.podspec +++ b/libintl-alternative/0.1.1/libintl-alternative.podspec @@ -1,12 +1,12 @@ Pod::Spec.new do |s| s.name = "libintl-alternative" - s.version = "0.1" + s.version = "0.1.1" s.summary = "Replace libintl part of gettext runtime with NSBundle localizedString: for OSX/iOS." s.homepage = "https://github.com/youknowone/libintl-alternative" s.license = '2-clause BSD' s.author = { "Jeong YunWon" => "jeong@youknowone.org" } - s.source = { :git => "https://github.com/youknowone/libintl-alternative.git", :tag => "0.1" } + s.source = { :git => "https://github.com/youknowone/libintl-alternative.git", :tag => "0.1.1" } s.source_files = 'libintl.{h,m}' s.preserve_paths = 'bin/po_to_strings.rb' From acac7c66e23bc1139d35529176b2c960c5d12b2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20De=CC=81fago?= Date: Fri, 16 Nov 2012 14:34:34 +0100 Subject: [PATCH 062/148] Add podspec for CoconutKit 2.0 --- CoconutKit/2.0/CoconutKit.podspec | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 CoconutKit/2.0/CoconutKit.podspec diff --git a/CoconutKit/2.0/CoconutKit.podspec b/CoconutKit/2.0/CoconutKit.podspec new file mode 100644 index 00000000..bc68c077 --- /dev/null +++ b/CoconutKit/2.0/CoconutKit.podspec @@ -0,0 +1,20 @@ +Pod::Spec.new do |s| + s.name = 'CoconutKit' + s.version = '2.0' + s.license = 'MIT' + s.summary = 'CoconutKit is a library of high-quality iOS components.' + s.homepage = 'https://github.com/defagos/CoconutKit' + s.author = { 'Samuel Défago' => 'defagos@gmail.com' } + s.source = { :git => 'https://github.com/defagos/CoconutKit-CocoaPods.git', :tag => '2.0' } + s.platform = :ios, '4.0' + + s.description = 'CoconutKit is a library of high-quality iOS components written at hortis le studio and in my spare time. It includes several tools for dealing with view controllers, multi-threading, view animations, as well as some new controls and various utility classes. These components are meant to make the life of an iOS programmer easier by reducing the boilerplate code written every day, improving code quality and enforcing solid application architecture.' + + s.source_files = 'Sources/**/*.{h,m}', 'PublicHeaders/**/*.h' + s.resources = 'CoconutKit-resources.bundle' + s.public_header_files = 'PublicHeaders/*.h' + s.prefix_header_file = 'CoconutKit-Prefix.pch' + + s.frameworks = 'CoreData', 'MessageUI', 'QuartzCore' + s.requires_arc = false +end From 10ffa7624accc2ee9d6307d6d1b48fd96d9adfad Mon Sep 17 00:00:00 2001 From: David Keegan Date: Fri, 16 Nov 2012 10:26:37 -0800 Subject: [PATCH 063/148] [Update] KGNoise (1.1.0) --- KGNoise/1.1.0/KGNoise.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 KGNoise/1.1.0/KGNoise.podspec diff --git a/KGNoise/1.1.0/KGNoise.podspec b/KGNoise/1.1.0/KGNoise.podspec new file mode 100644 index 00000000..22ffa487 --- /dev/null +++ b/KGNoise/1.1.0/KGNoise.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = "KGNoise" + s.version = "1.1.0" + s.summary = "Cocoa noise drawing code + a ready to go noise view." + s.homepage = "https://github.com/kgn/KGNoise" + s.license = { :type => 'MIT', :file => 'license.txt' } + s.author = { "David Keegan" => "git@davidkeegan.com" } + s.source = { :git => "https://github.com/kgn/KGNoise.git", :tag => "1.1.0" } + s.ios.deployment_target = '5.0' + s.osx.deployment_target = '10.7' + s.source_files = 'KGNoise.{h,m}' + s.requires_arc = true +end From 990ad006f7f33d1036159581c27730f522a1e8e9 Mon Sep 17 00:00:00 2001 From: Matt Vaznaian Date: Fri, 16 Nov 2012 11:14:15 -0800 Subject: [PATCH 064/148] Remove StackMob v1.1.3 --- StackMob/1.1.3/StackMob.podspec | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 StackMob/1.1.3/StackMob.podspec diff --git a/StackMob/1.1.3/StackMob.podspec b/StackMob/1.1.3/StackMob.podspec deleted file mode 100644 index 10e7fb1e..00000000 --- a/StackMob/1.1.3/StackMob.podspec +++ /dev/null @@ -1,24 +0,0 @@ -Pod::Spec.new do |s| - s.name = 'StackMob' - s.version = '1.1.3' - s.license = 'Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)' - s.summary = "StackMob's SDK for accessing the StackMob Services on iOS." - s.homepage = 'http://stackmob.com' - s.author = { 'StackMob' => 'info@stackmob.com' } - s.source = { :git => 'https://github.com/stackmob/stackmob-ios-sdk.git', :tag => s.version.to_s } - s.platform = :ios, '5.0' - s.source_files = 'Classes/*.{h,m}', 'Utility/*.{h,m}', 'CoreData/Classes/*.{h,m}', 'Push/*.{h,m}' - s.dependency 'AFNetworking', '1.0' - s.frameworks = 'CoreData', 'Security', 'SystemConfiguration', 'MobileCoreServices' - s.requires_arc = true - s.documentation = { - :appledoc => [ - '--index-desc','OverviewForDocs.md', - '--clean-output', - '--no-keep-undocumented-objects', - '--no-keep-undocumented-members', - '--no-repeat-first-par', - '--no-merge-categories', - '--install-docset' - ]} -end From 41039d5643b6201a1e9ee059bc5c5eba394f48d7 Mon Sep 17 00:00:00 2001 From: Matt Vaznaian Date: Fri, 16 Nov 2012 11:19:51 -0800 Subject: [PATCH 065/148] Re-add StackMob 1.1.3 --- StackMob/1.1.3/StackMob.podspec | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 StackMob/1.1.3/StackMob.podspec diff --git a/StackMob/1.1.3/StackMob.podspec b/StackMob/1.1.3/StackMob.podspec new file mode 100644 index 00000000..10e7fb1e --- /dev/null +++ b/StackMob/1.1.3/StackMob.podspec @@ -0,0 +1,24 @@ +Pod::Spec.new do |s| + s.name = 'StackMob' + s.version = '1.1.3' + s.license = 'Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)' + s.summary = "StackMob's SDK for accessing the StackMob Services on iOS." + s.homepage = 'http://stackmob.com' + s.author = { 'StackMob' => 'info@stackmob.com' } + s.source = { :git => 'https://github.com/stackmob/stackmob-ios-sdk.git', :tag => s.version.to_s } + s.platform = :ios, '5.0' + s.source_files = 'Classes/*.{h,m}', 'Utility/*.{h,m}', 'CoreData/Classes/*.{h,m}', 'Push/*.{h,m}' + s.dependency 'AFNetworking', '1.0' + s.frameworks = 'CoreData', 'Security', 'SystemConfiguration', 'MobileCoreServices' + s.requires_arc = true + s.documentation = { + :appledoc => [ + '--index-desc','OverviewForDocs.md', + '--clean-output', + '--no-keep-undocumented-objects', + '--no-keep-undocumented-members', + '--no-repeat-first-par', + '--no-merge-categories', + '--install-docset' + ]} +end From 99549ec7483c73ba30822ba8445380df043f6765 Mon Sep 17 00:00:00 2001 From: Jacob Jennings Date: Fri, 16 Nov 2012 11:25:04 -0800 Subject: [PATCH 066/148] Update HTDelegateProxy 0.0.2 spec to require ARC --- HTDelegateProxy/0.0.2/HTDelegateProxy.podspec | 1 + 1 file changed, 1 insertion(+) diff --git a/HTDelegateProxy/0.0.2/HTDelegateProxy.podspec b/HTDelegateProxy/0.0.2/HTDelegateProxy.podspec index 395690c9..f611e492 100644 --- a/HTDelegateProxy/0.0.2/HTDelegateProxy.podspec +++ b/HTDelegateProxy/0.0.2/HTDelegateProxy.podspec @@ -9,5 +9,6 @@ Pod::Spec.new do |s| s.ios.deployment_target = '4.3' s.osx.deployment_target = '10.5' s.source_files = 'Classes', '*.{h,m}' + s.requires_arc = true end From a43509dcfd0c7d84db44cb0da99bbe0a5dd3e3a3 Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Fri, 16 Nov 2012 14:26:19 -0500 Subject: [PATCH 067/148] Added KSADNTwitterFormatter --- .../0.1.0/KSADNTwitterFormatter.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 KSADNTwitterFormatter/0.1.0/KSADNTwitterFormatter.podspec diff --git a/KSADNTwitterFormatter/0.1.0/KSADNTwitterFormatter.podspec b/KSADNTwitterFormatter/0.1.0/KSADNTwitterFormatter.podspec new file mode 100644 index 00000000..901e2fcb --- /dev/null +++ b/KSADNTwitterFormatter/0.1.0/KSADNTwitterFormatter.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = "KSADNTwitterFormatter" + s.version = "0.1.0" + s.summary = "A simple class for taking ADN posts and reformatting them to fit into Twitter's length restrictions, taking links into account." + s.homepage = "https://github.com/Keithbsmiley/KSADNTwitterFormatter" + s.license = 'MIT' + s.author = { "Keith Smiley" => "keithbsmiley@gmail.com" } + s.source = { :git => "https://github.com/Keithbsmiley/KSADNTwitterFormatter.git", :tag => "0.1.0" } + s.ios.deployment_target = '5.0' + s.osx.deployment_target = '10.7' + s.source_files = '*.{h,m}' + s.requires_arc = true +end From 4e7b214231f1aece3ae4d07487e80e2801805819 Mon Sep 17 00:00:00 2001 From: Matt Vaznaian Date: Fri, 16 Nov 2012 11:27:48 -0800 Subject: [PATCH 068/148] Point to specific commit, not picking up updated tag --- StackMob/1.1.3/StackMob.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/StackMob/1.1.3/StackMob.podspec b/StackMob/1.1.3/StackMob.podspec index 10e7fb1e..fbef846e 100644 --- a/StackMob/1.1.3/StackMob.podspec +++ b/StackMob/1.1.3/StackMob.podspec @@ -5,7 +5,7 @@ Pod::Spec.new do |s| s.summary = "StackMob's SDK for accessing the StackMob Services on iOS." s.homepage = 'http://stackmob.com' s.author = { 'StackMob' => 'info@stackmob.com' } - s.source = { :git => 'https://github.com/stackmob/stackmob-ios-sdk.git', :tag => s.version.to_s } + s.source = { :git => 'https://github.com/stackmob/stackmob-ios-sdk.git', :commit => '225c57a73ed75825fa4af54caafe251ebb43539b' } s.platform = :ios, '5.0' s.source_files = 'Classes/*.{h,m}', 'Utility/*.{h,m}', 'CoreData/Classes/*.{h,m}', 'Push/*.{h,m}' s.dependency 'AFNetworking', '1.0' From 708e0b72fa1b3540ed38231271cdd5acaa528af4 Mon Sep 17 00:00:00 2001 From: Saikat Chakrabarti Date: Fri, 16 Nov 2012 17:30:08 -0500 Subject: [PATCH 069/148] Add Stripe podspec --- Stripe/1.0.1/Stripe.podspec | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Stripe/1.0.1/Stripe.podspec diff --git a/Stripe/1.0.1/Stripe.podspec b/Stripe/1.0.1/Stripe.podspec new file mode 100644 index 00000000..61033f97 --- /dev/null +++ b/Stripe/1.0.1/Stripe.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = "Stripe" + s.version = "1.0.1" + s.summary = "Stripe is a web-based API for accepting payments online." + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.homepage = "https://stripe.com" + s.author = { "Saikat Chakrabarti" => "saikat@stripe.com" } + s.source = { :git => "https://github.com/stripe/stripe-ios.git", :tag => "v1.0.1"} + s.source_files = 'Stripe/*.{h,m}' + s.public_header_files = 'Stripe/*.h' + s.framework = 'Foundation' +end From 1bf661b0acaca190bc5342e901e37dcd41a4a5c8 Mon Sep 17 00:00:00 2001 From: David Venable Date: Fri, 16 Nov 2012 16:34:25 -0600 Subject: [PATCH 070/148] [Fix] MWFeedParser (0.0.1) --- MWFeedParser/0.0.1/MWFeedParser.podspec | 1 - 1 file changed, 1 deletion(-) diff --git a/MWFeedParser/0.0.1/MWFeedParser.podspec b/MWFeedParser/0.0.1/MWFeedParser.podspec index 62435c5f..b0b15d4b 100644 --- a/MWFeedParser/0.0.1/MWFeedParser.podspec +++ b/MWFeedParser/0.0.1/MWFeedParser.podspec @@ -6,7 +6,6 @@ Pod::Spec.new do |s| s.homepage = 'https://github.com/mwaterfall/MWFeedParser' s.author = { 'Michael Waterfall' => 'mw@d3i.com' } s.source = { :git => 'https://github.com/mwaterfall/MWFeedParser.git', :commit => '0b1d301877c43c80e5fe5c7f294a2a34fa62f5a7' } - s.platform = :ios s.compiler_flags = '-Wno-format', '-Wno-format-extra-args' s.framework = 'Foundation' From 147b4ea85255a490e50a7f01cba57af27561ee3e Mon Sep 17 00:00:00 2001 From: David Venable Date: Fri, 16 Nov 2012 17:33:59 -0600 Subject: [PATCH 071/148] Revert "[Fix] MWFeedParser (0.0.1)" This reverts commit 1bf661b0acaca190bc5342e901e37dcd41a4a5c8. --- MWFeedParser/0.0.1/MWFeedParser.podspec | 1 + 1 file changed, 1 insertion(+) diff --git a/MWFeedParser/0.0.1/MWFeedParser.podspec b/MWFeedParser/0.0.1/MWFeedParser.podspec index b0b15d4b..62435c5f 100644 --- a/MWFeedParser/0.0.1/MWFeedParser.podspec +++ b/MWFeedParser/0.0.1/MWFeedParser.podspec @@ -6,6 +6,7 @@ Pod::Spec.new do |s| s.homepage = 'https://github.com/mwaterfall/MWFeedParser' s.author = { 'Michael Waterfall' => 'mw@d3i.com' } s.source = { :git => 'https://github.com/mwaterfall/MWFeedParser.git', :commit => '0b1d301877c43c80e5fe5c7f294a2a34fa62f5a7' } + s.platform = :ios s.compiler_flags = '-Wno-format', '-Wno-format-extra-args' s.framework = 'Foundation' From 0a52cd7adc4dbd980427f332d6d0636c5ab8076f Mon Sep 17 00:00:00 2001 From: Matt Vaznaian Date: Fri, 16 Nov 2012 16:00:02 -0800 Subject: [PATCH 072/148] Remove v.1.1.3 --- StackMob/1.1.3/StackMob.podspec | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 StackMob/1.1.3/StackMob.podspec diff --git a/StackMob/1.1.3/StackMob.podspec b/StackMob/1.1.3/StackMob.podspec deleted file mode 100644 index fbef846e..00000000 --- a/StackMob/1.1.3/StackMob.podspec +++ /dev/null @@ -1,24 +0,0 @@ -Pod::Spec.new do |s| - s.name = 'StackMob' - s.version = '1.1.3' - s.license = 'Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)' - s.summary = "StackMob's SDK for accessing the StackMob Services on iOS." - s.homepage = 'http://stackmob.com' - s.author = { 'StackMob' => 'info@stackmob.com' } - s.source = { :git => 'https://github.com/stackmob/stackmob-ios-sdk.git', :commit => '225c57a73ed75825fa4af54caafe251ebb43539b' } - s.platform = :ios, '5.0' - s.source_files = 'Classes/*.{h,m}', 'Utility/*.{h,m}', 'CoreData/Classes/*.{h,m}', 'Push/*.{h,m}' - s.dependency 'AFNetworking', '1.0' - s.frameworks = 'CoreData', 'Security', 'SystemConfiguration', 'MobileCoreServices' - s.requires_arc = true - s.documentation = { - :appledoc => [ - '--index-desc','OverviewForDocs.md', - '--clean-output', - '--no-keep-undocumented-objects', - '--no-keep-undocumented-members', - '--no-repeat-first-par', - '--no-merge-categories', - '--install-docset' - ]} -end From 5d9308c7fa89642387a0f5ec0036c0273e7f70dc Mon Sep 17 00:00:00 2001 From: Tyler Casselman Date: Fri, 16 Nov 2012 16:07:07 -0800 Subject: [PATCH 073/148] Add Clutch.io client spec to cocoapods Clutch.io is now self hosted so users will have to install the server component somewhere to use clutch.io. There are a few services that are hosting clutch.io servers. I believe arise.com was one. --- Clutch/0.0.1/Clutch.podspec | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Clutch/0.0.1/Clutch.podspec diff --git a/Clutch/0.0.1/Clutch.podspec b/Clutch/0.0.1/Clutch.podspec new file mode 100644 index 00000000..c2bfb774 --- /dev/null +++ b/Clutch/0.0.1/Clutch.podspec @@ -0,0 +1,27 @@ +Pod::Spec.new do |s| + s.name = "Clutch" + s.version = "0.0.1" + s.summary = "This is the iOS client library for Clutch.io." + s.description = <<-DESC + Example + Here's how you might use it for simple A/B testing: + + [ClutchAB testWithName:@"signUpBtnColor" A:^{ + // Display green sign-up button + } B:^{ + // Display blue sign-up button + }]; + Documentation + More documentation can be found at: http://docs.clutch.io/ + DESC + s.homepage = "https://clutch.io/" + + s.license = 'Apache License' + s.author = { "Eric Florenzano" => "floguy@gmail.com" } + s.source = { :git => "https://github.com/clutchio/clutchios.git", :commit => "f2c8745d25104f671d3a1b67e9ef9745ac79dbe7" } + s.platform = :ios + + s.xcconfig = { 'HEADER_SEARCH_PATHS' => "$(PODS_ROOT)/Clutch/" } + s.source_files = 'Clutch' + +end From b84f3abea98d180605898495c633021f2e30eb8d Mon Sep 17 00:00:00 2001 From: Chris Boyd Date: Sat, 17 Nov 2012 11:25:01 -0600 Subject: [PATCH 074/148] Adding iTunesConnectHelper. --- .../1.0/iTunesConnectHelper.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 iTunesConnectHelper/1.0/iTunesConnectHelper.podspec diff --git a/iTunesConnectHelper/1.0/iTunesConnectHelper.podspec b/iTunesConnectHelper/1.0/iTunesConnectHelper.podspec new file mode 100644 index 00000000..3d2198ee --- /dev/null +++ b/iTunesConnectHelper/1.0/iTunesConnectHelper.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = 'iTunesConnect' + s.version = '1.0' + s.platform = :ios + s.summary = 'Helper class for making purchases with iTunes Connect.' + s.description = %{iTunesConnectHelper is a drop-in helper class for working with iTunes Connect and iTunes In-App Purchases. It makes the iTunes In-App Purchase process simplified and easy.} + s.homepage = 'https://github.com/ApptitudeNOLA/iTunesConnectHelper' + s.license = 'MIT' + s.author = { 'Chris Boyd' => 'chris@apptitudenola.com' } + s.source = { :git => 'https://github.com/ApptitudeNOLA/iTunesConnectHelper.git', :tag => '1.0' } + s.source_files = 'Classes', '*.{h,m}' + s.framework = 'StoreKit' + s.requires_arc = true +end From 267c702518fb696a2f218824be300e3b042eab72 Mon Sep 17 00:00:00 2001 From: Chris Boyd Date: Sat, 17 Nov 2012 11:33:36 -0600 Subject: [PATCH 075/148] Updating pod name to match podspec. --- iTunesConnectHelper/1.0/iTunesConnectHelper.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iTunesConnectHelper/1.0/iTunesConnectHelper.podspec b/iTunesConnectHelper/1.0/iTunesConnectHelper.podspec index 3d2198ee..bbe08f1e 100644 --- a/iTunesConnectHelper/1.0/iTunesConnectHelper.podspec +++ b/iTunesConnectHelper/1.0/iTunesConnectHelper.podspec @@ -1,5 +1,5 @@ Pod::Spec.new do |s| - s.name = 'iTunesConnect' + s.name = 'iTunesConnectHelper' s.version = '1.0' s.platform = :ios s.summary = 'Helper class for making purchases with iTunes Connect.' From cd6bf96c2536ddecaa352baefb8e5af0b9f5143b Mon Sep 17 00:00:00 2001 From: Alex Denisov <1101.debian@gmail.com> Date: Sat, 17 Nov 2012 22:56:29 +0200 Subject: [PATCH 076/148] FontasticIcons: 0.1.0, new fonts added --- FontasticIcons/0.1.0/FontasticIcons.podspec | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 FontasticIcons/0.1.0/FontasticIcons.podspec diff --git a/FontasticIcons/0.1.0/FontasticIcons.podspec b/FontasticIcons/0.1.0/FontasticIcons.podspec new file mode 100644 index 00000000..9ba7bc5c --- /dev/null +++ b/FontasticIcons/0.1.0/FontasticIcons.podspec @@ -0,0 +1,15 @@ +Pod::Spec.new do |s| + s.name = 'FontasticIcons' + s.platform = :ios + s.version = '0.1.0' + s.license = 'MIT' + s.summary = 'Objective-C wrapper for iconic fonts.' + s.homepage = 'https://github.com/AlexDenisov/FontasticIcons' + s.author = { 'Alex Denisov' => '1101.debian@gmail.com' } + s.source = { :git => 'https://github.com/AlexDenisov/FontasticIcons.git', +:tag => '0.1.0' } + s.description = 'Objective-C wrapper for iconic fonts.' + s.source_files = 'FontasticIcons/Sources/Classes/*.{h,m}' + s.resources = 'FontasticIcons/Sources/Resources/Fonts/*' + s.frameworks = 'CoreText' +end From 0f3f0435b7a1823b717e7b4b6c16bfb10b2d5b5e Mon Sep 17 00:00:00 2001 From: Ryan Maxwell Date: Sun, 18 Nov 2012 16:54:57 +1300 Subject: [PATCH 077/148] NSLogger 1.1 Requires CoreServices Framework on OS X platform --- NSLogger/1.1/NSLogger.podspec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/NSLogger/1.1/NSLogger.podspec b/NSLogger/1.1/NSLogger.podspec index d71b15e4..a3978a3e 100644 --- a/NSLogger/1.1/NSLogger.podspec +++ b/NSLogger/1.1/NSLogger.podspec @@ -13,5 +13,6 @@ Pod::Spec.new do |s| 'filtering, image and binary logging, traces buffering, timing information, etc.' s.source_files = 'Client Logger/iOS/*.{h,m}' - s.frameworks = 'CFNetwork', 'SystemConfiguration' + s.ios.frameworks = 'CFNetwork', 'SystemConfiguration' + s.osx.frameworks = 'CFNetwork', 'SystemConfiguration', 'CoreServices' end From 2c968bc6f3ccc60cd098323b4b7b0e3f3d436edd Mon Sep 17 00:00:00 2001 From: Jeong YunWon Date: Sun, 18 Nov 2012 21:32:34 +0900 Subject: [PATCH 078/148] [Update] FoundationExtension --- .../{0.6.2 => 0.7}/FoundationExtension.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename FoundationExtension/{0.6.2 => 0.7}/FoundationExtension.podspec (96%) diff --git a/FoundationExtension/0.6.2/FoundationExtension.podspec b/FoundationExtension/0.7/FoundationExtension.podspec similarity index 96% rename from FoundationExtension/0.6.2/FoundationExtension.podspec rename to FoundationExtension/0.7/FoundationExtension.podspec index b3ed1dd0..a0d618d5 100644 --- a/FoundationExtension/0.6.2/FoundationExtension.podspec +++ b/FoundationExtension/0.7/FoundationExtension.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "FoundationExtension" - s.version = "0.6.2" + s.version = "0.7" s.summary = "Foundation/UIKit extension kit. It is category based and looks familiar to Foundation/UIKit. It includes many common snippets as shortcut." s.description = <<-DESC This library includes small Foundation/Cocoa/UIKit extensions. This library does not includes high-level data structure, algorithm or frameworks, but collection of code snippets. @@ -14,7 +14,7 @@ Pod::Spec.new do |s| s.homepage = "https://github.com/youknowone/FoundationExtension" s.license = "2-clause BSD" s.author = { "Jeong YunWon" => "jeong@youknowone.org" } - s.source = { :git => "https://github.com/youknowone/FoundationExtension.git", :tag => "pod-0.6.2" } + s.source = { :git => "https://github.com/youknowone/FoundationExtension.git", :tag => "pod-0.7" } s.dependency "cdebug", "~> 0.1" s.subspec "FoundationExtension" do |ss| From 60785d209bad43968f484d4d3d027e0c057baa99 Mon Sep 17 00:00:00 2001 From: Stefan Huber Date: Sun, 18 Nov 2012 14:42:11 +0100 Subject: [PATCH 079/148] Update ZBarSDK 1.3.1 --- ZBarSDK/1.3.1/ZBarSDK.podspec | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 ZBarSDK/1.3.1/ZBarSDK.podspec diff --git a/ZBarSDK/1.3.1/ZBarSDK.podspec b/ZBarSDK/1.3.1/ZBarSDK.podspec new file mode 100644 index 00000000..a9c49f81 --- /dev/null +++ b/ZBarSDK/1.3.1/ZBarSDK.podspec @@ -0,0 +1,34 @@ +Pod::Spec.new do |s| + s.name = 'ZBarSDK' + s.version = '1.3.1' + s.platform = :ios + s.license = 'GNU LGPL 2.1' + s.summary = 'QR and barcode scan library.' + s.homepage = 'http://zbar.sourceforge.net/' + s.author = { 'Jeff Brown' => 'spadix@users.sourceforge.net' } + s.source = { :hg => 'http://zbar.hg.sourceforge.net:8000/hgroot/zbar/zbar', :tag => 'iPhoneSDK-1.3.1' } + + s.description = 'ZBar is an open source software suite for reading bar codes from various sources, such as video streams, ' \ + 'image files and raw intensity sensors. It supports many popular symbologies (types of bar codes) including ' \ + 'EAN-13/UPC-A, UPC-E, EAN-8, Code 128, Code 39, Interleaved 2 of 5 and QR Code.' + + s.resources = 'iphone/res/{zbar-*.png,zbar-help.html}' + + s.source_files = 'include/zbar.h', 'zbar/**/*.h', 'iphone/*.h', 'iphone/include/**/*.h', + 'zbar/{config,decoder,error,image,img_scanner,refcnt,scanner,symbol}.c', + 'zbar/decoder/{codabar,code39,code93,code128,databar,ean,i25,qr_finder}.c', + 'zbar/qrcode/*.c', + 'iphone/*.m' + + s.header_mappings_dir = 'zbar' + + s.frameworks = 'AVFoundation', 'CoreGraphics', 'CoreMedia', 'CoreVideo', 'QuartzCore' + + s.library = 'iconv' + + s.xcconfig = { "EXCLUDED_SOURCE_FILE_NAMES[sdk=iphoneos*][arch=*]" => 'ZBarReaderViewImpl_Simulator.m', + "EXCLUDED_SOURCE_FILE_NAMES[sdk=iphonesimulator*][arch=*]" => 'ZBarReaderViewImpl_Capture.m ZBarCaptureReader.m', + "GCC_PREPROCESSOR_DEFINITIONS" => '$(inherited) NDEBUG=1' } + + s.prefix_header_file = 'iphone/include/prefix.pch' +end From ae9f37f7a35e330080bce071e6a27bf1ac38e4f1 Mon Sep 17 00:00:00 2001 From: Kevin Renskers Date: Mon, 19 Nov 2012 09:45:19 +0000 Subject: [PATCH 080/148] [Update] LastFm (0.11.0) --- LastFm/0.11.0/LastFm.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 LastFm/0.11.0/LastFm.podspec diff --git a/LastFm/0.11.0/LastFm.podspec b/LastFm/0.11.0/LastFm.podspec new file mode 100644 index 00000000..ba03d089 --- /dev/null +++ b/LastFm/0.11.0/LastFm.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = "LastFm" + s.version = "0.11.0" + s.summary = "Block based Last.fm SDK for iOS and Mac OS X." + s.homepage = "https://github.com/gangverk/LastFm" + s.license = 'MIT' + s.author = { "Kevin Renskers" => "info@mixedcase.nl" } + s.source = { :git => "https://github.com/gangverk/LastFm.git", :tag => s.version.to_s } + s.ios.deployment_target = '4.0' + s.osx.deployment_target = '10.6' + s.source_files = 'LastFm/*.{h,m}' + s.requires_arc = true + s.dependency 'KissXML', '~> 5.0' +end From e2d194e315891ccb90a6bf3d92b12bc374886297 Mon Sep 17 00:00:00 2001 From: Kevin Renskers Date: Mon, 19 Nov 2012 11:03:38 +0000 Subject: [PATCH 081/148] [Update] LastFm (0.12.0) --- LastFm/0.12.0/LastFm.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 LastFm/0.12.0/LastFm.podspec diff --git a/LastFm/0.12.0/LastFm.podspec b/LastFm/0.12.0/LastFm.podspec new file mode 100644 index 00000000..cb6c1540 --- /dev/null +++ b/LastFm/0.12.0/LastFm.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = "LastFm" + s.version = "0.12.0" + s.summary = "Block based Last.fm SDK for iOS and Mac OS X." + s.homepage = "https://github.com/gangverk/LastFm" + s.license = 'MIT' + s.author = { "Kevin Renskers" => "info@mixedcase.nl" } + s.source = { :git => "https://github.com/gangverk/LastFm.git", :tag => s.version.to_s } + s.ios.deployment_target = '4.0' + s.osx.deployment_target = '10.6' + s.source_files = 'LastFm/*.{h,m}' + s.requires_arc = true + s.dependency 'KissXML', '~> 5.0' +end From caa5b3a73fcf2d8e1e00f0fea9bbf6de4e7e2bb7 Mon Sep 17 00:00:00 2001 From: Kevin Renskers Date: Mon, 19 Nov 2012 14:14:43 +0000 Subject: [PATCH 082/148] [Update] GVMusicPlayerController (0.2.0) --- .../0.2.0/GVMusicPlayerController.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 GVMusicPlayerController/0.2.0/GVMusicPlayerController.podspec diff --git a/GVMusicPlayerController/0.2.0/GVMusicPlayerController.podspec b/GVMusicPlayerController/0.2.0/GVMusicPlayerController.podspec new file mode 100644 index 00000000..3983b5f2 --- /dev/null +++ b/GVMusicPlayerController/0.2.0/GVMusicPlayerController.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = "GVMusicPlayerController" + s.version = "0.2.0" + s.summary = "The power of AVPlayer with the simplicity of MPMusicPlayerController." + s.homepage = "https://github.com/gangverk/GVMusicPlayerController" + s.license = 'MIT' + s.author = { "Kevin Renskers" => "info@mixedcase.nl" } + s.source = { :git => "https://github.com/gangverk/GVMusicPlayerController.git", :tag => s.version.to_s } + s.platform = :ios, '4.0' + s.source_files = 'GVMusicPlayerController/*.{h,m}' + s.requires_arc = true + s.frameworks = 'CoreMedia', 'AudioToolbox', 'AVFoundation', 'MediaPlayer' +end From 8d8bb080d7552338fcd321170f1a0771e749664d Mon Sep 17 00:00:00 2001 From: Simon Booth Date: Mon, 19 Nov 2012 16:14:51 +0000 Subject: [PATCH 083/148] [Update] WorkflowSchema (0.2.0) --- WorkflowSchema/0.2.0/WorkflowSchema.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 WorkflowSchema/0.2.0/WorkflowSchema.podspec diff --git a/WorkflowSchema/0.2.0/WorkflowSchema.podspec b/WorkflowSchema/0.2.0/WorkflowSchema.podspec new file mode 100644 index 00000000..4c198836 --- /dev/null +++ b/WorkflowSchema/0.2.0/WorkflowSchema.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = "WorkflowSchema" + s.version = "0.2.0" + s.summary = "An iOS framework which allows you to define app workflows in XML." + s.homepage = "https://github.com/CRedit360/WorkflowSchema" + s.license = 'MIT' + s.author = { "Simon Booth" => "simon.booth@credit360.com" } + s.source = { :git => "https://github.com/CRedit360/WorkflowSchema.git", :tag => "0.2.0" } + s.platform = :ios, '5.0' + s.source_files = 'WorkflowSchema/Code' + s.resources = 'WorkflowSchema/*.lproj/WorkflowSchema.strings' + s.requires_arc = true +end From 64653b41a3c3b26bdd6f573ae495e0a08d609267 Mon Sep 17 00:00:00 2001 From: Daniel Kuhnke Date: Mon, 19 Nov 2012 17:49:48 +0100 Subject: [PATCH 084/148] added CoreTextLabel.podspec 1.0 --- CoreTextLabel/1.0/CoreTextLabel.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 CoreTextLabel/1.0/CoreTextLabel.podspec diff --git a/CoreTextLabel/1.0/CoreTextLabel.podspec b/CoreTextLabel/1.0/CoreTextLabel.podspec new file mode 100644 index 00000000..96689e9b --- /dev/null +++ b/CoreTextLabel/1.0/CoreTextLabel.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = 'CoreTextLabel' + s.version = '1.0' + s.summary = "Simple UILabel replacement to display NSAttributedString in iOS applications." + s.homepage = "https://github.com/dkuhnke/CoreTextLabel" + s.author = { 'Daniel Kuhnke' => 'd.kuhnke@appfarms.com' } + s.source = { :git => 'https://github.com/dkuhnke/CoreTextLabel.git', :tag => '1.0' } + s.platform = :ios + s.requires_arc = true + s.source_files = '*.{h,m}' + s.license = 'MIT' + s.ios.frameworks = 'QuartzCore', 'CoreText' + s.dependency 'RegexKitLite', '4.0' +end \ No newline at end of file From c7d0fe5e3f1d182382d738f8fde2d992515d139a Mon Sep 17 00:00:00 2001 From: Hugo Doria Date: Mon, 19 Nov 2012 14:47:28 -0300 Subject: [PATCH 085/148] add MKStoreKit 5.0 --- MKStoreKit/5.0/MKStoreKit.podspec | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 MKStoreKit/5.0/MKStoreKit.podspec diff --git a/MKStoreKit/5.0/MKStoreKit.podspec b/MKStoreKit/5.0/MKStoreKit.podspec new file mode 100644 index 00000000..9949627f --- /dev/null +++ b/MKStoreKit/5.0/MKStoreKit.podspec @@ -0,0 +1,19 @@ +Pod::Spec.new do |s| + s.name = 'MKStoreKit' + s.version = '5.0' + s.license = 'zLib' + s.summary = 'In-App Purchases StoreKit for iOS devices.' + s.homepage = 'https://github.com/MugunthKumar/MKStoreKit' + s.author = { 'Mugunth' => 'http://mugunthkumar.com/' } + s.source = { :git => 'https://github.com/MugunthKumar/MKStoreKit.git', :commit => '55963bd8ce5d52c2634d95830858d2e58b0608a0' } + s.platform = :ios + s.source_files = '*.{h,m}' + s.requires_arc = true + + + + s.frameworks = 'StoreKit', 'Security' + s.dependency 'JSONKit', '~> 1.4' + s.dependency 'NSData+Base64', '~> 1.0' + s.dependency 'SFHFKeychainUtils', '0.0.1' +end From 9adbc3d6b17aedd7dbba14fd381bdb1fb42458cb Mon Sep 17 00:00:00 2001 From: Hugo Doria Date: Mon, 19 Nov 2012 15:35:08 -0300 Subject: [PATCH 086/148] renaming mkstorekit 5.0 to 0.0.1 (using commit instead of tag) --- MKStoreKit/{5.0 => 0.0.1}/MKStoreKit.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename MKStoreKit/{5.0 => 0.0.1}/MKStoreKit.podspec (96%) diff --git a/MKStoreKit/5.0/MKStoreKit.podspec b/MKStoreKit/0.0.1/MKStoreKit.podspec similarity index 96% rename from MKStoreKit/5.0/MKStoreKit.podspec rename to MKStoreKit/0.0.1/MKStoreKit.podspec index 9949627f..33657d29 100644 --- a/MKStoreKit/5.0/MKStoreKit.podspec +++ b/MKStoreKit/0.0.1/MKStoreKit.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'MKStoreKit' - s.version = '5.0' + s.version = '0.0.1' s.license = 'zLib' s.summary = 'In-App Purchases StoreKit for iOS devices.' s.homepage = 'https://github.com/MugunthKumar/MKStoreKit' From 406202b856b80d8263bb4eb39fb71c8db92c430e Mon Sep 17 00:00:00 2001 From: Diego Chohfi Date: Mon, 19 Nov 2012 16:40:19 -0200 Subject: [PATCH 087/148] Adding version 1.3 of DCKeyValueObjectMapping --- .../1.3/DCKeyValueObjectMapping.podspec | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 DCKeyValueObjectMapping/1.3/DCKeyValueObjectMapping.podspec diff --git a/DCKeyValueObjectMapping/1.3/DCKeyValueObjectMapping.podspec b/DCKeyValueObjectMapping/1.3/DCKeyValueObjectMapping.podspec new file mode 100644 index 00000000..5bdcbe01 --- /dev/null +++ b/DCKeyValueObjectMapping/1.3/DCKeyValueObjectMapping.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = 'DCKeyValueObjectMapping' + s.version = '1.3' + s.ios.deployment_target = '5.0' + s.license = 'MIT' + s.summary = 'Automatic KeyValue Object Mapping for Objective-C, parse JSON/Plist/XML automatically, support Core Data, convetion over configuration.' + s.homepage = 'https://github.com/dchohfi/KeyValueObjectMapping' + s.author = { 'Diego Chohfi' => 'dchohfi@gmail.com' } + s.source = { :git => 'https://github.com/dchohfi/KeyValueObjectMapping.git', :tag => '1.3' } + s.source_files = 'KeyValueObjectMapping' + s.requires_arc = true +end From fc212f6c20b1545df1fd786bb9705689371ae819 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gwendal=20Roue=CC=81?= Date: Mon, 19 Nov 2012 21:08:02 +0100 Subject: [PATCH 088/148] [Update] GRMustache 6.1.1 --- GRMustache/6.1.1/GRMustache.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 GRMustache/6.1.1/GRMustache.podspec diff --git a/GRMustache/6.1.1/GRMustache.podspec b/GRMustache/6.1.1/GRMustache.podspec new file mode 100644 index 00000000..4d0f2ca0 --- /dev/null +++ b/GRMustache/6.1.1/GRMustache.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = 'GRMustache' + s.version = '6.1.1' + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.summary = 'Flexible and production-ready Mustache templates for MacOS Cocoa and iOS.' + s.homepage = 'https://github.com/groue/GRMustache' + s.author = { 'Gwendal Roué' => 'gr@pierlis.com' } + s.source = { :git => 'https://github.com/groue/GRMustache.git', :tag => 'v6.1.1' } + s.source_files = 'src/classes' + s.public_header_files = FileList['src/classes/*.h'].exclude(/_private/) + s.framework = 'Foundation' + s.dependency 'JRSwizzle', '~> 1.0' +end From a6264f39edeba671810f8fce91c970a784844e10 Mon Sep 17 00:00:00 2001 From: Daniel Kuhnke Date: Mon, 19 Nov 2012 21:43:40 +0100 Subject: [PATCH 089/148] updated pod spec summary --- CoreTextLabel/1.0/CoreTextLabel.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CoreTextLabel/1.0/CoreTextLabel.podspec b/CoreTextLabel/1.0/CoreTextLabel.podspec index 96689e9b..d4e0bfdd 100644 --- a/CoreTextLabel/1.0/CoreTextLabel.podspec +++ b/CoreTextLabel/1.0/CoreTextLabel.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = 'CoreTextLabel' s.version = '1.0' - s.summary = "Simple UILabel replacement to display NSAttributedString in iOS applications." + s.summary = "Simple UILabel replacement to display NSAttributedString by HTML in iOS applications (>= 3.2)." s.homepage = "https://github.com/dkuhnke/CoreTextLabel" s.author = { 'Daniel Kuhnke' => 'd.kuhnke@appfarms.com' } s.source = { :git => 'https://github.com/dkuhnke/CoreTextLabel.git', :tag => '1.0' } From 076a0da621edeef6a7f59c194ce82e8bf64f6bef Mon Sep 17 00:00:00 2001 From: Alexandre Gerlic Date: Mon, 19 Nov 2012 22:13:30 +0100 Subject: [PATCH 090/148] [Update] PonyDebugger to latest commit --- PonyDebugger/0.0.1/PonyDebugger.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PonyDebugger/0.0.1/PonyDebugger.podspec b/PonyDebugger/0.0.1/PonyDebugger.podspec index 9b2e375d..f702a8e8 100644 --- a/PonyDebugger/0.0.1/PonyDebugger.podspec +++ b/PonyDebugger/0.0.1/PonyDebugger.podspec @@ -9,7 +9,7 @@ Pod::Spec.new do |s| s.homepage = "https://github.com/square/PonyDebugger" s.license = 'Apache Licence, Version 2.0' s.author = 'Square' - s.source = { :git => "https://github.com/square/PonyDebugger.git", :commit => "0bd4bf9fbefa0777358cbb7a015b91ecbee11597" } + s.source = { :git => "https://github.com/square/PonyDebugger.git", :commit => "31d05eb56b2d1b04e815579ba15b0b7c4104596e" } s.platform = :ios, '5.0' s.source_files = 'ObjC/{DerivedSources,PonyDebugger}/**/*.{h,m}' s.requires_arc = true From 1a2c95e4bf239174e9227b285eb903cf8e6a43a2 Mon Sep 17 00:00:00 2001 From: Fabio Pelosin Date: Mon, 19 Nov 2012 23:45:54 +0100 Subject: [PATCH 091/148] General fixes. --- ATMHud/0.0.1/ATMHud.podspec | 21 ++++++++++--------- Appirater/0.0.1/Appirater.podspec | 1 + Appirater/0.0.2/Appirater.podspec | 1 + .../1.0.0/CocoaSoundCloudAPI.podspec | 1 + TestFlightSDK/0.8.3/TestFlightSDK.podspec | 1 - TestFlightSDK/1.0/TestFlightSDK.podspec | 1 - TestFlightSDK/1.1.beta1/TestFlightSDK.podspec | 1 - TestFlightSDK/1.1.beta2/TestFlightSDK.podspec | 3 +-- TestFlightSDK/1.1.beta3/TestFlightSDK.podspec | 1 - TestFlightSDK/1.1/TestFlightSDK.podspec | 1 - TestFlightSDK/1.2.beta1/TestFlightSDK.podspec | 1 - TestFlightSDK/1.2.beta2/TestFlightSDK.podspec | 1 - 12 files changed, 15 insertions(+), 19 deletions(-) diff --git a/ATMHud/0.0.1/ATMHud.podspec b/ATMHud/0.0.1/ATMHud.podspec index 3ed79a7c..f235601f 100644 --- a/ATMHud/0.0.1/ATMHud.podspec +++ b/ATMHud/0.0.1/ATMHud.podspec @@ -1,12 +1,13 @@ Pod::Spec.new do |s| - s.name = 'ATMHud' - s.version = '0.0.1' - s.platform = :ios - s.summary = 'Library for the creation of HUDs in iPhone applications.' - s.homepage = 'https://github.com/atomton/ATMHud' - s.author = { 'Marcel Müller' => 'pool@atomton.net' } - s.source = { :git => 'https://github.com/atomton/ATMHud.git', :commit => 'fc79fed7268362c744de5470169db0a381866ad7' } - s.source_files = 'ATM*.{h,m}' - s.resources = '11-x.png', '19-check.png', 'pop.wav' - s.frameworks = 'QuartzCore', 'AudioToolbox' + s.name = 'ATMHud' + s.version = '0.0.1' + s.platform = :ios + s.summary = 'Library for the creation of HUDs in iPhone applications.' + s.homepage = 'https://github.com/atomton/ATMHud' + s.author = { 'Marcel Müller' => 'pool@atomton.net' } + s.source = { :git => 'https://github.com/atomton/ATMHud.git', :commit => 'fc79fed7268362c744de5470169db0a381866ad7' } + s.source_files = 'ATM*.{h,m}' + s.resources = '11-x.png', '19-check.png', 'pop.wav' + s.frameworks = 'QuartzCore', 'AudioToolbox' + s.license = 'BSD' end diff --git a/Appirater/0.0.1/Appirater.podspec b/Appirater/0.0.1/Appirater.podspec index 20605cac..1f87f769 100644 --- a/Appirater/0.0.1/Appirater.podspec +++ b/Appirater/0.0.1/Appirater.podspec @@ -8,4 +8,5 @@ Pod::Spec.new do |s| s.source = { :git => 'https://github.com/arashpayan/appirater.git', :commit => '0f3776a47b17bd4f6cbee0ad02c9450869d26c42' } s.source_files = '*.{h,m}' s.frameworks = 'CFNetwork', 'SystemConfiguration' + s.license = { :type => 'MIT', :text => 'Copyright 2012. Arash Payan. This library is distributed under the terms of the MIT/X11.' } end diff --git a/Appirater/0.0.2/Appirater.podspec b/Appirater/0.0.2/Appirater.podspec index 013b507c..00668553 100644 --- a/Appirater/0.0.2/Appirater.podspec +++ b/Appirater/0.0.2/Appirater.podspec @@ -9,4 +9,5 @@ Pod::Spec.new do |s| s.source_files = '*.{h,m}' s.frameworks = 'CFNetwork', 'SystemConfiguration' s.resource = 'Appirater.bundle' + s.license = { :type => 'MIT', :text => 'Copyright 2012. Arash Payan. This library is distributed under the terms of the MIT/X11.' } end diff --git a/CocoaSoundCloudAPI/1.0.0/CocoaSoundCloudAPI.podspec b/CocoaSoundCloudAPI/1.0.0/CocoaSoundCloudAPI.podspec index ede6ada1..0b488b5f 100644 --- a/CocoaSoundCloudAPI/1.0.0/CocoaSoundCloudAPI.podspec +++ b/CocoaSoundCloudAPI/1.0.0/CocoaSoundCloudAPI.podspec @@ -15,4 +15,5 @@ Pod::Spec.new do |s| s.framework = 'Security' s.dependency 'NXOAuth2Client', '~> 1.0' + s.license = 'Apache License, Version 2.0' end diff --git a/TestFlightSDK/0.8.3/TestFlightSDK.podspec b/TestFlightSDK/0.8.3/TestFlightSDK.podspec index 5931d22b..e5fc2f7c 100644 --- a/TestFlightSDK/0.8.3/TestFlightSDK.podspec +++ b/TestFlightSDK/0.8.3/TestFlightSDK.podspec @@ -6,7 +6,6 @@ Pod::Spec.new do |s| s.homepage = 'http://www.testflightapp.com' s.author = { 'TestFlight' => 'support@testflightapp.com' } s.source = { :http => 'https://d3fqheiq7nlyrx.cloudfront.net/sdk-downloads/TestFlightSDK0.8.3.zip' } - s.description = 'TestFlightSDK for over-the-air beta testing and crash reporting.' s.platform = :ios s.source_files = 'TestFlight.h' s.preserve_paths = 'libTestFlight.a' diff --git a/TestFlightSDK/1.0/TestFlightSDK.podspec b/TestFlightSDK/1.0/TestFlightSDK.podspec index 4c4e035f..d8b803ae 100644 --- a/TestFlightSDK/1.0/TestFlightSDK.podspec +++ b/TestFlightSDK/1.0/TestFlightSDK.podspec @@ -6,7 +6,6 @@ Pod::Spec.new do |s| s.homepage = 'http://www.testflightapp.com' s.author = { 'TestFlight' => 'support@testflightapp.com' } s.source = { :http => 'https://d3fqheiq7nlyrx.cloudfront.net/sdk-downloads/TestFlightSDK1.0.zip' } - s.description = 'TestFlightSDK for over-the-air beta testing and crash reporting.' s.platform = :ios s.source_files = 'TestFlight.h' s.preserve_paths = 'libTestFlight.a' diff --git a/TestFlightSDK/1.1.beta1/TestFlightSDK.podspec b/TestFlightSDK/1.1.beta1/TestFlightSDK.podspec index b42b60e4..ffe8185c 100644 --- a/TestFlightSDK/1.1.beta1/TestFlightSDK.podspec +++ b/TestFlightSDK/1.1.beta1/TestFlightSDK.podspec @@ -6,7 +6,6 @@ Pod::Spec.new do |s| s.homepage = 'http://www.testflightapp.com' s.author = { 'TestFlight' => 'support@testflightapp.com' } s.source = { :http => 'https://d3fqheiq7nlyrx.cloudfront.net/sdk-downloads/TestFlightSDK1.1beta1.zip' } - s.description = 'TestFlightSDK for over-the-air beta testing and crash reporting.' s.platform = :ios s.source_files = 'TestFlight.h' s.preserve_paths = 'libTestFlight.a' diff --git a/TestFlightSDK/1.1.beta2/TestFlightSDK.podspec b/TestFlightSDK/1.1.beta2/TestFlightSDK.podspec index d614c28b..effdf1ec 100644 --- a/TestFlightSDK/1.1.beta2/TestFlightSDK.podspec +++ b/TestFlightSDK/1.1.beta2/TestFlightSDK.podspec @@ -6,11 +6,10 @@ Pod::Spec.new do |s| s.homepage = 'http://www.testflightapp.com' s.author = { 'TestFlight' => 'support@testflightapp.com' } s.source = { :http => 'https://d3fqheiq7nlyrx.cloudfront.net/sdk-downloads/TestFlightSDK1.1beta2.zip' } - s.description = 'TestFlightSDK for over-the-air beta testing and crash reporting.' s.platform = :ios s.source_files = 'TestFlight.h' s.preserve_paths = 'libTestFlight.a' s.library = 'TestFlight', 'z' s.framework = 'UIKit' s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '"$(PODS_ROOT)/TestFlightSDK"' } -end \ No newline at end of file +end diff --git a/TestFlightSDK/1.1.beta3/TestFlightSDK.podspec b/TestFlightSDK/1.1.beta3/TestFlightSDK.podspec index a1c9bea6..bab3555d 100644 --- a/TestFlightSDK/1.1.beta3/TestFlightSDK.podspec +++ b/TestFlightSDK/1.1.beta3/TestFlightSDK.podspec @@ -15,7 +15,6 @@ Pod::Spec.new do |s| s.homepage = 'http://www.testflightapp.com' s.author = { 'TestFlight' => 'support@testflightapp.com' } s.source = { :http => 'https://d3fqheiq7nlyrx.cloudfront.net/sdk-downloads/TestFlightSDK1.1beta3.zip' } - s.description = 'TestFlightSDK for over-the-air beta testing and crash reporting.' s.platform = :ios s.source_files = 'TestFlight.h' s.preserve_paths = 'libTestFlight.a' diff --git a/TestFlightSDK/1.1/TestFlightSDK.podspec b/TestFlightSDK/1.1/TestFlightSDK.podspec index cdc67ef2..af2fba01 100644 --- a/TestFlightSDK/1.1/TestFlightSDK.podspec +++ b/TestFlightSDK/1.1/TestFlightSDK.podspec @@ -15,7 +15,6 @@ Pod::Spec.new do |s| s.homepage = 'http://www.testflightapp.com' s.author = { 'TestFlight' => 'support@testflightapp.com' } s.source = { :http => 'https://d3fqheiq7nlyrx.cloudfront.net/sdk-downloads/TestFlightSDK1.1.zip' } - s.description = 'TestFlightSDK for over-the-air beta testing and crash reporting.' s.platform = :ios s.source_files = 'TestFlight.h' s.preserve_paths = 'libTestFlight.a' diff --git a/TestFlightSDK/1.2.beta1/TestFlightSDK.podspec b/TestFlightSDK/1.2.beta1/TestFlightSDK.podspec index 0c25bd2e..3c12f933 100644 --- a/TestFlightSDK/1.2.beta1/TestFlightSDK.podspec +++ b/TestFlightSDK/1.2.beta1/TestFlightSDK.podspec @@ -15,7 +15,6 @@ Pod::Spec.new do |s| s.homepage = 'http://www.testflightapp.com' s.author = { 'TestFlight' => 'support@testflightapp.com' } s.source = { :http => 'https://d3fqheiq7nlyrx.cloudfront.net/sdk-downloads/TestFlightSDK1.2beta1.zip' } - s.description = 'TestFlightSDK for over-the-air beta testing and crash reporting.' s.platform = :ios s.source_files = 'TestFlight.h' s.preserve_paths = 'libTestFlight.a' diff --git a/TestFlightSDK/1.2.beta2/TestFlightSDK.podspec b/TestFlightSDK/1.2.beta2/TestFlightSDK.podspec index 162580aa..f7d0e5ca 100644 --- a/TestFlightSDK/1.2.beta2/TestFlightSDK.podspec +++ b/TestFlightSDK/1.2.beta2/TestFlightSDK.podspec @@ -15,7 +15,6 @@ Pod::Spec.new do |s| s.homepage = 'http://www.testflightapp.com' s.author = { 'TestFlight' => 'support@testflightapp.com' } s.source = { :http => 'https://d3fqheiq7nlyrx.cloudfront.net/sdk-downloads/TestFlightSDK1.2beta2.zip' } - s.description = 'TestFlightSDK for over-the-air beta testing and crash reporting.' s.platform = :ios s.source_files = 'TestFlight.h' s.preserve_paths = 'libTestFlight.a' From f82276614cde90cd06570ed1d0d9d10b7344c7ee Mon Sep 17 00:00:00 2001 From: Anders Carlsson Date: Tue, 20 Nov 2012 09:52:11 +0100 Subject: [PATCH 092/148] Add NSURLConnectionVCR version 0.0.1. --- .../0.0.1/NSURLConnectionVCR.podspec | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 NSURLConnectionVCR/0.0.1/NSURLConnectionVCR.podspec diff --git a/NSURLConnectionVCR/0.0.1/NSURLConnectionVCR.podspec b/NSURLConnectionVCR/0.0.1/NSURLConnectionVCR.podspec new file mode 100644 index 00000000..89b78eea --- /dev/null +++ b/NSURLConnectionVCR/0.0.1/NSURLConnectionVCR.podspec @@ -0,0 +1,24 @@ +Pod::Spec.new do |s| + s.name = "NSURLConnectionVCR" + s.version = "0.0.1" + s.summary = "Record and replay NSURLConnection requests/responses in tests." + s.homepage = "https://bitbucket.org/martijnthe/nsurlconnectionvcr" + + s.license = { + :type => 'BSD', + :text => <<-LICENSE + Copyright (c) 2012, Martijn The All rights reserved. + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + LICENSE + } + + s.authors = { "Martijn Thé" => "post@martijnthe.nl" } + s.source = { :git => "https://bitbucket.org/martijnthe/nsurlconnectionvcr.git", :commit => "ad597f7" } + + s.ios.deployment_target = '5.0' + s.osx.deployment_target = '10.7' + + s.source_files = 'NSURLConnectionVCR' + s.requires_arc = true +end From 8edc3c33fcbc21203cf366589fa2a456b214584f Mon Sep 17 00:00:00 2001 From: stcui Date: Tue, 20 Nov 2012 17:40:02 +0800 Subject: [PATCH 093/148] add 0.1.1 --- BeeFramework/0.1.1/BeeFramework.podspec | 27 +++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 BeeFramework/0.1.1/BeeFramework.podspec diff --git a/BeeFramework/0.1.1/BeeFramework.podspec b/BeeFramework/0.1.1/BeeFramework.podspec new file mode 100644 index 00000000..c6ed99e7 --- /dev/null +++ b/BeeFramework/0.1.1/BeeFramework.podspec @@ -0,0 +1,27 @@ +Pod::Spec.new do |s| + s.name = "BeeFramework" + s.version = "0.1.1" + s.summary = "Bee Framework is an iOS MVC framework to help you develop your app rapidly." + s.description = <<-DESC + Bee Framework is a MVC Framework to develop iOS application. + It has pretty clear hieracy and signal based mechanism, also with cache and asynchonized networking methods in it. + DESC + s.homepage = "http://bbs.whatsbug.com/BeeFramework" + s.license = 'MIT' + + + s.author = { "gavinkwoe" => "gavinkwoe@gmail.com"} + s.source = { :git => "https://github.com/stcui/BeeFramework.git", :tag => "0.1" } + s.resource = "BeeDebugger/*.png" + s.platform = :ios + + s.source_files = 'BeeDebugger/**/*.{h,m}', 'BeeFramework/{Foundation,MVC}/**/*.{h,m,mm}', 'BeeFramework/Bee.h' + s.frameworks = 'CoreMedia', 'CoreVideo', 'AVFoundation', 'Security', 'SystemConfiguration', 'QuartzCore', 'MobileCoreServices', 'CFNetwork' + s.library = 'z' + s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libz' } + + s.dependency 'JSONKit' + s.dependency 'ASIHTTPRequest' + s.dependency 'Reachability' + s.dependency 'SFHFKeychainUtils' +end From 84ea24c2f3a5d463da1e7945c60fd3f33f73dee2 Mon Sep 17 00:00:00 2001 From: Francis Chong Date: Tue, 20 Nov 2012 19:13:28 +0800 Subject: [PATCH 094/148] SKBounceAnimation should requires arc --- SKBounceAnimation/1.0/SKBounceAnimation.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SKBounceAnimation/1.0/SKBounceAnimation.podspec b/SKBounceAnimation/1.0/SKBounceAnimation.podspec index ea9a3bc6..01626e65 100644 --- a/SKBounceAnimation/1.0/SKBounceAnimation.podspec +++ b/SKBounceAnimation/1.0/SKBounceAnimation.podspec @@ -12,6 +12,6 @@ Pod::Spec.new do |s| s.platform = :ios s.source_files = 'SKBounceAnimation/SKBounceAnimation.{h,m}' - + s.requires_arc = true s.frameworks = 'CoreGraphics', 'QuartzCore' end From 60afae7d500c40f3fb824e293a23d00f10b707bd Mon Sep 17 00:00:00 2001 From: Kauserali Hafizji Date: Tue, 20 Nov 2012 17:33:28 +0530 Subject: [PATCH 095/148] [Add] JSNotifier (0.0.1) --- JSNotifier/0.0.1/JSNotifier.podspec | 37 +++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 JSNotifier/0.0.1/JSNotifier.podspec diff --git a/JSNotifier/0.0.1/JSNotifier.podspec b/JSNotifier/0.0.1/JSNotifier.podspec new file mode 100644 index 00000000..8da33c5b --- /dev/null +++ b/JSNotifier/0.0.1/JSNotifier.podspec @@ -0,0 +1,37 @@ +Pod::Spec.new do |s| + s.name = "JSNotifier" + s.version = "0.0.1" + s.summary = "A simple class for iOS that provides users with notifications in a simple way." + s.homepage = "https://github.com/jonahsiegle/JSNotifier.git" + + s.license = { + :type => 'Apache License, Version 2.0', + :text => <<-LICENSE + Copyright 2012 Jonah Siegle + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +LICENSE + } + + s.author = 'Jonah Siegle' + + s.source = { :git => "https://github.com/jonahsiegle/JSNotifier.git", :commit => "354f9eadf473468dbf04666130506a52beafb2a3"} + + s.platform = :ios, '5.0' + + s.source_files = 'JSNotifier\ Sample/JSNotifier.h', 'JSNotifier\ Sample/JSNotifier.m' + + s.resources = "*.png" + + s.requires_arc = true +end From ff60fdec19a342ba1ab88413baeb373f70d7fc24 Mon Sep 17 00:00:00 2001 From: Daniel Kuhnke Date: Tue, 20 Nov 2012 14:53:09 +0100 Subject: [PATCH 096/148] added CoreTextLabel.podspec 1.1 --- CoreTextLabel/1.1/CoreTextLabel.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 CoreTextLabel/1.1/CoreTextLabel.podspec diff --git a/CoreTextLabel/1.1/CoreTextLabel.podspec b/CoreTextLabel/1.1/CoreTextLabel.podspec new file mode 100644 index 00000000..90539cc0 --- /dev/null +++ b/CoreTextLabel/1.1/CoreTextLabel.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = 'CoreTextLabel' + s.version = '1.1' + s.summary = "Simple UILabel replacement to display NSAttributedString by HTML with custom font and color in iOS applications." + s.homepage = "https://github.com/dkuhnke/CoreTextLabel" + s.author = { 'Daniel Kuhnke' => 'd.kuhnke@appfarms.com' } + s.source = { :git => 'https://github.com/dkuhnke/CoreTextLabel.git', :tag => '1.1' } + s.platform = :ios + s.requires_arc = true + s.source_files = '*.{h,m}' + s.license = 'MIT' + s.ios.frameworks = 'QuartzCore', 'CoreText' + s.dependency 'RegexKitLite', '4.0' +end \ No newline at end of file From 86f430832bb6f1bb12e0deb8c7fcb919de23ab9d Mon Sep 17 00:00:00 2001 From: Alex Billingsley Date: Tue, 20 Nov 2012 13:20:31 -0500 Subject: [PATCH 097/148] [Update] SignalR-ObjC (1.0.alpha1) --- SignalR-ObjC/1.0.alpha1/SignalR-ObjC.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 SignalR-ObjC/1.0.alpha1/SignalR-ObjC.podspec diff --git a/SignalR-ObjC/1.0.alpha1/SignalR-ObjC.podspec b/SignalR-ObjC/1.0.alpha1/SignalR-ObjC.podspec new file mode 100644 index 00000000..f5a36c93 --- /dev/null +++ b/SignalR-ObjC/1.0.alpha1/SignalR-ObjC.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = "SignalR-ObjC" + s.version = "1.0.alpha1" + s.summary = "Objective-C Client for the SignalR Project works with iOS and Mac." + s.homepage = "https://github.com/DyKnow/SignalR-ObjC" + s.license = 'MIT' + s.author = { "Alex Billingsley" => "abillingsley@dyknow.com" } + s.source = { :git => 'https://github.com/DyKnow/SignalR-ObjC.git', :tag => '1.0alpha1' } + s.ios.deployment_target = '5.0' + s.osx.deployment_target = '10.7' + s.source_files = 'SignalR.Client/**/*.{h,m}' + s.requires_arc = true + s.dependency 'AFNetworking', '>=1.0.0' +end \ No newline at end of file From b874b3676042ae14162ae53ab336cf9bdd14b7a9 Mon Sep 17 00:00:00 2001 From: Matt Vaznaian Date: Tue, 20 Nov 2012 10:24:28 -0800 Subject: [PATCH 098/148] Add StackMob v1.1.3 --- StackMob/1.1.3/StackMob.podspec | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 StackMob/1.1.3/StackMob.podspec diff --git a/StackMob/1.1.3/StackMob.podspec b/StackMob/1.1.3/StackMob.podspec new file mode 100644 index 00000000..ef17befa --- /dev/null +++ b/StackMob/1.1.3/StackMob.podspec @@ -0,0 +1,24 @@ +Pod::Spec.new do |s| + s.name = 'StackMob' + s.version = '1.1.3' + s.license = 'Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)' + s.summary = "StackMob's SDK for accessing the StackMob Services on iOS." + s.homepage = 'http://stackmob.com' + s.author = { 'StackMob' => 'info@stackmob.com' } + s.source = { :git => 'https://github.com/stackmob/stackmob-ios-sdk.git', :commit => '38d9c8aac0fba8314f3fd9fba322d54a08b48f41' } + s.platform = :ios, '5.0' + s.source_files = 'Classes/*.{h,m}', 'Utility/*.{h,m}', 'CoreData/Classes/*.{h,m}', 'Push/*.{h,m}' + s.dependency 'AFNetworking', '1.0' + s.frameworks = 'CoreData', 'Security', 'SystemConfiguration', 'MobileCoreServices' + s.requires_arc = true + s.documentation = { + :appledoc => [ + '--index-desc','OverviewForDocs.md', + '--clean-output', + '--no-keep-undocumented-objects', + '--no-keep-undocumented-members', + '--no-repeat-first-par', + '--no-merge-categories', + '--install-docset' + ]} +end From 3e0309fb5f92d6cdb16261a35dfc75c57c6922aa Mon Sep 17 00:00:00 2001 From: Alex Billingsley Date: Tue, 20 Nov 2012 13:32:20 -0500 Subject: [PATCH 099/148] [Fix] SignalR-ObjC (1.0.alpha1) --- SignalR-ObjC/1.0.alpha1/SignalR-ObjC.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SignalR-ObjC/1.0.alpha1/SignalR-ObjC.podspec b/SignalR-ObjC/1.0.alpha1/SignalR-ObjC.podspec index f5a36c93..6b095508 100644 --- a/SignalR-ObjC/1.0.alpha1/SignalR-ObjC.podspec +++ b/SignalR-ObjC/1.0.alpha1/SignalR-ObjC.podspec @@ -5,7 +5,7 @@ Pod::Spec.new do |s| s.homepage = "https://github.com/DyKnow/SignalR-ObjC" s.license = 'MIT' s.author = { "Alex Billingsley" => "abillingsley@dyknow.com" } - s.source = { :git => 'https://github.com/DyKnow/SignalR-ObjC.git', :tag => '1.0alpha1' } + s.source = { :git => 'https://github.com/DyKnow/SignalR-ObjC.git', :tag => '1.0.alpha1' } s.ios.deployment_target = '5.0' s.osx.deployment_target = '10.7' s.source_files = 'SignalR.Client/**/*.{h,m}' From 973a2ca299a34614ace82e67a9b0964d10ca59b8 Mon Sep 17 00:00:00 2001 From: Alex Billingsley Date: Tue, 20 Nov 2012 13:38:36 -0500 Subject: [PATCH 100/148] [Update] SignalR-ObjC (1.0.alpha2) --- SignalR-ObjC/1.0.alpha2/SignalR-ObjC.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 SignalR-ObjC/1.0.alpha2/SignalR-ObjC.podspec diff --git a/SignalR-ObjC/1.0.alpha2/SignalR-ObjC.podspec b/SignalR-ObjC/1.0.alpha2/SignalR-ObjC.podspec new file mode 100644 index 00000000..647dcfd6 --- /dev/null +++ b/SignalR-ObjC/1.0.alpha2/SignalR-ObjC.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = "SignalR-ObjC" + s.version = "1.0.alpha2" + s.summary = "Objective-C Client for the SignalR Project works with iOS and Mac." + s.homepage = "https://github.com/DyKnow/SignalR-ObjC" + s.license = 'MIT' + s.author = { "Alex Billingsley" => "abillingsley@dyknow.com" } + s.source = { :git => 'https://github.com/DyKnow/SignalR-ObjC.git', :tag => '1.0.alpha2' } + s.ios.deployment_target = '5.0' + s.osx.deployment_target = '10.7' + s.source_files = 'SignalR.Client/**/*.{h,m}' + s.requires_arc = true + s.dependency 'AFNetworking', '>=1.0.0' +end \ No newline at end of file From b822caa38c99b3e8b78fb4035bed48d8f69328b7 Mon Sep 17 00:00:00 2001 From: Jon Rexeisen Date: Tue, 20 Nov 2012 14:32:35 -0600 Subject: [PATCH 101/148] Updated TTTAttributedLabel to use version 1.4.1 --- .../1.4.1/TTTAttributedLabel.podspec | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 TTTAttributedLabel/1.4.1/TTTAttributedLabel.podspec diff --git a/TTTAttributedLabel/1.4.1/TTTAttributedLabel.podspec b/TTTAttributedLabel/1.4.1/TTTAttributedLabel.podspec new file mode 100644 index 00000000..48d9ee4b --- /dev/null +++ b/TTTAttributedLabel/1.4.1/TTTAttributedLabel.podspec @@ -0,0 +1,15 @@ +Pod::Spec.new do |s| + s.name = 'TTTAttributedLabel' + s.version = '1.4.1' + s.authors = {'Mattt Thompson' => 'm@mattt.me'} + s.homepage = 'https://github.com/mattt/TTTAttributedLabel/' + s.summary = 'A drop-in replacement for UILabel that supports attributes, data detectors, links, and more.' + s.source = {:git => 'https://github.com/mattt/TTTAttributedLabel.git', :tag => '1.4.1'} + s.license = 'MIT' + + s.platform = :ios + s.requires_arc = true + s.compiler_flags = '-Wno-arc-bridge-casts-disallowed-in-nonarc' + s.frameworks = 'CoreText' + s.source_files = 'TTTAttributedLabel' +end \ No newline at end of file From 154f842c436950a3c62bfff4c1b184ef046776fb Mon Sep 17 00:00:00 2001 From: Jon Rexeisen Date: Tue, 20 Nov 2012 15:19:50 -0600 Subject: [PATCH 102/148] Updated FormatterKit to v1.1.0 --- FormatterKit/1.1.0/FormatterKit.podspec | 50 +++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 FormatterKit/1.1.0/FormatterKit.podspec diff --git a/FormatterKit/1.1.0/FormatterKit.podspec b/FormatterKit/1.1.0/FormatterKit.podspec new file mode 100644 index 00000000..321ef19d --- /dev/null +++ b/FormatterKit/1.1.0/FormatterKit.podspec @@ -0,0 +1,50 @@ +Pod::Spec.new do |s| + s.name = 'FormatterKit' + s.version = '1.1.0' + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.summary = '`stringWithFormat:` for the sophisticated hacker set.' + s.homepage = 'https://github.com/mattt/FormatterKit' + s.author = { 'Mattt Thompson' => 'm@mattt.me' } + s.source = { :git => 'https://github.com/mattt/FormatterKit.git', :tag => '1.1.0' } + + s.description = "FormatterKit is a collection of well-crafted NSFormatter subclasses for things like units of information, distance, and relative time intervals. Each formatter abstracts away the complex business logic of their respective domain, so that you can focus on the more important aspects of your application." + + s.requires_arc = true + + s.ios.frameworks = 'AddressBook', 'AddressBookUI' + s.prefix_header_contents = <<-EOS +#ifdef __IPHONE_OS_VERSION_MIN_REQUIRED + #import +#endif +EOS + + s.subspec 'AddressFormatter' do |ss| + ss.platform = :ios + ss.source_files = 'TTTAddressFormatter/*.{h,m}' + end + + s.subspec 'ArrayFormatter' do |ss| + ss.source_files = 'TTTArrayFormatter/*.{h,m}' + end + + s.subspec 'LocationFormatter' do |ss| + ss.source_files = 'TTTLocationFormatter/*.{h,m}' + ss.frameworks = 'CoreLocation' + end + + s.subspec 'OrdinalNumberFormatter' do |ss| + ss.source_files = 'TTTOrdinalNumberFormatter/*.{h,m}' + end + + s.subspec 'TimeIntervalFormatter' do |ss| + ss.source_files = 'TTTTimeIntervalFormatter/*.{h,m}' + end + + s.subspec 'UnitOfInformationFormatter' do |ss| + ss.source_files = 'TTTUnitOfInformationFormatter/*.{h,m}' + end + + s.subspec 'URLRequestFormatter' do |ss| + ss.source_files = 'TTTURLRequestFormatter/*.{h,m}' + end +end \ No newline at end of file From 35794927abdd5255ab6703a550e993c994e56998 Mon Sep 17 00:00:00 2001 From: Tyler Casselman Date: Tue, 20 Nov 2012 13:53:37 -0800 Subject: [PATCH 103/148] Add SystemConfiguration framework as a dependency to Mixpanel Mixpanel uses SystemConfiguration and CoreTelephony. --- Mixpanel/1.0.0/Mixpanel.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mixpanel/1.0.0/Mixpanel.podspec b/Mixpanel/1.0.0/Mixpanel.podspec index 33776368..26399828 100644 --- a/Mixpanel/1.0.0/Mixpanel.podspec +++ b/Mixpanel/1.0.0/Mixpanel.podspec @@ -6,7 +6,7 @@ Pod::Spec.new do |s| s.homepage = 'http://mixpanel.com' s.author = { 'Mixpanel' => 'support@mixpanel.com' } s.source = { :git => 'https://github.com/mixpanel/mixpanel-iphone.git', :tag => 'v1.0.0' } - s.frameworks = 'CoreTelephony' + s.frameworks = 'CoreTelephony', 'SystemConfiguration' s.platform = :ios s.source_files = 'Mixpanel/**/*.{h,m}' end From e6f1ff5bb4ff8a7c9b5449b6def907553e7ae45c Mon Sep 17 00:00:00 2001 From: Neil Cowburn Date: Wed, 21 Nov 2012 00:30:24 +0000 Subject: [PATCH 104/148] Added BetterBlocks.podspec --- BetterBlocks/0.0.1/BetterBlocks.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 BetterBlocks/0.0.1/BetterBlocks.podspec diff --git a/BetterBlocks/0.0.1/BetterBlocks.podspec b/BetterBlocks/0.0.1/BetterBlocks.podspec new file mode 100644 index 00000000..af33ad6c --- /dev/null +++ b/BetterBlocks/0.0.1/BetterBlocks.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = 'BetterBlocks' + s.version = '0.0.1' + s.license = { :type => 'MIT', :file => 'LICENSE.txt' } + s.summary = 'Completion and Error blocks for NSURLConnection' + s.homepage = 'https://github.com/neilco/BetterBlocks' + s.author = { 'Neil Cowburn' => 'neilco@gmail.com' } + s.source = { :git => 'https://github.com/neilco/BetterBlocks.git', + :tag => '0.0.1' } + s.source_files = 'NSURLConnection+BetterBlocks.{h,m}' + + s.ios.deployment_target = '5.0' + s.osx.deployment_target = '10.7' +end \ No newline at end of file From 20b1ba28283c8949d85d74ff190553c2cb6e66fc Mon Sep 17 00:00:00 2001 From: Neil Cowburn Date: Wed, 21 Nov 2012 01:12:01 +0000 Subject: [PATCH 105/148] Fixed missing full spot on summary --- BetterBlocks/0.0.1/BetterBlocks.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BetterBlocks/0.0.1/BetterBlocks.podspec b/BetterBlocks/0.0.1/BetterBlocks.podspec index af33ad6c..cf344b19 100644 --- a/BetterBlocks/0.0.1/BetterBlocks.podspec +++ b/BetterBlocks/0.0.1/BetterBlocks.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |s| s.name = 'BetterBlocks' s.version = '0.0.1' s.license = { :type => 'MIT', :file => 'LICENSE.txt' } - s.summary = 'Completion and Error blocks for NSURLConnection' + s.summary = 'Completion and Error blocks for NSURLConnection.' s.homepage = 'https://github.com/neilco/BetterBlocks' s.author = { 'Neil Cowburn' => 'neilco@gmail.com' } s.source = { :git => 'https://github.com/neilco/BetterBlocks.git', From 95d97fe257b3846f0a74b892c1436942ac1c3351 Mon Sep 17 00:00:00 2001 From: Rusty Zarse Date: Tue, 20 Nov 2012 20:15:52 -0500 Subject: [PATCH 106/148] added framework requirements to spec --- FRD3DBarChart/1.0.0/FRD3DBarChart.podspec | 1 + 1 file changed, 1 insertion(+) diff --git a/FRD3DBarChart/1.0.0/FRD3DBarChart.podspec b/FRD3DBarChart/1.0.0/FRD3DBarChart.podspec index ada4916c..ddee6533 100644 --- a/FRD3DBarChart/1.0.0/FRD3DBarChart.podspec +++ b/FRD3DBarChart/1.0.0/FRD3DBarChart.podspec @@ -8,5 +8,6 @@ Pod::Spec.new do |s| s.source = { :git => "https://github.com/sebastienwindal/FRD3DBarChart.git", :tag => "1.0.0" } s.platform = :ios s.source_files = 'FRD3DBarChart/FRD3DBarChartViewController*.{h,m}', 'FRD3DBarChart/Shapes.h' + s.frameworks = 'OpenGLES', 'GLKit', 'QuartzCore', 'CoreText' s.requires_arc = true end From 9c5f69e1199d0ad5cb6aba36144b8b6b249954a8 Mon Sep 17 00:00:00 2001 From: Kauserali Hafizji Date: Wed, 21 Nov 2012 10:54:03 +0530 Subject: [PATCH 107/148] [Fix] JSNotifier (0.0.1) --- JSNotifier/0.0.1/JSNotifier.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JSNotifier/0.0.1/JSNotifier.podspec b/JSNotifier/0.0.1/JSNotifier.podspec index 8da33c5b..61b470ed 100644 --- a/JSNotifier/0.0.1/JSNotifier.podspec +++ b/JSNotifier/0.0.1/JSNotifier.podspec @@ -27,7 +27,7 @@ LICENSE s.source = { :git => "https://github.com/jonahsiegle/JSNotifier.git", :commit => "354f9eadf473468dbf04666130506a52beafb2a3"} - s.platform = :ios, '5.0' + s.platform = :ios s.source_files = 'JSNotifier\ Sample/JSNotifier.h', 'JSNotifier\ Sample/JSNotifier.m' From 27d3fe2fb1cb7b3707bff0a36f3559cdc2042113 Mon Sep 17 00:00:00 2001 From: Matt Vaznaian Date: Tue, 20 Nov 2012 21:29:58 -0800 Subject: [PATCH 108/148] Trying to get StackMob 1.1.3 working with tags --- StackMob/1.1.3/StackMob.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/StackMob/1.1.3/StackMob.podspec b/StackMob/1.1.3/StackMob.podspec index ef17befa..10e7fb1e 100644 --- a/StackMob/1.1.3/StackMob.podspec +++ b/StackMob/1.1.3/StackMob.podspec @@ -5,7 +5,7 @@ Pod::Spec.new do |s| s.summary = "StackMob's SDK for accessing the StackMob Services on iOS." s.homepage = 'http://stackmob.com' s.author = { 'StackMob' => 'info@stackmob.com' } - s.source = { :git => 'https://github.com/stackmob/stackmob-ios-sdk.git', :commit => '38d9c8aac0fba8314f3fd9fba322d54a08b48f41' } + s.source = { :git => 'https://github.com/stackmob/stackmob-ios-sdk.git', :tag => s.version.to_s } s.platform = :ios, '5.0' s.source_files = 'Classes/*.{h,m}', 'Utility/*.{h,m}', 'CoreData/Classes/*.{h,m}', 'Push/*.{h,m}' s.dependency 'AFNetworking', '1.0' From c554cf4f4a3a9deb48f67c8bd194679b008895ba Mon Sep 17 00:00:00 2001 From: Francis Chong Date: Wed, 21 Nov 2012 13:45:58 +0800 Subject: [PATCH 109/148] Add Evernote-SDK-iOS 0.2.2 --- Evernote-SDK-iOS/0.2.2/Evernote-SDK-iOS.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Evernote-SDK-iOS/0.2.2/Evernote-SDK-iOS.podspec diff --git a/Evernote-SDK-iOS/0.2.2/Evernote-SDK-iOS.podspec b/Evernote-SDK-iOS/0.2.2/Evernote-SDK-iOS.podspec new file mode 100644 index 00000000..8cff18a7 --- /dev/null +++ b/Evernote-SDK-iOS/0.2.2/Evernote-SDK-iOS.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = 'Evernote-SDK-iOS' + s.version = '0.2.2' + s.platform = :ios + s.license = 'https://github.com/evernote/evernote-sdk-ios/blob/master/LICENSE' + s.summary = 'Evernote SDK for iOS.' + s.homepage = 'https://github.com/evernote/evernote-sdk-ios' + s.author = 'Evernote' + s.source = { :git => 'https://github.com/evernote/evernote-sdk-ios.git', :tag => '0.2.2' } + s.source_files = 'evernote-sdk-ios/*.{h,m}', 'evernote-sdk-ios/EDAM/*.{h,m}', 'evernote-sdk-ios/internal/*.{h,m}', 'evernote-sdk-ios/3rdParty/Thrift/**/*.{h,m}', 'evernote-sdk-ios/3rdParty/NSString+URLEncoding/*.{h,m}' + s.frameworks = 'Foundation', 'Security' + s.dependency 'cocoa-oauth', '~> 0.0.1' + s.dependency 'SSKeychain', '~> 0.1.2' +end \ No newline at end of file From d572b9d90a513c3eb9e30516203432b085761b00 Mon Sep 17 00:00:00 2001 From: Daniel Kuhnke Date: Wed, 21 Nov 2012 11:11:54 +0100 Subject: [PATCH 110/148] added CoreTextLabel 1.2 --- CoreTextLabel/1.2/CoreTextLabel.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 CoreTextLabel/1.2/CoreTextLabel.podspec diff --git a/CoreTextLabel/1.2/CoreTextLabel.podspec b/CoreTextLabel/1.2/CoreTextLabel.podspec new file mode 100644 index 00000000..2ad17ffd --- /dev/null +++ b/CoreTextLabel/1.2/CoreTextLabel.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = 'CoreTextLabel' + s.version = '1.2' + s.summary = "UILabel replacement to draw NSAttributedString or HTML with custom font and color in iOS applications. "numberOfLines" and "truncation" (NSLineBreakByTruncatingTail) is supported." + s.homepage = "https://github.com/dkuhnke/CoreTextLabel" + s.author = { 'Daniel Kuhnke' => 'd.kuhnke@appfarms.com' } + s.source = { :git => 'https://github.com/dkuhnke/CoreTextLabel.git', :tag => '1.2' } + s.platform = :ios + s.requires_arc = true + s.source_files = '*.{h,m}' + s.license = 'MIT' + s.ios.frameworks = 'QuartzCore', 'CoreText' + s.dependency 'RegexKitLite', '4.0' +end \ No newline at end of file From 4bd435399fa6d19db8770f299acc1acb28d7df69 Mon Sep 17 00:00:00 2001 From: Daniel Kuhnke Date: Wed, 21 Nov 2012 11:21:56 +0100 Subject: [PATCH 111/148] fixed summary --- CoreTextLabel/1.2/CoreTextLabel.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CoreTextLabel/1.2/CoreTextLabel.podspec b/CoreTextLabel/1.2/CoreTextLabel.podspec index 2ad17ffd..295a38d5 100644 --- a/CoreTextLabel/1.2/CoreTextLabel.podspec +++ b/CoreTextLabel/1.2/CoreTextLabel.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = 'CoreTextLabel' s.version = '1.2' - s.summary = "UILabel replacement to draw NSAttributedString or HTML with custom font and color in iOS applications. "numberOfLines" and "truncation" (NSLineBreakByTruncatingTail) is supported." + s.summary = "Label to draw NSAttributedString or HTML with custom font and color. numberOfLines and truncation is supported." s.homepage = "https://github.com/dkuhnke/CoreTextLabel" s.author = { 'Daniel Kuhnke' => 'd.kuhnke@appfarms.com' } s.source = { :git => 'https://github.com/dkuhnke/CoreTextLabel.git', :tag => '1.2' } From 19fcb3536af896be522411ee9797edd4251faa67 Mon Sep 17 00:00:00 2001 From: Kevin Renskers Date: Wed, 21 Nov 2012 14:42:27 +0000 Subject: [PATCH 112/148] [Update] LastFm (1.0.0) --- LastFm/1.0.0/LastFm.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 LastFm/1.0.0/LastFm.podspec diff --git a/LastFm/1.0.0/LastFm.podspec b/LastFm/1.0.0/LastFm.podspec new file mode 100644 index 00000000..bc467333 --- /dev/null +++ b/LastFm/1.0.0/LastFm.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = "LastFm" + s.version = "1.0.0" + s.summary = "Block based Last.fm SDK for iOS and Mac OS X." + s.homepage = "https://github.com/gangverk/LastFm" + s.license = 'MIT' + s.author = { "Kevin Renskers" => "info@mixedcase.nl" } + s.source = { :git => "https://github.com/gangverk/LastFm.git", :tag => s.version.to_s } + s.ios.deployment_target = '4.0' + s.osx.deployment_target = '10.6' + s.source_files = 'LastFm/*.{h,m}' + s.requires_arc = true + s.dependency 'KissXML', '~> 5.0' +end From ba75cbab1bebcd61b8d5eafd5d69c220928e6ccb Mon Sep 17 00:00:00 2001 From: Daniel Kuhnke Date: Wed, 21 Nov 2012 18:54:28 +0100 Subject: [PATCH 113/148] added CoreTextLabel 1.2.1 --- CoreTextLabel/1.2.1/CoreTextLabel.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 CoreTextLabel/1.2.1/CoreTextLabel.podspec diff --git a/CoreTextLabel/1.2.1/CoreTextLabel.podspec b/CoreTextLabel/1.2.1/CoreTextLabel.podspec new file mode 100644 index 00000000..e2d4272f --- /dev/null +++ b/CoreTextLabel/1.2.1/CoreTextLabel.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = 'CoreTextLabel' + s.version = '1.2.1' + s.summary = "Label to draw NSAttributedString or HTML with custom font and color. numberOfLines and lineSpacing is supported." + s.homepage = "https://github.com/dkuhnke/CoreTextLabel" + s.author = { 'Daniel Kuhnke' => 'd.kuhnke@appfarms.com' } + s.source = { :git => 'https://github.com/dkuhnke/CoreTextLabel.git', :tag => '1.2.1' } + s.platform = :ios + s.requires_arc = true + s.source_files = '*.{h,m}' + s.license = 'MIT' + s.ios.frameworks = 'QuartzCore', 'CoreText' + s.dependency 'RegexKitLite', '4.0' +end \ No newline at end of file From 76b2b5e821c995c94f56de399cf4eb88a8413702 Mon Sep 17 00:00:00 2001 From: Anner van Hardenbroek Date: Wed, 21 Nov 2012 19:57:02 +0100 Subject: [PATCH 114/148] Add spec for CDEvents 1.1.2 --- CDEvents/1.1.2/CDEvents.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 CDEvents/1.1.2/CDEvents.podspec diff --git a/CDEvents/1.1.2/CDEvents.podspec b/CDEvents/1.1.2/CDEvents.podspec new file mode 100644 index 00000000..fd6e7a64 --- /dev/null +++ b/CDEvents/1.1.2/CDEvents.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = "CDEvents" + s.version = "1.1.2" + s.summary = "An Objective-C wrapper for Mac OS X’s FSEvents C API." + s.homepage = "http://rastersize.github.com/CDEvents" + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { "Aron Cedercrantz" => "aron@cedercrantz.se" } + s.source = { :git => "https://github.com/rastersize/CDEvents.git", :tag => "1.1.2" } + s.platform = :osx, '10.6' + s.source_files = '*.{h,m}' + s.framework = 'CoreServices' + s.requires_arc = true +end From b23eb7d8a2700dd8c823cd65c653a18fc40f00c2 Mon Sep 17 00:00:00 2001 From: Simon Booth Date: Wed, 21 Nov 2012 19:04:12 +0000 Subject: [PATCH 115/148] [Add] ltools (1.0) --- ltools/1.0/ltools.podspec | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 ltools/1.0/ltools.podspec diff --git a/ltools/1.0/ltools.podspec b/ltools/1.0/ltools.podspec new file mode 100644 index 00000000..e77a4364 --- /dev/null +++ b/ltools/1.0/ltools.podspec @@ -0,0 +1,16 @@ +Pod::Spec.new do |s| + s.name = "ltools" + s.version = "1.0" + s.summary = "Tools to help with localising an iOS app." + s.description = "Tools to help with localising an iOS app. Currently this is a header file (L.h) with some convenience macros, and a script (L.sh) to check whether all your keys are included in your strings files. Use of L.sh requires the installation of 'ack'; if you have homebrew installed you can do this with 'brew install ack'." + s.homepage = "https://github.com/percysnoodle/ltools" + + s.license = 'MIT' + s.author = 'Simon Booth' + + s.source = { :git => "https://github.com/percysnoodle/ltools.git", :tag => "1.0" } + s.platform = :ios, '2.0' + + s.source_files = 'src' + s.preserve_paths = 'bin' +end From 066d8f2f4744139eccdc48965354f30cb8edf211 Mon Sep 17 00:00:00 2001 From: Marin Usalj Date: Wed, 21 Nov 2012 11:35:11 -0800 Subject: [PATCH 116/148] [Add] ObjectiveSugar (0.1) --- ObjectiveSugar/0.1/ObjectiveSugar.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 ObjectiveSugar/0.1/ObjectiveSugar.podspec diff --git a/ObjectiveSugar/0.1/ObjectiveSugar.podspec b/ObjectiveSugar/0.1/ObjectiveSugar.podspec new file mode 100644 index 00000000..e45d17aa --- /dev/null +++ b/ObjectiveSugar/0.1/ObjectiveSugar.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = "ObjectiveSugar" + s.version = "0.1" + s.summary = "ObjectiveC additions for humans. Ruby style." + s.homepage = "https://github.com/mneorr/ObjectiveSugar" + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { "Marin Usalj" => "mneorr@gmail.com" } + s.source = { :git => "https://github.com/mneorr/ObjectiveSugar.git", :tag => '0.1' } + + s.ios.deployment_target = '5.0' + s.osx.deployment_target = '10.7' + + s.source_files = 'Classes', 'src/**/*.{h,m}' +end From 76dc3042e5543445d120226306c3018e156003db Mon Sep 17 00:00:00 2001 From: Marin Usalj Date: Wed, 21 Nov 2012 11:42:21 -0800 Subject: [PATCH 117/148] [Update] ObjectiveSugar (0.1.1) --- ObjectiveSugar/0.1.1/ObjectiveSugar.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 ObjectiveSugar/0.1.1/ObjectiveSugar.podspec diff --git a/ObjectiveSugar/0.1.1/ObjectiveSugar.podspec b/ObjectiveSugar/0.1.1/ObjectiveSugar.podspec new file mode 100644 index 00000000..7be448c0 --- /dev/null +++ b/ObjectiveSugar/0.1.1/ObjectiveSugar.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = "ObjectiveSugar" + s.version = "0.1.1" + s.summary = "ObjectiveC additions for humans. Ruby style." + s.homepage = "https://github.com/mneorr/ObjectiveSugar" + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { "Marin Usalj" => "mneorr@gmail.com" } + s.source = { :git => "https://github.com/mneorr/ObjectiveSugar.git", :tag => '0.1.1' } + + s.ios.deployment_target = '5.0' + s.osx.deployment_target = '10.7' + + s.source_files = 'ObjectiveSugar.h', 'src/**/*.{h,m}' +end From 79dc4e4467b94103e554bc8ae01142982974bd03 Mon Sep 17 00:00:00 2001 From: Anner van Hardenbroek Date: Wed, 21 Nov 2012 21:52:19 +0100 Subject: [PATCH 118/148] Add CDEvents 1.2.0 pod spec. The owner/author of the source code is @rastersize. I commit only this version of the spec, see: https://github.com/rastersize/CDEvents/issues/13#issuecomment-10613585 more info. --- CDEvents/1.1.2/CDEvents.podspec | 13 ------------- CDEvents/1.2.0/CDEvents.podspec | 13 +++++++++++++ 2 files changed, 13 insertions(+), 13 deletions(-) delete mode 100644 CDEvents/1.1.2/CDEvents.podspec create mode 100644 CDEvents/1.2.0/CDEvents.podspec diff --git a/CDEvents/1.1.2/CDEvents.podspec b/CDEvents/1.1.2/CDEvents.podspec deleted file mode 100644 index fd6e7a64..00000000 --- a/CDEvents/1.1.2/CDEvents.podspec +++ /dev/null @@ -1,13 +0,0 @@ -Pod::Spec.new do |s| - s.name = "CDEvents" - s.version = "1.1.2" - s.summary = "An Objective-C wrapper for Mac OS X’s FSEvents C API." - s.homepage = "http://rastersize.github.com/CDEvents" - s.license = { :type => 'MIT', :file => 'LICENSE' } - s.author = { "Aron Cedercrantz" => "aron@cedercrantz.se" } - s.source = { :git => "https://github.com/rastersize/CDEvents.git", :tag => "1.1.2" } - s.platform = :osx, '10.6' - s.source_files = '*.{h,m}' - s.framework = 'CoreServices' - s.requires_arc = true -end diff --git a/CDEvents/1.2.0/CDEvents.podspec b/CDEvents/1.2.0/CDEvents.podspec new file mode 100644 index 00000000..f33cc4c6 --- /dev/null +++ b/CDEvents/1.2.0/CDEvents.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = "CDEvents" + s.version = "1.2.0" + s.summary = "An Objective-C wrapper for Mac OS X’s FSEvents C API." + s.homepage = "http://rastersize.github.com/CDEvents" + s.license = 'MIT' + s.author = { "Aron Cedercrantz" => "aron@cedercrantz.se" } + s.source = { :git => "https://github.com/rastersize/CDEvents.git", :tag => "1.2.0" } + s.platform = :osx, '10.6' + s.source_files = '*.{h,m}' + s.framework = 'CoreServices' + s.requires_arc = true +end \ No newline at end of file From 787997a9b826e4403202773179b4ae0a34d66d0b Mon Sep 17 00:00:00 2001 From: Marin Usalj Date: Wed, 21 Nov 2012 13:06:10 -0800 Subject: [PATCH 119/148] [Update] ObjectiveSugar (0.2) --- ObjectiveSugar/0.2/ObjectiveSugar.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 ObjectiveSugar/0.2/ObjectiveSugar.podspec diff --git a/ObjectiveSugar/0.2/ObjectiveSugar.podspec b/ObjectiveSugar/0.2/ObjectiveSugar.podspec new file mode 100644 index 00000000..f3b459d0 --- /dev/null +++ b/ObjectiveSugar/0.2/ObjectiveSugar.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = "ObjectiveSugar" + s.version = "0.2" + s.summary = "ObjectiveC additions for humans. Ruby style." + s.homepage = "https://github.com/mneorr/ObjectiveSugar" + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { "Marin Usalj" => "mneorr@gmail.com" } + s.source = { :git => "https://github.com/mneorr/ObjectiveSugar.git", :tag => '0.2' } + + s.ios.deployment_target = '5.0' + s.osx.deployment_target = '10.7' + + s.source_files = 'src/**/*.{h,m}' +end From f9a8e13c1ea5a6423882de34a62e7771b23dc156 Mon Sep 17 00:00:00 2001 From: Marcel Ruegenberg Date: Wed, 21 Nov 2012 22:48:34 +0100 Subject: [PATCH 120/148] [Update] objc-utils (0.2.5) --- objc-utils/0.2.5/objc-utils.podspec | 39 +++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 objc-utils/0.2.5/objc-utils.podspec diff --git a/objc-utils/0.2.5/objc-utils.podspec b/objc-utils/0.2.5/objc-utils.podspec new file mode 100644 index 00000000..72b592f3 --- /dev/null +++ b/objc-utils/0.2.5/objc-utils.podspec @@ -0,0 +1,39 @@ +Pod::Spec.new do |s| + s.name = "objc-utils" + s.version = "0.2.5" + s.summary = "Utilities for developing with Objective-C, particularly under iOS." + s.description = <<-DESC + This is a collection of useful classes and extensions for common classes in CoreFoundation and UIKit. + + * Various categories to make the standard CoreFoundation and UIKit classes more useful. + * A few helper classes with the same purpose. + DESC + s.homepage = "https://github.com/mruegenberg/objc-utils" + s.license = { + :type => 'Custom Permissive Free Software Licence', + :text => <<-LICENSE + You can redistribute and use in your commercial or non-commercial projects all of this code. + No guarantee is expressed or implied. + If you redistribute the code, license notices and the name of the original author (if contained in the code) must be preserved. + LICENSE + } + s.author = { "Marcel Ruegenberg" => "github@dustlab.com" } + s.source = { :git => "https://github.com/mruegenberg/objc-utils.git", :tag => "0.2.5" } + + s.platform = :ios, "5.0" + s.requires_arc = true + + s.source_files = 'Util.h', 'Util.m' + + s.subspec 'CoreFoundation' do |sp| + sp.source_files = 'CoreFoundation/**/*.{h,m,c}' + s.library = 'z' + s.framework = 'CoreFoundation' + end + + s.subspec 'UIKit' do |sp| + sp.source_files = 'UIKit/**/*.{h,m,c}' + s.framework = 'UIKit' + s.resources = 'UIKit/ViewUtil/*.png' + end +end From 1dff78bb4a0dffb6d6effc549082ba63868337ec Mon Sep 17 00:00:00 2001 From: Marin Usalj Date: Wed, 21 Nov 2012 15:05:29 -0800 Subject: [PATCH 121/148] [Update] ObjectiveRecord (1.0.2) --- ObjectiveRecord/1.0.2/ObjectiveRecord.podspec | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 ObjectiveRecord/1.0.2/ObjectiveRecord.podspec diff --git a/ObjectiveRecord/1.0.2/ObjectiveRecord.podspec b/ObjectiveRecord/1.0.2/ObjectiveRecord.podspec new file mode 100644 index 00000000..1e3744bf --- /dev/null +++ b/ObjectiveRecord/1.0.2/ObjectiveRecord.podspec @@ -0,0 +1,19 @@ +Pod::Spec.new do |s| + s.name = "ObjectiveRecord" + s.version = "1.0.2" + s.summary = "Lightweight and sexy Core Data finders, creators and other methods. Rails syntax." + s.homepage = "https://github.com/mneorr/Objective-Record" + s.license = { :type => 'MIT', :file => 'LICENSE' } + + s.author = { "Marin Usalj" => "mneorr@gmail.com" } + s.source = { :git => "https://github.com/mneorr/Objective-Record.git", :tag => "1.0.2" } + + s.source_files = 'ObjectiveRecord.h', 'src/**/*.{h,m}' + s.framework = 'CoreData' + s.requires_arc = true + + s.ios.deployment_target = '5.0' + s.osx.deployment_target = '10.7' + + s.dependency 'ObjectiveSugar' +end From 9ec8567cf1e0b4b3dddd7a99ce51f709c32f0888 Mon Sep 17 00:00:00 2001 From: bryn austin bellomy Date: Wed, 21 Nov 2012 19:09:39 -0600 Subject: [PATCH 122/148] Updating BrynKit to v1.0.1 --- BrynKit/1.0.1/BrynKit.podspec | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 BrynKit/1.0.1/BrynKit.podspec diff --git a/BrynKit/1.0.1/BrynKit.podspec b/BrynKit/1.0.1/BrynKit.podspec new file mode 100644 index 00000000..193d61b7 --- /dev/null +++ b/BrynKit/1.0.1/BrynKit.podspec @@ -0,0 +1,15 @@ +Pod::Spec.new do |s| + s.name = "BrynKit" + s.version = "1.0.1" + s.author = { "bryn austin bellomy" => "bryn.bellomy@gmail.com" } + s.summary = "Macros and helpers for logging, debugging, and metaprogramming." + s.homepage = "http://brynbellomy.github.com/BrynKit" + s.license = 'WTFPL' + + + s.source = { :git => "https://github.com/brynbellomy/BrynKit.git", :tag => "v1.0.1" } + s.source_files = '*.{h,m}' + s.requires_arc = true + s.xcconfig = { 'PUBLIC_HEADERS_FOLDER_PATH' => 'include/$(TARGET_NAME)' } + s.prefix_header_contents = "#import " +end From 28f340e597153bd0112e94fb97bafe9991208100 Mon Sep 17 00:00:00 2001 From: stcui Date: Thu, 22 Nov 2012 10:10:56 +0800 Subject: [PATCH 123/148] update summary --- BeeFramework/0.1.1/BeeFramework.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BeeFramework/0.1.1/BeeFramework.podspec b/BeeFramework/0.1.1/BeeFramework.podspec index c6ed99e7..37c0698e 100644 --- a/BeeFramework/0.1.1/BeeFramework.podspec +++ b/BeeFramework/0.1.1/BeeFramework.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "BeeFramework" s.version = "0.1.1" - s.summary = "Bee Framework is an iOS MVC framework to help you develop your app rapidly." + s.summary = "Bee Framework is an iOS MVC framework to help you develop your app rapidly. Add __BEE_DEBUGGER__=1 in build setting of Pods target to enable Bee Debugger." s.description = <<-DESC Bee Framework is a MVC Framework to develop iOS application. It has pretty clear hieracy and signal based mechanism, also with cache and asynchonized networking methods in it. From 942a3edd9ebfb2d0b9178e62e86e2bbf6a92e82e Mon Sep 17 00:00:00 2001 From: stcui Date: Thu, 22 Nov 2012 11:29:03 +0800 Subject: [PATCH 124/148] fix summary and tag --- BeeFramework/0.1.1/BeeFramework.podspec | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/BeeFramework/0.1.1/BeeFramework.podspec b/BeeFramework/0.1.1/BeeFramework.podspec index 37c0698e..619a26a1 100644 --- a/BeeFramework/0.1.1/BeeFramework.podspec +++ b/BeeFramework/0.1.1/BeeFramework.podspec @@ -1,17 +1,18 @@ Pod::Spec.new do |s| s.name = "BeeFramework" s.version = "0.1.1" - s.summary = "Bee Framework is an iOS MVC framework to help you develop your app rapidly. Add __BEE_DEBUGGER__=1 in build setting of Pods target to enable Bee Debugger." + s.summary = "Bee Framework is an iOS MVC framework to help you develop your app rapidly." s.description = <<-DESC Bee Framework is a MVC Framework to develop iOS application. It has pretty clear hieracy and signal based mechanism, also with cache and asynchonized networking methods in it. + Add __BEE_DEBUGGER__=1 in build setting of Pods target and add [BeeDebugger show] to AppDelegate to enable Bee Debugger. DESC s.homepage = "http://bbs.whatsbug.com/BeeFramework" s.license = 'MIT' s.author = { "gavinkwoe" => "gavinkwoe@gmail.com"} - s.source = { :git => "https://github.com/stcui/BeeFramework.git", :tag => "0.1" } + s.source = { :git => "https://github.com/stcui/BeeFramework.git", :tag => "0.1.1" } s.resource = "BeeDebugger/*.png" s.platform = :ios From 41e00eac03d9586081e237f58f2f58914f4909cc Mon Sep 17 00:00:00 2001 From: Heyward Fann Date: Thu, 22 Nov 2012 14:41:32 +0800 Subject: [PATCH 125/148] EGOCache requires_arc = true. --- EGOCache/2.0/EGOCache.podspec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/EGOCache/2.0/EGOCache.podspec b/EGOCache/2.0/EGOCache.podspec index a392baa7..be4870c9 100644 --- a/EGOCache/2.0/EGOCache.podspec +++ b/EGOCache/2.0/EGOCache.podspec @@ -9,6 +9,7 @@ Pod::Spec.new do |s| :tag => 'v2.0' } s.source_files = '*.{h,m}' + s.requires_arc = true s.license = { :type => 'MIT', @@ -23,4 +24,4 @@ Pod::Spec.new do |s| LICENSE } -end \ No newline at end of file +end From 60b51e341f727b7d715ed541ea9cb52f6e0cc819 Mon Sep 17 00:00:00 2001 From: Fabio Pelosin Date: Thu, 22 Nov 2012 15:26:51 +0100 Subject: [PATCH 126/148] CocoaPods release 0.16.0 --- CocoaPods-version.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CocoaPods-version.yml b/CocoaPods-version.yml index c6db3c49..122f8d1d 100644 --- a/CocoaPods-version.yml +++ b/CocoaPods-version.yml @@ -1,3 +1,3 @@ --- -last: 0.16.0.rc5 +last: 0.16.0 min: 0.6.0 From 89e1cd06e92780a04d4957c65e968e08c6216b2a Mon Sep 17 00:00:00 2001 From: Diego Torres Date: Thu, 22 Nov 2012 13:47:40 -0300 Subject: [PATCH 127/148] Added OLImageView 1.0.0 --- OLImageView/1.0.0/OLImageView.podspec | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 OLImageView/1.0.0/OLImageView.podspec diff --git a/OLImageView/1.0.0/OLImageView.podspec b/OLImageView/1.0.0/OLImageView.podspec new file mode 100644 index 00000000..9bbc6541 --- /dev/null +++ b/OLImageView/1.0.0/OLImageView.podspec @@ -0,0 +1,21 @@ +Pod::Spec.new do |s| + s.name = "OLImageView" + s.version = "1.0.0" + s.summary = "Animated GIFs implemented the right way." + s.homepage = "https://www.github.com/ondalabs/OLImageView" + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { "Diego Torres" => "contact@dtorres.me" } + s.source = { :git => "https://github.com/ondalabs/OLImageView.git", :tag => "1.0.0" } + s.platform = :ios, '5.0' + s.source_files = 'OLImage.{h,m}', 'OLImageView.{h,m}' + s.framework = 'ImageIO', 'MobileCoreServices', 'QuartzCore' + s.requires_arc = true + + s.subspec 'AFNetworking' do |af| + af.dependency 'AFNetworking' + af.source_files = "Categories/AFImageRequestOperation+OLImage.{h,m}" + end + + s.preferred_dependency = 'AFNetworking' + +end From 4ffb1e86d4e4604820a424a56eece32c1be3a122 Mon Sep 17 00:00:00 2001 From: Fabio Pelosin Date: Thu, 22 Nov 2012 18:39:06 +0100 Subject: [PATCH 128/148] [Rakefile] Hotfix for Travis issues. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index ae352de8..0ffd8332 100644 --- a/Rakefile +++ b/Rakefile @@ -26,7 +26,7 @@ namespace :travis do end task :setup => [:install_opencflite_debs, :fix_rvm_include_dir] do - sh "CFLAGS='-I#{rvm_ruby_dir}/include' bundle install" + sh "CFLAGS='-I#{rvm_ruby_dir}/include' bundle update" end end From b944e4d4106a572aa71546792a900babce21932a Mon Sep 17 00:00:00 2001 From: broderboy Date: Thu, 22 Nov 2012 13:03:40 -0500 Subject: [PATCH 129/148] Added DoneCancelNumberPadToolbar --- .../0.6.0/DoneCancelNumberPadToolbar.podspec | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 DoneCancelNumberPadToolbar/0.6.0/DoneCancelNumberPadToolbar.podspec diff --git a/DoneCancelNumberPadToolbar/0.6.0/DoneCancelNumberPadToolbar.podspec b/DoneCancelNumberPadToolbar/0.6.0/DoneCancelNumberPadToolbar.podspec new file mode 100644 index 00000000..e1eecb78 --- /dev/null +++ b/DoneCancelNumberPadToolbar/0.6.0/DoneCancelNumberPadToolbar.podspec @@ -0,0 +1,17 @@ +Pod::Spec.new do |s| + s.name = "DoneCancelNumberPadToolbar" + s.version = "0.6.0" + s.summary = "Adds Done and Cancel buttons to an iPhone Number Pad." + s.homepage = "https://github.com/broderboy/iphone-DoneCancelNumberPadToolbar" + + s.license = 'cc-wiki' + + s.author = { "broderboy" => "timothy.broder@gmail.com" } + s.source = { :git => "https://github.com/broderboy/iphone-DoneCancelNumberPadToolbar.git", :tag => "0.6.0 " } + + s.platform = :ios, '5.0' + s.source_files = 'DoneCancelNumberPadToolbar*.{h,m}' + + s.requires_arc = true + +end From 9c7a8957d299a54cf05751907a1914d3298027be Mon Sep 17 00:00:00 2001 From: PassSlot Date: Thu, 22 Nov 2012 22:26:21 +0100 Subject: [PATCH 130/148] [Add] PassSlot (0.3) --- PassSlot/0.3/PassSlot.podspec | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 PassSlot/0.3/PassSlot.podspec diff --git a/PassSlot/0.3/PassSlot.podspec b/PassSlot/0.3/PassSlot.podspec new file mode 100644 index 00000000..0d5e98e1 --- /dev/null +++ b/PassSlot/0.3/PassSlot.podspec @@ -0,0 +1,25 @@ +Pod::Spec.new do |s| + s.name = "PassSlot" + s.version = "0.3" + s.summary = "Objective-C Framework (SDK) for easy Passbook integration." + s.description = <<-DESC + PassSlot is a free service for developers that aims to make Passbook integration easy – Really easy. +It combines a Cloud Service that distributes, manages and signs your passes with a powerful Objective-C framework for iOS that reduces the amount of code you need to write to get Passbook integration done. + DESC + s.homepage = "http://www.passslot.com" + s.license = { + :type => 'Commercial', + :text => <<-LICENSE + Copyright © 2012 PassSlot + + All rights reserved. + LICENSE + } + s.author = { "PassSlot" => "support@passslot.com" } + s.source = { :git => "https://github.com/passslot/passslot-ios-sdk.git", :tag => "v0.3" } + s.platform = :ios, '6.0' + s.source_files = 'sdk/PassSlot.framework/Headers' + s.preserve_paths = "sdk/PassSlot.framework" + s.frameworks = 'PassSlot', 'PassKit', 'CFNetwork', 'Security', 'SystemConfiguration' + s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/PassSlot/sdk"' } +end From 5ffe21f09be6c327259fec649dd9f5f65d02f388 Mon Sep 17 00:00:00 2001 From: Eric Horacek Date: Thu, 22 Nov 2012 18:43:27 -0700 Subject: [PATCH 131/148] Adds MSNavigationPaneViewController 0.0.1 version --- .../0.0.1/MSNavigationPaneViewController.podspec | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 MSNavigationPaneViewController/0.0.1/MSNavigationPaneViewController.podspec diff --git a/MSNavigationPaneViewController/0.0.1/MSNavigationPaneViewController.podspec b/MSNavigationPaneViewController/0.0.1/MSNavigationPaneViewController.podspec new file mode 100644 index 00000000..fa110017 --- /dev/null +++ b/MSNavigationPaneViewController/0.0.1/MSNavigationPaneViewController.podspec @@ -0,0 +1,16 @@ +Pod::Spec.new do |s| + s.name = 'MSNavigationPaneViewController' + s.version = '0.0.1' + s.license = 'MIT' + s.platform = :ios, '5.0' + + s.summary = 'Draggable navigation pane view controller for iPhone. Similar to the Path/Facebook navigation paradigm.' + s.homepage = 'https://github.com/monospacecollective/MSNavigationPaneViewController' + s.author = { 'Eric Horacek' => 'eric@monospacecollective.com' } + s.source = { :git => 'https://github.com/monospacecollective/MSNavigationPaneViewController.git', :tag => s.version.to_s } + + s.source_files = 'MSNavigationPaneViewController/*.{h,m}' + + s.requires_arc = true + s.frameworks = 'QuartzCore' +end From 13c79806942e11ade91118e2cebc257891539933 Mon Sep 17 00:00:00 2001 From: Christoph Jerolimov Date: Fri, 23 Nov 2012 08:49:35 +0100 Subject: [PATCH 132/148] [Update] Apache Cordova is leaving the incubator state. Update repo url. --- Cordova/1.0.0/Cordova.podspec | 2 +- Cordova/1.1.0/Cordova.podspec | 2 +- Cordova/1.2.0/Cordova.podspec | 2 +- Cordova/1.3.0/Cordova.podspec | 2 +- Cordova/1.4.0/Cordova.podspec | 2 +- Cordova/1.4.1/Cordova.podspec | 2 +- Cordova/1.5.0/Cordova.podspec | 2 +- Cordova/1.6.0/Cordova.podspec | 2 +- Cordova/1.6.1/Cordova.podspec | 2 +- Cordova/1.7.0/Cordova.podspec | 2 +- Cordova/1.8.0/Cordova.podspec | 2 +- Cordova/1.8.1/Cordova.podspec | 2 +- Cordova/1.9.0/Cordova.podspec | 2 +- Cordova/2.0.0/Cordova.podspec | 2 +- Cordova/2.1.0/Cordova.podspec | 2 +- Cordova/2.2.0/Cordova.podspec | 2 +- 16 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cordova/1.0.0/Cordova.podspec b/Cordova/1.0.0/Cordova.podspec index 4a9d0124..6c638080 100644 --- a/Cordova/1.0.0/Cordova.podspec +++ b/Cordova/1.0.0/Cordova.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |s| s.license = 'The "New" BSD License *or* the MIT License (2008)' -# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios.git", :tag => "1.0.0" } +# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/cordova-ios.git", :tag => "1.0.0" } s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "1.0.0" } s.source_files = 'PhoneGapLib/Classes/*.{h,m}', 'PhoneGapLib/Classes/JSON/*.{h,m}' s.resources = 'PhoneGapLib/javascripts/core/*.js', 'PhoneGapLib/VERSION' diff --git a/Cordova/1.1.0/Cordova.podspec b/Cordova/1.1.0/Cordova.podspec index 36e4f58c..2c1eae4f 100644 --- a/Cordova/1.1.0/Cordova.podspec +++ b/Cordova/1.1.0/Cordova.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |s| s.license = 'The "New" BSD License *or* the MIT License (2008)' -# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios.git", :tag => "1.1.0" } +# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/cordova-ios.git", :tag => "1.1.0" } s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "1.1.0" } s.source_files = 'PhoneGapLib/Classes/*.{h,m}', 'PhoneGapLib/Classes/JSON/*.{h,m}' s.resources = 'PhoneGapLib/javascripts/core/*.js', 'PhoneGapLib/VERSION' diff --git a/Cordova/1.2.0/Cordova.podspec b/Cordova/1.2.0/Cordova.podspec index f8382796..6864607e 100644 --- a/Cordova/1.2.0/Cordova.podspec +++ b/Cordova/1.2.0/Cordova.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |s| s.license = 'The "New" BSD License *or* the MIT License (2008)' -# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios.git", :tag => "1.2.0" } +# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/cordova-ios.git", :tag => "1.2.0" } s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "1.2.0" } s.source_files = 'PhoneGapLib/Classes/*.{h,m}' s.resources = 'PhoneGapLib/javascripts/core/*.js', 'PhoneGapLib/VERSION' diff --git a/Cordova/1.3.0/Cordova.podspec b/Cordova/1.3.0/Cordova.podspec index a959a28f..ceaa20eb 100644 --- a/Cordova/1.3.0/Cordova.podspec +++ b/Cordova/1.3.0/Cordova.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |s| s.license = 'The "New" BSD License *or* the MIT License (2008)' -# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios.git", :tag => "1.3.0" } +# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/cordova-ios.git", :tag => "1.3.0" } s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "1.3.0" } s.source_files = 'PhoneGapLib/Classes/*.{h,m}' s.resources = 'PhoneGapLib/javascripts/core/*.js', 'PhoneGapLib/VERSION' diff --git a/Cordova/1.4.0/Cordova.podspec b/Cordova/1.4.0/Cordova.podspec index 2fe5a241..f1cca669 100644 --- a/Cordova/1.4.0/Cordova.podspec +++ b/Cordova/1.4.0/Cordova.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |s| s.license = 'The "New" BSD License *or* the MIT License (2008)' -# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios.git", :tag => "1.4.0" } +# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/cordova-ios.git", :tag => "1.4.0" } s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "1.4.0" } s.source_files = 'PhoneGapLib/Classes/*.{h,m}' s.resources = 'PhoneGapLib/javascripts/core/*.js', 'PhoneGapLib/VERSION' diff --git a/Cordova/1.4.1/Cordova.podspec b/Cordova/1.4.1/Cordova.podspec index ae8859c2..cac44b18 100644 --- a/Cordova/1.4.1/Cordova.podspec +++ b/Cordova/1.4.1/Cordova.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |s| s.license = 'The "New" BSD License *or* the MIT License (2008)' -# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios.git", :tag => "1.4.1" } +# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/cordova-ios.git", :tag => "1.4.1" } s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "1.4.1" } s.source_files = 'PhoneGapLib/Classes/*.{h,m}' s.resources = 'PhoneGapLib/javascripts/core/*.js', 'PhoneGapLib/VERSION' diff --git a/Cordova/1.5.0/Cordova.podspec b/Cordova/1.5.0/Cordova.podspec index b66a1629..699cabf2 100644 --- a/Cordova/1.5.0/Cordova.podspec +++ b/Cordova/1.5.0/Cordova.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |s| s.license = 'Apache License, Version 2.0' -# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios.git", :tag => "1.5.0" } +# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/cordova-ios.git", :tag => "1.5.0" } s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "1.5.0" } s.source_files = 'CordovaLib/Classes/*.{h,m}' s.resources = 'CordovaLib/javascripts/core/*.js', 'CordovaLib/VERSION' diff --git a/Cordova/1.6.0/Cordova.podspec b/Cordova/1.6.0/Cordova.podspec index d76ab174..5b5e428f 100644 --- a/Cordova/1.6.0/Cordova.podspec +++ b/Cordova/1.6.0/Cordova.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |s| s.license = 'Apache License, Version 2.0' -# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios.git", :tag => "1.6.0" } +# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/cordova-ios.git", :tag => "1.6.0" } s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "1.6.0" } s.source_files = 'CordovaLib/Classes/*.{h,m}' s.resources = 'CordovaLib/javascript/*.js', 'CordovaLib/VERSION' diff --git a/Cordova/1.6.1/Cordova.podspec b/Cordova/1.6.1/Cordova.podspec index c2d36c31..cb884466 100644 --- a/Cordova/1.6.1/Cordova.podspec +++ b/Cordova/1.6.1/Cordova.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |s| s.license = 'Apache License, Version 2.0' -# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios.git", :tag => "1.6.1" } +# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/cordova-ios.git", :tag => "1.6.1" } s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "1.6.1" } s.source_files = 'CordovaLib/Classes/*.{h,m}' s.resources = 'CordovaLib/javascript/*.js', 'CordovaLib/VERSION' diff --git a/Cordova/1.7.0/Cordova.podspec b/Cordova/1.7.0/Cordova.podspec index 693f706c..e838a03c 100644 --- a/Cordova/1.7.0/Cordova.podspec +++ b/Cordova/1.7.0/Cordova.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |s| s.license = 'Apache License, Version 2.0' -# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios.git", :tag => "1.7.0" } +# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/cordova-ios.git", :tag => "1.7.0" } s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "1.7.0" } s.source_files = 'CordovaLib/Classes/*.{h,m}' s.resources = 'CordovaLib/javascript/*.js', 'CordovaLib/VERSION' diff --git a/Cordova/1.8.0/Cordova.podspec b/Cordova/1.8.0/Cordova.podspec index 9f8808f5..52cf5da6 100644 --- a/Cordova/1.8.0/Cordova.podspec +++ b/Cordova/1.8.0/Cordova.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |s| s.license = 'Apache License, Version 2.0' -# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios.git", :tag => "1.8.0" } +# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/cordova-ios.git", :tag => "1.8.0" } s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "1.8.0" } s.source_files = 'CordovaLib/Classes/*.{h,m}' s.resources = 'CordovaLib/javascript/*.js', 'CordovaLib/VERSION' diff --git a/Cordova/1.8.1/Cordova.podspec b/Cordova/1.8.1/Cordova.podspec index 50483c93..13aa6902 100644 --- a/Cordova/1.8.1/Cordova.podspec +++ b/Cordova/1.8.1/Cordova.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |s| s.license = 'Apache License, Version 2.0' -# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios.git", :tag => "1.8.1" } +# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/cordova-ios.git", :tag => "1.8.1" } s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "1.8.1" } s.source_files = 'CordovaLib/Classes/*.{h,m}' s.resources = 'CordovaLib/javascript/*.js', 'CordovaLib/VERSION' diff --git a/Cordova/1.9.0/Cordova.podspec b/Cordova/1.9.0/Cordova.podspec index 35fc61cf..0955099e 100644 --- a/Cordova/1.9.0/Cordova.podspec +++ b/Cordova/1.9.0/Cordova.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |s| s.license = 'Apache License, Version 2.0' -# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios.git", :tag => "1.9.0" } +# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/cordova-ios.git", :tag => "1.9.0" } s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "1.9.0" } s.source_files = 'CordovaLib/Classes/*.{h,m}' s.resources = 'CordovaLib/javascript/*.js', 'CordovaLib/VERSION' diff --git a/Cordova/2.0.0/Cordova.podspec b/Cordova/2.0.0/Cordova.podspec index b55267e9..95ac2743 100644 --- a/Cordova/2.0.0/Cordova.podspec +++ b/Cordova/2.0.0/Cordova.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |s| s.license = 'Apache License, Version 2.0' -# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios.git", :tag => "2.0.0" } +# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/cordova-ios.git", :tag => "2.0.0" } s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "2.0.0" } s.source_files = 'CordovaLib/Classes/*.{h,m}' s.resources = 'CordovaLib/javascript/*.js', 'CordovaLib/VERSION' diff --git a/Cordova/2.1.0/Cordova.podspec b/Cordova/2.1.0/Cordova.podspec index 43731171..f5008a20 100644 --- a/Cordova/2.1.0/Cordova.podspec +++ b/Cordova/2.1.0/Cordova.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |s| s.license = 'Apache License, Version 2.0' - s.source = { :git => "http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios.git", :tag => "2.1.0" } + s.source = { :git => "http://git-wip-us.apache.org/repos/asf/cordova-ios.git", :tag => "2.1.0" } # s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "2.1.0" } s.source_files = 'CordovaLib/Classes/*.{h,m}' s.resources = 'CordovaLib/javascript/*.js', 'CordovaLib/VERSION' diff --git a/Cordova/2.2.0/Cordova.podspec b/Cordova/2.2.0/Cordova.podspec index ba1c12ca..d6c5fd67 100644 --- a/Cordova/2.2.0/Cordova.podspec +++ b/Cordova/2.2.0/Cordova.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |s| s.license = 'Apache License, Version 2.0' - s.source = { :git => "http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios.git", :tag => "2.2.0" } + s.source = { :git => "http://git-wip-us.apache.org/repos/asf/cordova-ios.git", :tag => "2.2.0" } # s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "2.2.0" } s.source_files = 'CordovaLib/Classes/*.{h,m}' s.resources = 'bin/templates/project/www/cordova-2.2.0.js', 'CordovaLib/VERSION' From fb9d66d9ed7928f9cfd4bb46820f92bd327760fc Mon Sep 17 00:00:00 2001 From: Daniel Kuhnke Date: Fri, 23 Nov 2012 11:08:38 +0100 Subject: [PATCH 133/148] added new versions of UrbanAirship-iOS-SDK.podspec --- .../1.3.4/UrbanAirship-iOS-SDK.podspec | 24 +++++++++++++++++++ .../1.3.5/UrbanAirship-iOS-SDK.podspec | 24 +++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 UrbanAirship-iOS-SDK/1.3.4/UrbanAirship-iOS-SDK.podspec create mode 100644 UrbanAirship-iOS-SDK/1.3.5/UrbanAirship-iOS-SDK.podspec diff --git a/UrbanAirship-iOS-SDK/1.3.4/UrbanAirship-iOS-SDK.podspec b/UrbanAirship-iOS-SDK/1.3.4/UrbanAirship-iOS-SDK.podspec new file mode 100644 index 00000000..4592c194 --- /dev/null +++ b/UrbanAirship-iOS-SDK/1.3.4/UrbanAirship-iOS-SDK.podspec @@ -0,0 +1,24 @@ +Pod::Spec.new do |s| + s.name = 'UrbanAirship-iOS-SDK' + s.version = '1.3.4' + s.license = 'BSD' + s.platform = :ios + + s.summary = 'A simple way to integrate Urban Airship services into your iOS applications.' + s.homepage = 'https://github.com/urbanairship/ios-library' + s.author = { 'Urban Airship' => 'support@urbanairship.com' } + s.source = { :git => 'https://github.com/urbanairship/ios-library.git', :tag => 'v1.3.4' } + + # Airship ships both UA-prefixed ASI and SBJson, as well as un-prefixed + # versions that are no longer used in the .xcodeproj. + files = FileList['Airship/**/*.{h,m,c}'] + files.exclude(/\/asi-http-request\//) + files.exclude(/\/json-framework\//) + files.exclude(/\/google-toolbox-for-mac\//) + s.source_files = files + + s.libraries = 'z', 'sqlite3.0' + s.frameworks = 'CFNetwork', 'CoreGraphics', 'Foundation', 'MobileCoreServices', + 'Security', 'SystemConfiguration', 'UIKit', 'CoreTelephony', + 'StoreKit', 'CoreLocation', 'MapKit' +end \ No newline at end of file diff --git a/UrbanAirship-iOS-SDK/1.3.5/UrbanAirship-iOS-SDK.podspec b/UrbanAirship-iOS-SDK/1.3.5/UrbanAirship-iOS-SDK.podspec new file mode 100644 index 00000000..f44438e9 --- /dev/null +++ b/UrbanAirship-iOS-SDK/1.3.5/UrbanAirship-iOS-SDK.podspec @@ -0,0 +1,24 @@ +Pod::Spec.new do |s| + s.name = 'UrbanAirship-iOS-SDK' + s.version = '1.3.5' + s.license = 'BSD' + s.platform = :ios + + s.summary = 'A simple way to integrate Urban Airship services into your iOS applications.' + s.homepage = 'https://github.com/urbanairship/ios-library' + s.author = { 'Urban Airship' => 'support@urbanairship.com' } + s.source = { :git => 'https://github.com/urbanairship/ios-library.git', :tag => 'v1.3.5' } + + # Airship ships both UA-prefixed ASI and SBJson, as well as un-prefixed + # versions that are no longer used in the .xcodeproj. + files = FileList['Airship/**/*.{h,m,c}'] + files.exclude(/\/asi-http-request\//) + files.exclude(/\/json-framework\//) + files.exclude(/\/google-toolbox-for-mac\//) + s.source_files = files + + s.libraries = 'z', 'sqlite3.0' + s.frameworks = 'CFNetwork', 'CoreGraphics', 'Foundation', 'MobileCoreServices', + 'Security', 'SystemConfiguration', 'UIKit', 'CoreTelephony', + 'StoreKit', 'CoreLocation', 'MapKit' +end \ No newline at end of file From ecb5d2af9e8f1ad85dbf14b913c88278bd7ea97e Mon Sep 17 00:00:00 2001 From: Daniel Kuhnke Date: Fri, 23 Nov 2012 11:48:57 +0100 Subject: [PATCH 134/148] prevent duplicate files and make use of subspecs --- UrbanAirship-iOS-SDK/1.3.4/UrbanAirship-iOS-SDK.podspec | 7 +++++++ UrbanAirship-iOS-SDK/1.3.5/UrbanAirship-iOS-SDK.podspec | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/UrbanAirship-iOS-SDK/1.3.4/UrbanAirship-iOS-SDK.podspec b/UrbanAirship-iOS-SDK/1.3.4/UrbanAirship-iOS-SDK.podspec index 4592c194..15626b1e 100644 --- a/UrbanAirship-iOS-SDK/1.3.4/UrbanAirship-iOS-SDK.podspec +++ b/UrbanAirship-iOS-SDK/1.3.4/UrbanAirship-iOS-SDK.podspec @@ -15,7 +15,14 @@ Pod::Spec.new do |s| files.exclude(/\/asi-http-request\//) files.exclude(/\/json-framework\//) files.exclude(/\/google-toolbox-for-mac\//) + files.exclude(/\/ZipFile-OC\//) + files.exclude(/\/Reachability.*/) s.source_files = files + + s.dependency 'ZipArchive', '1.01h' + s.dependency 'Reachability', '3.1.0' + s.dependency 'ASIHTTPRequest', '1.8.1' + s.dependency 'SBJson', '3.1.1' s.libraries = 'z', 'sqlite3.0' s.frameworks = 'CFNetwork', 'CoreGraphics', 'Foundation', 'MobileCoreServices', diff --git a/UrbanAirship-iOS-SDK/1.3.5/UrbanAirship-iOS-SDK.podspec b/UrbanAirship-iOS-SDK/1.3.5/UrbanAirship-iOS-SDK.podspec index f44438e9..e46915a5 100644 --- a/UrbanAirship-iOS-SDK/1.3.5/UrbanAirship-iOS-SDK.podspec +++ b/UrbanAirship-iOS-SDK/1.3.5/UrbanAirship-iOS-SDK.podspec @@ -15,7 +15,14 @@ Pod::Spec.new do |s| files.exclude(/\/asi-http-request\//) files.exclude(/\/json-framework\//) files.exclude(/\/google-toolbox-for-mac\//) + files.exclude(/\/ZipFile-OC\//) + files.exclude(/\/Reachability.*/) s.source_files = files + + s.dependency 'ZipArchive', '1.01h' + s.dependency 'Reachability', '3.1.0' + s.dependency 'ASIHTTPRequest', '1.8.1' + s.dependency 'SBJson', '3.1.1' s.libraries = 'z', 'sqlite3.0' s.frameworks = 'CFNetwork', 'CoreGraphics', 'Foundation', 'MobileCoreServices', From 05d9f2a8f76768aa61e6ac3252d2f16bf570cd98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Chad=20St=C3=BCmpges?= Date: Fri, 23 Nov 2012 12:13:18 +0100 Subject: [PATCH 135/148] [Add] Flash2Cocos2D (0.5) --- Flash2Cocos2D/0.5/Flash2Cocos2D.podspec | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Flash2Cocos2D/0.5/Flash2Cocos2D.podspec diff --git a/Flash2Cocos2D/0.5/Flash2Cocos2D.podspec b/Flash2Cocos2D/0.5/Flash2Cocos2D.podspec new file mode 100644 index 00000000..c8d27e2f --- /dev/null +++ b/Flash2Cocos2D/0.5/Flash2Cocos2D.podspec @@ -0,0 +1,15 @@ +Pod::Spec.new do |s| + s.name = "Flash2Cocos2D" + s.version = "0.5" + s.summary = "Library to import animations made in Flash to Cocos2D." + s.description = "A modified grapefrukt-export creates xml descriptions of timeline animations. Flash2Cocos2D imports that xml and recreates what were timeline animations." + s.homepage = "https://github.com/percentjuice/Flash2Cocos2D" + s.license = 'MIT' + s.author = 'cstuempges' + s.source = { :git => "https://github.com/percentjuice/Flash2Cocos2D.git", :tag => "v0.5" } + s.platform = :ios, '5.0' + s.source_files = 'FlashToCocosARC', 'FlashToCocosARC/*.{h,m}' + s.requires_arc = true + s.dependency 'cocos2d', '2.0' + s.dependency 'TBXML', '1.5' +end From f8e7030d089a5be6dbaa1691548b4321c30f4607 Mon Sep 17 00:00:00 2001 From: Fabio Pelosin Date: Fri, 23 Nov 2012 14:41:02 +0100 Subject: [PATCH 136/148] [Bundler] Add Gemfile.lock to repo, for Travis issues. --- .gitignore | 1 - Gemfile.lock | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+), 1 deletion(-) create mode 100644 Gemfile.lock diff --git a/.gitignore b/.gitignore index 52dc1c55..196a95fa 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,4 @@ .*.sw? .DS_Store .rbenv-version -Gemfile.lock .idea diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 00000000..bb914fac --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,46 @@ +GEM + remote: http://rubygems.org/ + specs: + activesupport (3.2.9) + i18n (~> 0.6) + multi_json (~> 1.0) + addressable (2.3.2) + cocoapods (0.16.0) + activesupport (~> 3.2.6) + colored (~> 1.2) + escape (~> 0.0.4) + faraday (~> 0.8.1) + json (~> 1.7.3) + octokit (~> 1.7) + open4 (~> 1.3.0) + rake (~> 0.9.4) + xcodeproj (~> 0.4.0) + colored (1.2) + escape (0.0.4) + faraday (0.8.4) + multipart-post (~> 1.1) + faraday_middleware (0.9.0) + faraday (>= 0.7.4, < 0.9) + hashie (1.2.0) + i18n (0.6.1) + json (1.7.5) + multi_json (1.3.7) + multipart-post (1.1.5) + octokit (1.18.0) + addressable (~> 2.2) + faraday (~> 0.8) + faraday_middleware (~> 0.8) + hashie (~> 1.2) + multi_json (~> 1.3) + open4 (1.3.0) + rake (0.9.5) + xcodeproj (0.4.0) + activesupport (~> 3.2.6) + colored (~> 1.2) + +PLATFORMS + ruby + +DEPENDENCIES + cocoapods (>= 0.16.0) + rake From 815b29642726aaff64d9a9a0bb2a9c3666cc9c93 Mon Sep 17 00:00:00 2001 From: Daniel Kuhnke Date: Fri, 23 Nov 2012 15:27:35 +0100 Subject: [PATCH 137/148] removed 1.3.4 due to build issues --- .../1.3.4/UrbanAirship-iOS-SDK.podspec | 31 ------------------- 1 file changed, 31 deletions(-) delete mode 100644 UrbanAirship-iOS-SDK/1.3.4/UrbanAirship-iOS-SDK.podspec diff --git a/UrbanAirship-iOS-SDK/1.3.4/UrbanAirship-iOS-SDK.podspec b/UrbanAirship-iOS-SDK/1.3.4/UrbanAirship-iOS-SDK.podspec deleted file mode 100644 index 15626b1e..00000000 --- a/UrbanAirship-iOS-SDK/1.3.4/UrbanAirship-iOS-SDK.podspec +++ /dev/null @@ -1,31 +0,0 @@ -Pod::Spec.new do |s| - s.name = 'UrbanAirship-iOS-SDK' - s.version = '1.3.4' - s.license = 'BSD' - s.platform = :ios - - s.summary = 'A simple way to integrate Urban Airship services into your iOS applications.' - s.homepage = 'https://github.com/urbanairship/ios-library' - s.author = { 'Urban Airship' => 'support@urbanairship.com' } - s.source = { :git => 'https://github.com/urbanairship/ios-library.git', :tag => 'v1.3.4' } - - # Airship ships both UA-prefixed ASI and SBJson, as well as un-prefixed - # versions that are no longer used in the .xcodeproj. - files = FileList['Airship/**/*.{h,m,c}'] - files.exclude(/\/asi-http-request\//) - files.exclude(/\/json-framework\//) - files.exclude(/\/google-toolbox-for-mac\//) - files.exclude(/\/ZipFile-OC\//) - files.exclude(/\/Reachability.*/) - s.source_files = files - - s.dependency 'ZipArchive', '1.01h' - s.dependency 'Reachability', '3.1.0' - s.dependency 'ASIHTTPRequest', '1.8.1' - s.dependency 'SBJson', '3.1.1' - - s.libraries = 'z', 'sqlite3.0' - s.frameworks = 'CFNetwork', 'CoreGraphics', 'Foundation', 'MobileCoreServices', - 'Security', 'SystemConfiguration', 'UIKit', 'CoreTelephony', - 'StoreKit', 'CoreLocation', 'MapKit' -end \ No newline at end of file From 340692888138ba1af76c2169385d9b6d86efa45c Mon Sep 17 00:00:00 2001 From: Mark Adams Date: Fri, 23 Nov 2012 10:40:36 -0800 Subject: [PATCH 138/148] Add BotKit 0.1 --- BotKit/0.1/BotKit.podspec | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 BotKit/0.1/BotKit.podspec diff --git a/BotKit/0.1/BotKit.podspec b/BotKit/0.1/BotKit.podspec new file mode 100644 index 00000000..b1596230 --- /dev/null +++ b/BotKit/0.1/BotKit.podspec @@ -0,0 +1,24 @@ +Pod::Spec.new do |s| + s.name = "BotKit" + s.version = "0.1" + s.summary = "BotKit is a Cocoa Touch static library for use in iOS projects." + s.homepage = "https://github.com/thoughtbot/BotKit" + + s.license = 'MIT' + s.authors = { "Mark Adams" => "mark@thoughtbot.com", "Gordon Fontenot" => "gordon@thoughtbot.com", "Diana Zmuda" => "diana@apprentice.io" } + s.source = { + :git => "https://github.com/thoughtbot/BotKit.git", + :tag => "0.1" + } + + s.platform = :ios, '5.0' + s.source_files = 'BotKit' + s.requires_arc = true + s.framework = 'CoreData' + + s.prefix_header_contents = <<-EOS +#import + #import +EOS + +end From b910cd323a9aff87f9c05d525d77df62385ad89b Mon Sep 17 00:00:00 2001 From: JP Simard Date: Fri, 23 Nov 2012 15:30:01 -0500 Subject: [PATCH 139/148] Added UIColor-CrossFade --- UIColor-CrossFade/0.0.1/UIColor-CrossFade.podspec | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 UIColor-CrossFade/0.0.1/UIColor-CrossFade.podspec diff --git a/UIColor-CrossFade/0.0.1/UIColor-CrossFade.podspec b/UIColor-CrossFade/0.0.1/UIColor-CrossFade.podspec new file mode 100644 index 00000000..51f69fe1 --- /dev/null +++ b/UIColor-CrossFade/0.0.1/UIColor-CrossFade.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = 'UIColor-CrossFade' + s.version = '0.0.1' + s.platform = :ios + s.license = 'MIT' + s.summary = 'UIColor category to cross fade between two UIColors at a specific ratio.' + s.homepage = 'https://github.com/cbpowell/UIColor-CrossFade' + s.author = { 'Charles Powell' => 'https://github.com/cbpowell' } + s.source = { :git => 'https://github.com/cbpowell/UIColor-CrossFade.git', :commit => '5b72c40925575e8bebf0d6fe1e82dc8dc1b88bf5' } + s.source_files = '*.{h,m}' + s.requires_arc = true +end From f301bb4872e07781a00ac66cb103552a4f3aa15f Mon Sep 17 00:00:00 2001 From: Alexandre Gerlic Date: Sat, 24 Nov 2012 03:15:05 +0100 Subject: [PATCH 140/148] [Update] OHAttributedLabel (3.2.1) --- OHAttributedLabel/3.2.1/OHAttributedLabel.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 OHAttributedLabel/3.2.1/OHAttributedLabel.podspec diff --git a/OHAttributedLabel/3.2.1/OHAttributedLabel.podspec b/OHAttributedLabel/3.2.1/OHAttributedLabel.podspec new file mode 100644 index 00000000..51e78be7 --- /dev/null +++ b/OHAttributedLabel/3.2.1/OHAttributedLabel.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = 'OHAttributedLabel' + s.version = '3.2.1' + s.license = {:type => 'MIT', :file => 'OHAttributedLabel/LICENSE'} + s.summary = 'UILabel that supports NSAttributedString.' + s.homepage = 'https://github.com/AliSoftware/OHAttributedLabel' + s.author = { 'AliSoftware' => 'olivier.halligon+ae@gmail.com' } + s.source = { :git => 'https://github.com/AliSoftware/OHAttributedLabel.git', :tag => '3.2.1' } + s.description = 'This class allows you to use a UILabel with NSAttributedStrings, in order to display styled text with mixed style (mixed fonts, color, size, ...) in a unique label.' + s.platform = :ios + s.source_files = 'OHAttributedLabel/**/*.{h,m}' + s.framework = 'CoreText' +end From a2834ea83a261b27e110b03c9b148c39fc841315 Mon Sep 17 00:00:00 2001 From: Douglas Campos Date: Sat, 24 Nov 2012 00:24:56 -0200 Subject: [PATCH 141/148] adding lua lib support --- lua/5.2.1/lua.podspec | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 lua/5.2.1/lua.podspec diff --git a/lua/5.2.1/lua.podspec b/lua/5.2.1/lua.podspec new file mode 100644 index 00000000..99b550bc --- /dev/null +++ b/lua/5.2.1/lua.podspec @@ -0,0 +1,21 @@ +Pod::Spec.new do |s| + s.name = "lua" + s.version = "5.2.1" + s.summary = "the lua language (for embedding)." + s.homepage = "https://github.com/qmx/lua" + s.license = { :type => "MIT", + :text => <<-LICENSE +Copyright © 1994–2012 Lua.org, PUC-Rio. +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + LICENSE + } + s.author = { "The Lua team" => "team@lua.org" } + s.source = { :git => "https://github.com/qmx/lua.git", :tag => "5.2.1" } + s.ios.deployment_target = '4.0' + s.osx.deployment_target = '10.6' + s.source_files = 'src/' +end From 1d4a7c21cb3065733570187a5ae329122357de1b Mon Sep 17 00:00:00 2001 From: Marin Usalj Date: Fri, 23 Nov 2012 19:37:46 -0800 Subject: [PATCH 142/148] [Update] ObjectiveSugar (0.3) --- ObjectiveSugar/0.3/ObjectiveSugar.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 ObjectiveSugar/0.3/ObjectiveSugar.podspec diff --git a/ObjectiveSugar/0.3/ObjectiveSugar.podspec b/ObjectiveSugar/0.3/ObjectiveSugar.podspec new file mode 100644 index 00000000..5b748f0d --- /dev/null +++ b/ObjectiveSugar/0.3/ObjectiveSugar.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = "ObjectiveSugar" + s.version = "0.3" + s.summary = "ObjectiveC additions for humans. Ruby style." + s.homepage = "https://github.com/mneorr/ObjectiveSugar" + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { "Marin Usalj" => "mneorr@gmail.com" } + s.source = { :git => "https://github.com/mneorr/ObjectiveSugar.git", :tag => '0.3' } + + s.ios.deployment_target = '5.0' + s.osx.deployment_target = '10.7' + + s.source_files = 'src/**/*.{h,m}' +end From 21d877338336d08737c13e787239653956108f85 Mon Sep 17 00:00:00 2001 From: Simon Booth Date: Sat, 24 Nov 2012 12:55:50 +0000 Subject: [PATCH 143/148] [Update] WorkflowSchema (0.3.0) --- WorkflowSchema/0.3.0/WorkflowSchema.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 WorkflowSchema/0.3.0/WorkflowSchema.podspec diff --git a/WorkflowSchema/0.3.0/WorkflowSchema.podspec b/WorkflowSchema/0.3.0/WorkflowSchema.podspec new file mode 100644 index 00000000..bc11fe6b --- /dev/null +++ b/WorkflowSchema/0.3.0/WorkflowSchema.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = "WorkflowSchema" + s.version = "0.3.0" + s.summary = "An iOS framework which allows you to define app workflows in XML." + s.homepage = "https://github.com/CRedit360/WorkflowSchema" + s.license = 'MIT' + s.author = { "Simon Booth" => "simon.booth@credit360.com" } + s.source = { :git => "https://github.com/CRedit360/WorkflowSchema.git", :tag => "0.3.0" } + s.platform = :ios, '5.0' + s.source_files = 'WorkflowSchema/Code' + s.resources = 'WorkflowSchema/*.lproj/WorkflowSchema.strings' + s.requires_arc = true +end From b49a6ae470ec39bc7beb5ac8a00e7f8c0cc5132d Mon Sep 17 00:00:00 2001 From: Andy Molloy Date: Sat, 24 Nov 2012 08:19:45 -0500 Subject: [PATCH 144/148] ColorPopover requires ARC and iOS 5+ --- ColorPopover/0.0.1/ColorPopover.podspec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ColorPopover/0.0.1/ColorPopover.podspec b/ColorPopover/0.0.1/ColorPopover.podspec index 734cc367..bc172070 100644 --- a/ColorPopover/0.0.1/ColorPopover.podspec +++ b/ColorPopover/0.0.1/ColorPopover.podspec @@ -1,13 +1,14 @@ Pod::Spec.new do |s| s.name = 'ColorPopover' s.version = '0.0.1' - s.platform = :ios + s.platform = :ios, '5.0' s.dependency 'WEPopover', '~> 0.0.1' s.homepage = 'https://github.com/gazolla/ColorPopover' s.summary = 'ColorPopover is a simple component for iOS that provides a "Popover" color picker.' s.author = { 'Sebastiao Gazolla Jr' => 'gz@gazapps.com' } s.source = { :git => 'https://github.com/gazolla/ColorPopover.git', :commit => '545fe3fe0ee84b11a9c60f6caae97b268156c9bd' } s.source_files = 'Colors/ColorPopover/*.{h,m}' + s.requires_arc = true s.license = { :type => 'MIT', :text => <<-LICENSE From ddba1b096a5aa47e64e2c2924c87870f78abefa6 Mon Sep 17 00:00:00 2001 From: Fabio Pelosin Date: Sat, 24 Nov 2012 15:00:25 +0100 Subject: [PATCH 145/148] Update lua/5.2.1/lua.podspec --- lua/5.2.1/lua.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/5.2.1/lua.podspec b/lua/5.2.1/lua.podspec index 99b550bc..fe4ba431 100644 --- a/lua/5.2.1/lua.podspec +++ b/lua/5.2.1/lua.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "lua" s.version = "5.2.1" - s.summary = "the lua language (for embedding)." + s.summary = "The lua language (for embedding)." s.homepage = "https://github.com/qmx/lua" s.license = { :type => "MIT", :text => <<-LICENSE From 15f723ae51b05947ff24aa600d4abced33827c32 Mon Sep 17 00:00:00 2001 From: Chih-Wei Lee Date: Sat, 24 Nov 2012 23:37:50 +0800 Subject: [PATCH 146/148] [Add] WeChatSDK (0.0.1) --- WeChatSDK/0.0.1/WeChatSDK.podspec | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 WeChatSDK/0.0.1/WeChatSDK.podspec diff --git a/WeChatSDK/0.0.1/WeChatSDK.podspec b/WeChatSDK/0.0.1/WeChatSDK.podspec new file mode 100644 index 00000000..fb9c8890 --- /dev/null +++ b/WeChatSDK/0.0.1/WeChatSDK.podspec @@ -0,0 +1,19 @@ +Pod::Spec.new do |s| + s.name = "WeChatSDK" + s.version = "0.0.1" + s.summary = "The Official iOS SDK of WeChat from Tencent." + s.homepage = "http://dev.wechatapp.com/" + s.license = { + :type => 'Copyright', + :text => <<-LICENSE + Copyright (c) 2012 Tencent. All rights reserved. + LICENSE + } + s.author = { "Tencent" => "developer@wechatapp.com" } + s.source = { :http => "http://dev.wechatapp.com/download/sdk/WeChat_SDK_iOS_en.zip" } + s.platform = :ios + s.source_files = 'WeChat_SDK_iOSen/WXApiObject.h', 'WeChat_SDK_iOSen/WXApi.h' + s.preserve_paths = 'WeChat_SDK_iOSen/libWeChatSDK.a' + s.library = 'WeChatSDK' + s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '"$(PODS_ROOT)/WeChatSDK/WeChat_SDK_iOSen"' } +end From 3a6f4fcc3f04e457d4bed79df5cd9c82ef3f4d7d Mon Sep 17 00:00:00 2001 From: Blake Watters Date: Sat, 24 Nov 2012 12:10:33 -0500 Subject: [PATCH 147/148] Add OCHamcrest 1.9 Podspec --- OCHamcrest/1.9/OCHamcrest.podspec | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 OCHamcrest/1.9/OCHamcrest.podspec diff --git a/OCHamcrest/1.9/OCHamcrest.podspec b/OCHamcrest/1.9/OCHamcrest.podspec new file mode 100644 index 00000000..b305668b --- /dev/null +++ b/OCHamcrest/1.9/OCHamcrest.podspec @@ -0,0 +1,23 @@ +Pod::Spec.new do |s| + s.name = 'OCHamcrest' + s.version = '1.9' + s.license = 'BSD' + s.summary = 'Hamcrest for Objective-C: Powerful, combinable, extensible matchers for verification' + s.homepage = 'https://github.com/hamcrest/OCHamcrest' + s.author = { 'Jon Reid' => 'jon@qualitycoding.org' } + + s.source = { :git => 'https://github.com/hamcrest/OCHamcrest.git', :tag => 'V1.9' } + + s.description = %{ + OCHamcrest is: + * a library of "matcher" objects that let you declare rules for whether a + given object matches the criteria or not; + * a framework for writing your own matchers. + Matchers are useful for a variety of purposes, such as UI validation. But + they're most commonly used for writing unit tests that are expressive and + flexible. + } + + s.source_files = 'Source/OCHamcrest.h', 'Source/Core/**/*.{h,m}', 'Source/Library/**/*.{h,m}' + +end From dfac288b89fe06237595cd2269a33733cb5cc9cb Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Sat, 24 Nov 2012 15:30:00 -0200 Subject: [PATCH 148/148] Adding AeroGear OTP --- .../1.0.0.M1.20121124/AeroGear-OTP.podspec | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 AeroGear-OTP/1.0.0.M1.20121124/AeroGear-OTP.podspec diff --git a/AeroGear-OTP/1.0.0.M1.20121124/AeroGear-OTP.podspec b/AeroGear-OTP/1.0.0.M1.20121124/AeroGear-OTP.podspec new file mode 100644 index 00000000..1aa2814d --- /dev/null +++ b/AeroGear-OTP/1.0.0.M1.20121124/AeroGear-OTP.podspec @@ -0,0 +1,31 @@ +# +# JBoss, Home of Professional Open Source +# Copyright ${year}, Red Hat, Inc., and individual contributors +# by the @authors tag. See the copyright.txt in the distribution for a +# full listing of individual contributors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +Pod::Spec.new do |s| + s.name = "AeroGear-OTP" + s.version = "1.0.0.M1.20121124" + s.summary = "Provides an Objective-C One Time Password API." + s.homepage = "https://github.com/aerogear/aerogear-otp-ios" + s.license = 'Apache License, Version 2.0' + s.author = "Red Hat, Inc." + s.source = { :git => 'https://github.com/aerogear/aerogear-otp-ios.git', :tag => '1.0.0.M1.20121124' } + s.platform = :ios + s.source_files = 'aerogear-otp.ios/Classes/*.{h,m}' + s.public_header_files = 'aerogear-otp.ios/Classes/AeroGearOTP.h', 'aerogear-otp.ios/Classes/AGOtp.h', 'aerogear-otp.ios/Classes/AGTotp.h' + s.requires_arc = true +end