diff --git a/AFNetworking/0.5.1/AFNetworking.podspec b/AFNetworking/0.5.1/AFNetworking.podspec index f377d60b..8ad72fdb 100644 --- a/AFNetworking/0.5.1/AFNetworking.podspec +++ b/AFNetworking/0.5.1/AFNetworking.podspec @@ -1,16 +1,14 @@ -Pod::Spec.new do - name 'AFNetworking' - version '0.5.1' - summary 'A delightful iOS networking library with NSOperations and block-based callbacks' - homepage 'https://github.com/gowalla/AFNetworking' - author 'Gowalla' => 'live@gowalla.com' - source :git => 'https://github.com/gowalla/AFNetworking.git', - :tag => '0.5.1' +Pod::Spec.new do |s| + s.name = 'AFNetworking' + s.version = '0.5.1' + s.summary = 'A delightful iOS networking library with NSOperations and block-based callbacks' + s.homepage = 'https://github.com/gowalla/AFNetworking' + s.author = { 'Gowalla' => 'live@gowalla.com' } + s.source = { :git => 'https://github.com/gowalla/AFNetworking.git', :tag => '0.5.1' } - source_files 'AFNetworking' + s.source_files = 'AFNetworking' - xcconfig 'OTHER_LDFLAGS' => '-ObjC ' \ - '-all_load ' \ - '-l z' - dependency 'JSONKit' + s.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC -all_load -l z' } + + s.dependency 'JSONKit' end diff --git a/ASIHTTPRequest/1.8.1/ASIHTTPRequest.podspec b/ASIHTTPRequest/1.8.1/ASIHTTPRequest.podspec index 6f567e00..8ca1191d 100644 --- a/ASIHTTPRequest/1.8.1/ASIHTTPRequest.podspec +++ b/ASIHTTPRequest/1.8.1/ASIHTTPRequest.podspec @@ -1,14 +1,12 @@ -Pod::Spec.new do - name 'ASIHTTPRequest' - version '1.8.1' - summary 'Easy to use CFNetwork wrapper for HTTP requests, Objective-C, Mac OS X and iPhone' - homepage 'http://allseeing-i.com/ASIHTTPRequest' - author 'Ben Copsey' => 'ben@allseeing-i.com' - source :git => 'https://github.com/pokeb/asi-http-request.git', - #:commit => '404bbfe10c3c46824590f2231c4610c2e35f524d' - :tag => 'v1.8.1' +Pod::Spec.new do |s| + s.name = 'ASIHTTPRequest' + s.version = '1.8.1' + s.summary = 'Easy to use CFNetwork wrapper for HTTP requests, Objective-C, Mac OS X and iPhone' + s.homepage = 'http://allseeing-i.com/ASIHTTPRequest' + s.author = { 'Ben Copsey' => 'ben@allseeing-i.com' } + s.source = { :git => 'https://github.com/pokeb/asi-http-request.git', :tag => 'v1.8.1' } - description %{ + s.description = %{ ASIHTTPRequest is an easy to use wrapper around the CFNetwork API that makes some of the more tedious aspects of communicating with web servers easier. It is written in Objective-C and works in both Mac OS X and iPhone @@ -20,13 +18,13 @@ Pod::Spec.new do using multipart/form-data. } - source_files 'Classes' + s.source_files = 'Classes' # TODO actually I think one or some of these are for Reachability - xcconfig 'OTHER_LDFLAGS' => '-framework SystemConfiguration ' \ - '-framework CFNetwork ' \ - '-framework MobileCoreServices ' \ - '-l z.1' + s.xcconfig = { 'OTHER_LDFLAGS' => '-framework SystemConfiguration ' \ + '-framework CFNetwork ' \ + '-framework MobileCoreServices ' \ + '-l z.1' } dependency 'Reachability', '~> 2.0', '>= 2.0.4' end diff --git a/ASIHTTPRequest/1.8/ASIHTTPRequest.podspec b/ASIHTTPRequest/1.8/ASIHTTPRequest.podspec index ca5271d9..f7238c8a 100644 --- a/ASIHTTPRequest/1.8/ASIHTTPRequest.podspec +++ b/ASIHTTPRequest/1.8/ASIHTTPRequest.podspec @@ -1,14 +1,12 @@ -Pod::Spec.new do - name 'ASIHTTPRequest' - version '1.8' - summary 'Easy to use CFNetwork wrapper for HTTP requests, Objective-C, Mac OS X and iPhone' - homepage 'http://allseeing-i.com/ASIHTTPRequest' - author 'Ben Copsey' => 'ben@allseeing-i.com' - source :git => 'https://github.com/pokeb/asi-http-request.git', - #:commit => '63061ac428a3ea639f4c75b9857074208ff77389' - :tag => 'v1.8' +Pod::Spec.new do |s| + s.name = 'ASIHTTPRequest' + s.version = '1.8' + s.summary = 'Easy to use CFNetwork wrapper for HTTP requests, Objective-C, Mac OS X and iPhone' + s.homepage = 'http://allseeing-i.com/ASIHTTPRequest' + s.author = { 'Ben Copsey' => 'ben@allseeing-i.com' } + s.source = { :git => 'https://github.com/pokeb/asi-http-request.git', :tag => 'v1.8' } - description %{ + s.description = %{ ASIHTTPRequest is an easy to use wrapper around the CFNetwork API that makes some of the more tedious aspects of communicating with web servers easier. It is written in Objective-C and works in both Mac OS X and iPhone @@ -21,13 +19,13 @@ Pod::Spec.new do } # Exclude the ASIWebPageRequest files. - source_files 'Classes/ASI[^Web]*.*' + s.source_files = 'Classes/ASI[^Web]*.*' # TODO actually I think one or some of these are for Reachability - xcconfig 'OTHER_LDFLAGS' => '-framework SystemConfiguration ' \ - '-framework CFNetwork ' \ - '-framework MobileCoreServices ' \ - '-l z.1' + s.xcconfig = { 'OTHER_LDFLAGS' => '-framework SystemConfiguration ' \ + '-framework CFNetwork ' \ + '-framework MobileCoreServices ' \ + '-l z.1' } dependency 'Reachability', '~> 2.0', '>= 2.0.4' end diff --git a/ASIWebPageRequest/1.8.1/ASIWebPageRequest.podspec b/ASIWebPageRequest/1.8.1/ASIWebPageRequest.podspec index 5167b24e..ddeedf83 100644 --- a/ASIWebPageRequest/1.8.1/ASIWebPageRequest.podspec +++ b/ASIWebPageRequest/1.8.1/ASIWebPageRequest.podspec @@ -1,16 +1,17 @@ -Pod::Spec.new do - name 'ASIWebPageRequest' - version '1.8.1' - homepage 'http://allseeing-i.com/ASIHTTPRequest/ASIWebPageRequest' - author 'Ben Copsey' => 'ben@allseeing-i.com' +Pod::Spec.new do |s| + s.name = 'ASIWebPageRequest' + s.version = '1.8.1' + s.homepage = 'http://allseeing-i.com/ASIHTTPRequest/ASIWebPageRequest' + s.author = { 'Ben Copsey' => 'ben@allseeing-i.com' } - summary %{ + s.summary = %{ The ASIWebPageRequest class included with ASIHTTPRequest lets you download complete webpages, including external resources like images and stylesheets. } - part_of_dependency 'ASIHTTPRequest', '1.8.1' - source_files 'Classes/ASIWebPageRequest/*.m', 'Classes/ASIWebPageRequest/*.h' + s.part_of_dependency = 'ASIHTTPRequest', '1.8.1' + s.source_files = 'Classes/ASIWebPageRequest/*.m', 'Classes/ASIWebPageRequest/*.h' - xcconfig 'OTHER_LDFLAGS' => '-l xml2.2.7.3', 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' + s.xcconfig = { 'OTHER_LDFLAGS' => '-l xml2.2.7.3', 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' } end + diff --git a/ASIWebPageRequest/1.8/ASIWebPageRequest.podspec b/ASIWebPageRequest/1.8/ASIWebPageRequest.podspec index 7540e735..9ccbf893 100644 --- a/ASIWebPageRequest/1.8/ASIWebPageRequest.podspec +++ b/ASIWebPageRequest/1.8/ASIWebPageRequest.podspec @@ -1,16 +1,16 @@ -Pod::Spec.new do - name 'ASIWebPageRequest' - version '1.8' - homepage 'http://allseeing-i.com/ASIHTTPRequest/ASIWebPageRequest' - author 'Ben Copsey' => 'ben@allseeing-i.com' +Pod::Spec.new do |s| + s.name = 'ASIWebPageRequest' + s.version = '1.8' + s.homepage = 'http://allseeing-i.com/ASIHTTPRequest/ASIWebPageRequest' + s.author = { 'Ben Copsey' => 'ben@allseeing-i.com' } - summary %{ + s.summary = %{ The ASIWebPageRequest class included with ASIHTTPRequest lets you download complete webpages, including external resources like images and stylesheets. } - part_of_dependency 'ASIHTTPRequest', '1.8' - source_files 'Classes/ASIWebPageRequest.h', 'Classes/ASIWebPageRequest.m' + s.part_of_dependency = 'ASIHTTPRequest', '1.8' + s.source_files = 'Classes/ASIWebPageRequest.h', 'Classes/ASIWebPageRequest.m' - xcconfig 'OTHER_LDFLAGS' => '-l xml2.2.7.3', 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' + s.xcconfig = { 'OTHER_LDFLAGS' => '-l xml2.2.7.3', 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' } end diff --git a/FormatterKit/0.6.0/FormatterKit.podspec b/FormatterKit/0.6.0/FormatterKit.podspec index c03159c7..7811ca29 100644 --- a/FormatterKit/0.6.0/FormatterKit.podspec +++ b/FormatterKit/0.6.0/FormatterKit.podspec @@ -1,15 +1,14 @@ -Pod::Spec.new do - name 'FormatterKit' - version '0.6.0' - summary '`stringWithFormat:` for the sophisticated hacker set' - homepage 'https://github.com/mattt/FormatterKit' - author 'Mattt Thompson' => 'm@mattt.me' - source :git => 'https://github.com/mattt/FormatterKit.git', - :tag => '0.6.0' +Pod::Spec.new do |s| + s.name = 'FormatterKit' + s.version = '0.6.0' + 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 => '0.6.0' } - description "FormatterKit is a collection of well-crafted NSFormatter subclasses for things like hours of operation, 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.description = "FormatterKit is a collection of well-crafted NSFormatter subclasses for things like hours of operation, 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." - source_files 'TTTArrayFormatter/*.{h,m}', 'TTTHoursOfOperation/*.{h,m}', - 'TTTLocationFormatter/*.{h,m}', 'TTTOrdinalNumberFormatter/*.{h,m}', - 'TTTTimeIntervalFormatter/*.{h,m}', 'TTTURLRequestFormatter/*.{h,m}' + s.source_files = 'TTTArrayFormatter/*.{h,m}', 'TTTHoursOfOperation/*.{h,m}', + 'TTTLocationFormatter/*.{h,m}', 'TTTOrdinalNumberFormatter/*.{h,m}', + 'TTTTimeIntervalFormatter/*.{h,m}', 'TTTURLRequestFormatter/*.{h,m}' end diff --git a/JSONKit/1.4/JSONKit.podspec b/JSONKit/1.4/JSONKit.podspec index 8397c204..5c1de3d2 100644 --- a/JSONKit/1.4/JSONKit.podspec +++ b/JSONKit/1.4/JSONKit.podspec @@ -1,13 +1,12 @@ -Pod::Spec.new do - name 'JSONKit' - version '1.4' - summary 'A Very High Performance Objective-C JSON Library.' - homepage 'https://github.com/johnezang/JSONKit' - author 'John Engelhart' - source :git => 'https://github.com/johnezang/JSONKit.git', - :commit => 'v1.4' +Pod::Spec.new do |s| + s.name = 'JSONKit' + s.version = '1.4' + s.summary = 'A Very High Performance Objective-C JSON Library.' + s.homepage = 'https://github.com/johnezang/JSONKit' + s.author = 'John Engelhart' + s.source = { :git => 'https://github.com/johnezang/JSONKit.git', :tag => 'v1.4' } - source_files 'JSONKit.*' + s.source_files = 'JSONKit.*' - xcconfig 'OTHER_LDFLAGS' => '-ObjC' + s.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC' } end diff --git a/Kiwi/1.0.0/Kiwi.podspec b/Kiwi/1.0.0/Kiwi.podspec index 8b9b978a..5081717a 100644 --- a/Kiwi/1.0.0/Kiwi.podspec +++ b/Kiwi/1.0.0/Kiwi.podspec @@ -1,11 +1,11 @@ -Pod::Spec.new do - name 'Kiwi' - version '1.0.0' - summary 'A Behavior Driven Development library for iPhone and iPad development.' - homepage 'http://kiwi-lib.info' - authors 'Allen Ding' => 'allen@allending.com', 'Luke Redpath' => 'luke@lukeredpath.co.uk' - source :git => 'https://github.com/allending/Kiwi.git', :tag => 'v1.0.0' - source_files 'Kiwi' - xcconfig 'FRAMEWORK_SEARCH_PATHS' => '"$(SDKROOT)/Developer/Library/Frameworks"', - 'OTHER_LDFLAGS' => '-ObjC -all_load -framework SenTestingKit' +Pod::Spec.new do |s| + s.name = 'Kiwi' + s.version = '1.0.0' + s.summary = 'A Behavior Driven Development library for iPhone and iPad development.' + s.homepage = 'http://kiwi-lib.info' + s.authors = { 'Allen Ding' => 'allen@allending.com', 'Luke Redpath' => 'luke@lukeredpath.co.uk' } + s.source = { :git => 'https://github.com/allending/Kiwi.git', :tag => 'v1.0.0' } + s.source_files = 'Kiwi' + s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(SDKROOT)/Developer/Library/Frameworks"', + 'OTHER_LDFLAGS' => '-ObjC -all_load -framework SenTestingKit' } end diff --git a/LRMocky/0.9.0/LRMocky.podspec b/LRMocky/0.9.0/LRMocky.podspec index d4d5e520..af485127 100644 --- a/LRMocky/0.9.0/LRMocky.podspec +++ b/LRMocky/0.9.0/LRMocky.podspec @@ -1,10 +1,10 @@ -Pod::Spec.new do - name 'LRMocky' - version '0.9.0' - summary 'A mock object library for Objective C, inspired by JMock 2.0' - homepage 'http://github.com/lukeredpath/LRMocky' - authors 'Luke Redpath' => 'luke@lukeredpath.co.uk' - source :git => 'https://github.com/lukeredpath/LRMocky.git', :tag => 'v0.9.0' - source_files 'Classes', 'Classes/LRMocky', 'Vendor' - xcconfig 'OTHER_LDFLAGS' => '-ObjC -all_load' +Pod::Spec.new do |s| + s.name = 'LRMocky' + s.version = '0.9.0' + s.summary = 'A mock object library for Objective C, inspired by JMock 2.0' + s.homepage = 'http://github.com/lukeredpath/LRMocky' + s.authors = { 'Luke Redpath' => 'luke@lukeredpath.co.uk' } + s.source = { :git => 'https://github.com/lukeredpath/LRMocky.git', :tag => 'v0.9.0' } + s.source_files = 'Classes', 'Classes/LRMocky', 'Vendor' + s.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC -all_load' } end diff --git a/LRResty/0.11.0/LRResty.podspec b/LRResty/0.11.0/LRResty.podspec index b775f4cd..5c2a501f 100644 --- a/LRResty/0.11.0/LRResty.podspec +++ b/LRResty/0.11.0/LRResty.podspec @@ -1,10 +1,10 @@ -Pod::Spec.new do - name 'LRResty' - version '0.11.0' - summary 'Resty is a simple to use HTTP library for Cocoa and iOS apps, aimed at consuming RESTful web services and APIs.' - homepage 'http://projects.lukeredpath.co.uk/resty/' - authors 'Luke Redpath' => 'luke@lukeredpath.co.uk' - source :git => 'https://github.com/lukeredpath/LRResty.git', :tag => 'v0.11.0' - source_files 'Classes', 'Classes/Categories' - xcconfig 'OTHER_LDFLAGS' => '-ObjC -all_load' +Pod::Spec.new do |s| + s.name = 'LRResty' + s.version = '0.11.0' + s.summary = 'Resty is a simple to use HTTP library for Cocoa and iOS apps, aimed at consuming RESTful web services and APIs.' + s.homepage = 'http://projects.lukeredpath.co.uk/resty/' + s.authors = { 'Luke Redpath' => 'luke@lukeredpath.co.uk' } + s.source = { :git => 'https://github.com/lukeredpath/LRResty.git', :tag => 'v0.11.0' } + s.source_files = 'Classes', 'Classes/Categories' + s.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC -all_load' } end diff --git a/MGSplitViewController/1.0.0/MGSplitViewController.podspec b/MGSplitViewController/1.0.0/MGSplitViewController.podspec index 4f17a746..7b1b5d13 100644 --- a/MGSplitViewController/1.0.0/MGSplitViewController.podspec +++ b/MGSplitViewController/1.0.0/MGSplitViewController.podspec @@ -1,14 +1,14 @@ -Pod::Spec.new do - name 'MGSplitViewController' - version '1.0.0' - summary 'A flexible, advanced split-view controller for iPad developers.' - homepage 'https://github.com/mattgemmell/MGSplitViewController' - author 'Matt Gemmell' => 'matt@mattgemmell.com' - source :git => 'https://github.com/mattgemmell/MGSplitViewController.git', - :commit => '580747fc57bdd5139de94fca25e8fe95e2dfd908' - #:tag => '1.0.0' +Pod::Spec.new do |s| + s.name = 'MGSplitViewController' + s.version = '1.0.0' + s.summary = 'A flexible, advanced split-view controller for iPad developers.' + s.homepage = 'https://github.com/mattgemmell/MGSplitViewController' + s.author = { 'Matt Gemmell' => 'matt@mattgemmell.com' } + s.source = { :git => 'https://github.com/mattgemmell/MGSplitViewController.git', + :commit => '580747fc57bdd5139de94fca25e8fe95e2dfd908', + #:tag => '1.0.0' } - source_files 'Classes/MGSplit{ViewController,DividerView,CornersView}.*' + s.source_files = 'Classes/MGSplit{ViewController,DividerView,CornersView}.*' - xcconfig 'OTHER_LDFLAGS' => '-ObjC' + s.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC' } end diff --git a/Nu/2.0/Nu.podspec b/Nu/2.0/Nu.podspec deleted file mode 100644 index 7456cb21..00000000 --- a/Nu/2.0/Nu.podspec +++ /dev/null @@ -1,2 +0,0 @@ -Pod::Spec.new do -end diff --git a/Objection/0.8.7/Objection.podspec b/Objection/0.8.7/Objection.podspec index f504b3da..b8a449f8 100644 --- a/Objection/0.8.7/Objection.podspec +++ b/Objection/0.8.7/Objection.podspec @@ -1,10 +1,10 @@ -Pod::Spec.new do - name 'Objection' - version '0.8.7' - summary 'A lightweight dependency injection framework for Objective-C.' - author 'Justin DeWind' => 'dewind@atomicobject.com' - source :git => 'https://github.com/atomicobject/objection.git', :tag => '0.8.7' - xcconfig 'OTHER_LDFLAGS' => '-ObjC -all_load' - homepage 'http://www.objection-framework.org' - source_files 'Source' -end \ No newline at end of file +Pod::Spec.new do |s| + s.name = 'Objection' + s.version = '0.8.7' + s.summary = 'A lightweight dependency injection framework for Objective-C.' + s.author = { 'Justin DeWind' => 'dewind@atomicobject.com' } + s.source = { :git => 'https://github.com/atomicobject/objection.git', :tag => '0.8.7' } + s.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC -all_load' } + s.homepage = 'http://www.objection-framework.org' + s.source_files = 'Source' +end diff --git a/ObjectiveBacon/0.1/ObjectiveBacon.podspec b/ObjectiveBacon/0.1/ObjectiveBacon.podspec deleted file mode 100644 index 7456cb21..00000000 --- a/ObjectiveBacon/0.1/ObjectiveBacon.podspec +++ /dev/null @@ -1,2 +0,0 @@ -Pod::Spec.new do -end diff --git a/Reachability/2.0.4/Reachability.podspec b/Reachability/2.0.4/Reachability.podspec index 444e233a..7015b851 100644 --- a/Reachability/2.0.4/Reachability.podspec +++ b/Reachability/2.0.4/Reachability.podspec @@ -1,10 +1,9 @@ -Pod::Spec.new do - name 'Reachability' - version '2.0.4' - part_of 'ASIHTTPRequest', '>= 1.8' - homepage 'https://github.com/pokeb/asi-http-request/tree/v1.8.1/External/Reachability' - authors 'Apple', 'Donoho Design Group, LLC' - summary 'A wrapper for the SystemConfiguration Reachablity APIs.' - - source_files 'External/Reachability' +Pod::Spec.new do |s| + s.name = 'Reachability' + s.version = '2.0.4' + s.part_of = 'ASIHTTPRequest', '>= 1.8' + s.homepage = 'https://github.com/pokeb/asi-http-request/tree/v1.8.1/External/Reachability' + s.authors = 'Apple', 'Donoho Design Group, LLC' + s.summary = 'A wrapper for the SystemConfiguration Reachablity APIs.' + s.source_files = 'External/Reachability' end diff --git a/SBJson/3.0.4/SBJson.podspec b/SBJson/3.0.4/SBJson.podspec index 700457a7..43a1c031 100644 --- a/SBJson/3.0.4/SBJson.podspec +++ b/SBJson/3.0.4/SBJson.podspec @@ -1,13 +1,12 @@ -Pod::Spec.new do - name 'SBJson' - version '3.0.4' - summary 'This library implements strict JSON parsing and generation in Objective-C.' - homepage 'http://stig.github.com/json-framework/' - author 'Stig Brautaset' => 'stig@brautaset.org' - source :git => 'https://github.com/stig/json-framework.git', - :tag => 'v3.0.4' +Pod::Spec.new do |s| + s.name = 'SBJson' + s.version = '3.0.4' + s.summary = 'This library implements strict JSON parsing and generation in Objective-C.' + s.homepage = 'http://stig.github.com/json-framework/' + s.author = { 'Stig Brautaset' => 'stig@brautaset.org' } + s.source = { :git => 'https://github.com/stig/json-framework.git', :tag => 'v3.0.4' } - source_files 'Classes' + s.source_files = 'Classes' - xcconfig 'OTHER_LDFLAGS' => '-ObjC -all_load' + s.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC -all_load' } end diff --git a/SSKeychain/0.1.0/SSKeychain.podspec b/SSKeychain/0.1.0/SSKeychain.podspec index e146ff83..5bcfb693 100644 --- a/SSKeychain/0.1.0/SSKeychain.podspec +++ b/SSKeychain/0.1.0/SSKeychain.podspec @@ -1,13 +1,10 @@ -Pod::Spec.new do - name 'SSKeychain' - version '0.1.0' - summary 'Simple Cocoa wrapper for the keychain that works on Mac and iOS' - homepage 'https://github.com/samsoffes/sskeychain' - author 'Sam Soffes' => 'sam@samsoff.es' - source :git => 'https://github.com/samsoffes/sskeychain.git', - :tag => '0.1.0' - - description "SSKeychain is a simple utility class for making the system keychain less sucky." - - source_files 'SSKeychain.*' +Pod::Spec.new do |s| + s.name = 'SSKeychain' + s.version = '0.1.0' + s.summary = 'Simple Cocoa wrapper for the keychain that works on Mac and iOS' + s.homepage = 'https://github.com/samsoffes/sskeychain' + s.author = { 'Sam Soffes' => 'sam@samsoff.es' } + s.source = { :git => 'https://github.com/samsoffes/sskeychain.git', :tag => '0.1.0' } + s.description = "SSKeychain is a simple utility class for making the system keychain less sucky." + s.source_files = 'SSKeychain.*' end diff --git a/SSZipArchive/0.1.0/SSZipArchive.podspec b/SSZipArchive/0.1.0/SSZipArchive.podspec index 26dc5713..a04f95f0 100644 --- a/SSZipArchive/0.1.0/SSZipArchive.podspec +++ b/SSZipArchive/0.1.0/SSZipArchive.podspec @@ -1,14 +1,13 @@ -Pod::Spec.new do - name 'SSZipArchive' - version '0.1.0' - summary 'Utility class for unzipping files on iOS and Mac.' - homepage 'https://github.com/samsoffes/ssziparchive' - author 'Sam Soffes' => 'sam@samsoff.es' - source :git => 'https://github.com/samsoffes/ssziparchive.git', - :tag => '0.1.0' +Pod::Spec.new do |s| + s.name = 'SSZipArchive' + s.version = '0.1.0' + s.summary = 'Utility class for unzipping files on iOS and Mac.' + s.homepage = 'https://github.com/samsoffes/ssziparchive' + s.author = { 'Sam Soffes' => 'sam@samsoff.es' } + s.source = { :git => 'https://github.com/samsoffes/ssziparchive.git', :tag => '0.1.0' } - description "SSZipArchive is a simple utility class for unzipping files based on ZipArchive. " \ - "Currently it only supports unzipping. In the future, creating zip files will be supported." + s.description = "SSZipArchive is a simple utility class for unzipping files based on ZipArchive. " \ + "Currently it only supports unzipping. In the future, creating zip files will be supported." - source_files 'SSZipArchive.*', 'minizip/*.{h,c}' + s.source_files = 'SSZipArchive.*', 'minizip/*.{h,c}' end diff --git a/TTTAttributedLabel/0.10.0/TTTAttributedLabel.podspec b/TTTAttributedLabel/0.10.0/TTTAttributedLabel.podspec index 2d34513e..f431f513 100644 --- a/TTTAttributedLabel/0.10.0/TTTAttributedLabel.podspec +++ b/TTTAttributedLabel/0.10.0/TTTAttributedLabel.podspec @@ -1,15 +1,18 @@ -Pod::Spec.new do - name 'TTTAttributedLabel' - version '0.10.0' - summary 'A drop-in replacement for UILabel that supports NSAttributedStrings' - homepage 'https://github.com/mattt/TTTAttributedLabel' - author 'Mattt Thompson' => 'm@mattt.me' - source :git => 'https://github.com/mattt/TTTAttributedLabel.git', - :tag => '0.10.0' +Pod::Spec.new do |s| + s.name = 'TTTAttributedLabel' + s.version = '0.10.0' + s.summary = 'A drop-in replacement for UILabel that supports NSAttributedStrings' + s.homepage = 'https://github.com/mattt/TTTAttributedLabel' + s.author = { 'Mattt Thompson' => 'm@mattt.me' } + s.source = { :git => 'https://github.com/mattt/TTTAttributedLabel.git', :tag => '0.10.0' } - description "TTTAttributedLabel is a drop-in replacement for UILabel that supports NSAttributedStrings. " \ - "NSAttributedString is pretty rad. When it was ported into iOS 4 from Mac OS, iPhone developers everywhere rejoiced. Unfortunately, as of iOS 4 none of the standard controls in UIKit support it. Bummer. "\ - "TTTAttributedLabel was created to be a drop-in replacement for UILabel, that provided a simple API to styling text with NSAttributedString while remaining performant. As a bonus, it also supports link embedding, both automatically with UIDataDetectorTypes and manually by specifying a range for a URL, address, phone number, or event." + s.description = "TTTAttributedLabel is a drop-in replacement for UILabel that supports NSAttributedStrings. " \ + "NSAttributedString is pretty rad. When it was ported into iOS 4 from Mac OS, iPhone developers " \ + "everywhere rejoiced. Unfortunately, as of iOS 4 none of the standard controls in UIKit support it. " \ + "Bummer. TTTAttributedLabel was created to be a drop-in replacement for UILabel, that provided a " \ + "simple API to styling text with NSAttributedString while remaining performant. As a bonus, it also " \ + "supports link embedding, both automatically with UIDataDetectorTypes and manually by specifying a " \ + "range for a URL, address, phone number, or event." - source_files 'TTTAttributedLabel.{h,m}' + s.source_files = 'TTTAttributedLabel.{h,m}' end