From e670b97ec0844c6504f27e99fd14538bcfd46057 Mon Sep 17 00:00:00 2001 From: "Juan J. Collas" Date: Fri, 14 Dec 2012 12:32:35 -0500 Subject: [PATCH 001/159] Add proj4 --- proj4/4.8.0/proj4.podspec | 57 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 proj4/4.8.0/proj4.podspec diff --git a/proj4/4.8.0/proj4.podspec b/proj4/4.8.0/proj4.podspec new file mode 100644 index 00000000000000..87abb854d58611 --- /dev/null +++ b/proj4/4.8.0/proj4.podspec @@ -0,0 +1,57 @@ +Pod::Spec.new do |s| + s.name = "proj4" + s.version = "4.8.0" + s.summary = "Proj4 is a catographic projections library." + s.description = <<-DESC +PROJ.4 is in active use by GRASS GIS, MapServer, PostGIS, Thuban, OGDI, Mapnik, TopoCad, and OGRCoordinateTransformation as well as various other projects. + +Since work started on the PROJ.4.4.x series of releases, various bug fixes have been incorporated, and the build system has been overhauled to use autoconf/libtool. Support has also been added for 3 and 7 parameter datum shifts, the PJ* structure now also carries datum information and PJ* can be considered a full coordinate system (geographic coordinate systems are also now supported with the +proj=latlong pseudo-projection). The new cs2cs program performs a similar function to the proj program, but transforming from any one coordinate system to another. The new pj_transform() is used to access the extended coordinate system to coordinate system transformation with datum shifting. Work is underway to improve ThreadSafety. + +A mapping file (epsg) has also been introduced mapping most EPSG ( http://www.epsg.org/) coordinate systems to PROJ.4 format. + +As of May 2008 PROJ.4 has become part of the MetaCRS project, a confederation of coordinate systems related projects and it is hoped MetaCRS will enter incubation as an OSGeo project. + DESC + s.homepage = "http://trac.osgeo.org/proj/" + s.license = { :type => "MIT", + :file => "proj/COPYING" } + s.author = { "Frank Warmerdam" => "warmerdam@pobox.com", + "Gerald Evenden" => "noreply@usgs.gov" } + s.source = { :svn => "http://svn.osgeo.org/metacrs/proj", :tag => '4.8.0' } + + # gross hack to make this work with AFNetworking + s.compiler_flags = '-D_SYSTEMCONFIGURATION_H -D__MOBILECORESERVICES__ -D__CORESERVICES__' + + s.ios.deployment_target = "4.0" + s.osx.deployment_target = "10.6" + + def s.pre_install(pod, target_definition) + proj_config = <<-CONFIG_H +#define HAVE_DLFCN_H 1 +#define HAVE_INTTYPES_H 1 +#define HAVE_LIBM 1 +#define HAVE_MEMORY_H 1 +#define HAVE_STDINT_H 1 +#define HAVE_STDLIB_H 1 +#define HAVE_STRINGS_H 1 +#define HAVE_STRING_H 1 +#define HAVE_SYS_STAT_H 1 +#define HAVE_SYS_TYPES_H 1 +#define HAVE_UNISTD_H 1 +#define PACKAGE "proj" +#define PACKAGE_BUGREPORT "warmerdam@pobox.com" +#define PACKAGE_NAME "PROJ.4 Projections" +#define PACKAGE_STRING "PROJ.4 Projections 4.8.0" +#define PACKAGE_TARNAME "proj" +#define PACKAGE_VERSION "4.8.0" +#define STDC_HEADERS 1 +#define VERSION "4.8.0" +CONFIG_H + + File.open("#{pod.root}/proj/src/proj_config.h", "w") do |file| + file.puts proj_config + end + end + + s.source_files = "proj/src/*.{c,h}" + +end From 3fc0767e8ba641a74acf3e4793fbdbf6f9a2ea85 Mon Sep 17 00:00:00 2001 From: "Juan J. Collas" Date: Fri, 14 Dec 2012 12:41:16 -0500 Subject: [PATCH 002/159] Add polyclipping library --- clipper/4.3.0/clipper.podspec | 24 ++++++++++++++++++++++++ clipper/4.8.8/clipper.podspec | 24 ++++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 clipper/4.3.0/clipper.podspec create mode 100644 clipper/4.8.8/clipper.podspec diff --git a/clipper/4.3.0/clipper.podspec b/clipper/4.3.0/clipper.podspec new file mode 100644 index 00000000000000..fd28b7f30e41bd --- /dev/null +++ b/clipper/4.3.0/clipper.podspec @@ -0,0 +1,24 @@ +Pod::Spec.new do |s| + s.name = "clipper" + s.version = "4.3.0" + s.summary = "The Clipper library primarily performs the boolean clipping operations." + s.description = <<-DESC +The Clipper library primarily performs the boolean clipping operations - intersection, union, difference & xor - on 2D polygons. It also performs polygon offsetting. +The library handles complex (self-intersecting) polygons, polygons with holes and polygons with overlapping co-linear edges. +Input polygons for clipping can use EvenOdd, NonZero, Positive and Negative filling modes. +The clipping code is based on the Vatti clipping algorithm, and out performs other clipping libraries. + DESC + s.homepage = "http://www.angusj.com/delphi/clipper.php" + s.license = { :type => "Boost Software License", + :file => "License.txt" } + s.author = { "Angus Johnson" => "awj1958@gmail.com" } + s.source = { :http => "http://sourceforge.net/projects/polyclipping/files/clipper_ver4.3.0.zip" } + + s.ios.deployment_target = "4.0" + s.osx.deployment_target = "10.6" + + s.source_files = "cpp/*.{cpp,hpp}" + + s.xcconfig = { 'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/clipper/"' } + +end diff --git a/clipper/4.8.8/clipper.podspec b/clipper/4.8.8/clipper.podspec new file mode 100644 index 00000000000000..40c493ad412806 --- /dev/null +++ b/clipper/4.8.8/clipper.podspec @@ -0,0 +1,24 @@ +Pod::Spec.new do |s| + s.name = "clipper" + s.version = "4.8.8" + s.summary = "The Clipper library primarily performs the boolean clipping operations." + s.description = <<-DESC +The Clipper library primarily performs the boolean clipping operations - intersection, union, difference & xor - on 2D polygons. It also performs polygon offsetting. +The library handles complex (self-intersecting) polygons, polygons with holes and polygons with overlapping co-linear edges. +Input polygons for clipping can use EvenOdd, NonZero, Positive and Negative filling modes. +The clipping code is based on the Vatti clipping algorithm, and out performs other clipping libraries. + DESC + s.homepage = "http://www.angusj.com/delphi/clipper.php" + s.license = { :type => "Boost Software License", + :file => "License.txt" } + s.author = { "Angus Johnson" => "awj1958@gmail.com" } + s.source = { :http => "http://sourceforge.net/projects/polyclipping/files/clipper_ver4.8.8.zip" } + + s.ios.deployment_target = "4.0" + s.osx.deployment_target = "10.6" + + s.source_files = "cpp/*.{cpp,hpp}" + + s.xcconfig = { 'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/clipper/"' } + +end From 8c40c3bfe974c5ca97730dbc9d155356a40facfc Mon Sep 17 00:00:00 2001 From: "Juan J. Collas" Date: Fri, 14 Dec 2012 12:41:35 -0500 Subject: [PATCH 003/159] Add shapelib --- shapelib/1.3/shapelib.podspec | 36 +++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 shapelib/1.3/shapelib.podspec diff --git a/shapelib/1.3/shapelib.podspec b/shapelib/1.3/shapelib.podspec new file mode 100644 index 00000000000000..56ca2d32341e89 --- /dev/null +++ b/shapelib/1.3/shapelib.podspec @@ -0,0 +1,36 @@ +Pod::Spec.new do |s| + s.name = "shapelib" + s.version = "1.3" + s.summary = "The Shapefile C Library manipulates ESRI Shapefiles." + s.description = <<-DESC +If you don't know, you probably don't need this library. The Shapefile format is a working and interchange format promulagated by ESRI for simple vector data with attributes. +An excellent white paper on the shapefile format is available from ESRI, but it is .pdf format, so you will need Adobe Acrobat to browse it. + +The file format actually consists of three files. + +XXX.shp - holds the actual vertices. +XXX.shx - hold index data pointing to the structures in the .shp file. +XXX.dbf - holds the attributes in xBase (dBase) format. + DESC + s.homepage = "http://shapelib.maptools.org" + s.license = { :type => "MIT", + :text => <<-LICENSE +Copyright (c) 1999, Frank Warmerdam +This software is available under the following "MIT Style" license, or at the option of the licensee under the LGPL (see LICENSE.LGPL). This option is discussed in more detail in shapelib.html. + +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 = { "Frank Warmerdam" => "warmerdam@pobox.com" } + s.source = { :http => "http://download.osgeo.org/shapelib/shapelib-1.3.0.zip" } + + s.ios.deployment_target = "4.0" + s.osx.deployment_target = "10.6" + + s.source_files = "shapelib-1.3.0/*.{c,h}" + +end From d6c0f0e7e87210a68d5c727fbb7bd0a8ba521da2 Mon Sep 17 00:00:00 2001 From: Adam Kirk Date: Sat, 15 Dec 2012 01:23:05 -0700 Subject: [PATCH 004/159] [Update] MTPocket (0.7.0) --- MTPocket/0.7.0/MTPocket.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 MTPocket/0.7.0/MTPocket.podspec diff --git a/MTPocket/0.7.0/MTPocket.podspec b/MTPocket/0.7.0/MTPocket.podspec new file mode 100644 index 00000000000000..12f3c2941266e7 --- /dev/null +++ b/MTPocket/0.7.0/MTPocket.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = "MTPocket" + s.version = "0.7.0" + s.summary = "A Cocoa web request library that doesn't suck." + s.description = "Simple and powerful. Convenient and informative. JSON and XML to collection object conversion. Comprehensive request and response objects." + s.homepage = "https://github.com/mysterioustrousers/MTPocket" + s.license = 'BSD' + s.author = { "Adam Kirk" => "atomkirk@gmail.com" } + s.source = { :git => "https://github.com/mysterioustrousers/MTPocket.git", :tag => "0.7.0" } + s.source_files = 'MTPocket/*.{h,m}' + s.dependency 'XMLDictionary', '~> 2.0.0' + s.dependency 'MTJSONUtils', '~> 0.1.0' + s.dependency 'Base64' +end From b74e79821586a460c6bef9927bfcdb6b90926d37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Wei=C3=9F?= Date: Sat, 15 Dec 2012 12:26:28 +0100 Subject: [PATCH 005/159] [Update] FRLayeredNavigationController (0.4.3) --- .../{0.4.1 => 0.4.3}/FRLayeredNavigationController.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename FRLayeredNavigationController/{0.4.1 => 0.4.3}/FRLayeredNavigationController.podspec (92%) diff --git a/FRLayeredNavigationController/0.4.1/FRLayeredNavigationController.podspec b/FRLayeredNavigationController/0.4.3/FRLayeredNavigationController.podspec similarity index 92% rename from FRLayeredNavigationController/0.4.1/FRLayeredNavigationController.podspec rename to FRLayeredNavigationController/0.4.3/FRLayeredNavigationController.podspec index 278884dded6dcc..cfa6645ed32813 100644 --- a/FRLayeredNavigationController/0.4.1/FRLayeredNavigationController.podspec +++ b/FRLayeredNavigationController/0.4.3/FRLayeredNavigationController.podspec @@ -1,12 +1,12 @@ Pod::Spec.new do |s| s.name = 'FRLayeredNavigationController' - s.version = '0.4.1' + s.version = '0.4.3' s.license = 'Modified BSD' s.summary = 'Layered navigation controller for hierarchical iPad apps.' s.homepage = 'https://github.com/weissi/FRLayeredNavigationController' s.author = { 'Johannes Weiß' => 'weiss@tux4u.de' } - s.source = { :git => 'https://github.com/weissi/FRLayeredNavigationController.git', :tag => 'v0.4.1' } + s.source = { :git => 'https://github.com/weissi/FRLayeredNavigationController.git', :tag => 'v0.4.3' } s.description = 'FRLayeredNavigationController gives iPad developers a simple drop-in replacement for UINavigationController for great UIs. It is a view controller compositor which enables you to develop -- as we think -- great iPad apps. Influenced by the UI of the Twitter and Soundcloud iPad apps.' From 604ba4823c54bcb11a27b3a4b37baecfa03de4bf Mon Sep 17 00:00:00 2001 From: Orta Therox Date: Sat, 15 Dec 2012 12:38:47 -0500 Subject: [PATCH 006/159] Added IOSQueryable --- IOSQueryable/0.0.1/IOSQueryable.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 IOSQueryable/0.0.1/IOSQueryable.podspec diff --git a/IOSQueryable/0.0.1/IOSQueryable.podspec b/IOSQueryable/0.0.1/IOSQueryable.podspec new file mode 100644 index 00000000000000..8291534cf36681 --- /dev/null +++ b/IOSQueryable/0.0.1/IOSQueryable.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = "IOSQueryable" + s.version = "0.0.1" + s.summary = "ios-queryable is an implementation of IQueryable/IEnumerable for Core Data,." + s.homepage = "https://github.com/martydill/ios-queryable" + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = "Marty Dill" + s.source = { :git => "https://github.com/martydill/ios-queryable.git", :commit => "76af6cb75339b6b399b95d2bada77ebbf4905100" } + s.platform = :ios + s.source_files = 'ios-queryable/NSManagedObjectContext+Queryable.{h,m}' + s.frameworks = 'CoreData', 'Foundation' + s.requires_arc = true +end From 6809f64b89a16c7345276becdbbe39f564829c37 Mon Sep 17 00:00:00 2001 From: "Juan J. Collas" Date: Sat, 15 Dec 2012 14:45:25 -0500 Subject: [PATCH 007/159] FreeXL is an open source library to extract valid data from within an Excel (.xls) spreadsheet. --- freexl/1.0.0d/freexl.podspec | 60 ++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 freexl/1.0.0d/freexl.podspec diff --git a/freexl/1.0.0d/freexl.podspec b/freexl/1.0.0d/freexl.podspec new file mode 100644 index 00000000000000..5955093d4ef61f --- /dev/null +++ b/freexl/1.0.0d/freexl.podspec @@ -0,0 +1,60 @@ +Pod::Spec.new do |s| + s.name = "freexl" + s.version = "1.0.0d" + s.summary = "FreeXL is an open source library to extract valid data from within an Excel (.xls) spreadsheet." + s.homepage = "https://www.gaia-gis.it/fossil/freexl/home" + s.license = { :type => "Mozilla Public License v1.1", + :file => "freexl-1.0.0d/COPYING" } + s.author = { " Alessandro Furieri" => "a.furieri@lqt.it" } + s.source = { :http => "http://www.gaia-gis.it/gaia-sins/freexl-1.0.0d.tar.gz" } + + s.ios.compiler_flags = '-U__APPLE__' + + s.ios.deployment_target = "4.0" + s.osx.deployment_target = "10.6" + + def s.pre_install(pod, target_definition) + config = <<-CONFIG_H +#define HAVE_DLFCN_H 1 +#define HAVE_ICONV_H 1 +#define HAVE_INTTYPES_H 1 +#define HAVE_MATH_H 1 +#define HAVE_MEMORY_H 1 +#define HAVE_SQRT 1 +#define HAVE_STDINT_H 1 +#define HAVE_STDIO_H 1 +#define HAVE_STDLIB_H 1 +#define HAVE_STRCASECMP 1 +#define HAVE_STRERROR 1 +#define HAVE_STRFTIME 1 +#define HAVE_STRINGS_H 1 +#define HAVE_STRING_H 1 +#define HAVE_STRNCASECMP 1 +#define HAVE_STRSTR 1 +#define HAVE_SYS_STAT_H 1 +#define HAVE_SYS_TYPES_H 1 +#define HAVE_UNISTD_H 1 +#define LT_OBJDIR ".libs/" +#define PACKAGE "freexl" +#define PACKAGE_BUGREPORT "a.furieri@lqt.it" +#define PACKAGE_NAME "FreeXL" +#define PACKAGE_STRING "FreeXL 1.0.0d" +#define PACKAGE_TARNAME "freexl" +#define PACKAGE_URL "" +#define PACKAGE_VERSION "1.0.0d" +#define STDC_HEADERS 1 +#define TIME_WITH_SYS_TIME 1 +#define VERSION "1.0.0d" +CONFIG_H + File.open("#{pod.root}/freexl-1.0.0d/headers/config.h", "w") do |file| + file.puts config + end + end + + s.source_files = "freexl-1.0.0d/src/*.c", "freexl-1.0.0d/headers/*.h" + + s.libraries = 'iconv', 'charset' + + s.xcconfig = { 'HEADER_SEARCH_PATHS' => '${PODS_ROOT}/freexl/freexl-1.0.0d/headers' } + +end From 6c6ccaf2cced0ae99e0287fda593c351dc3270ff Mon Sep 17 00:00:00 2001 From: "Juan J. Collas" Date: Sat, 15 Dec 2012 14:45:58 -0500 Subject: [PATCH 008/159] GEOS (Geometry Engine - Open Source) is a C++ port of the Java Topology Suite (JTS). --- geos/3.3.5/geos.podspec | 107 ++++++++++++++++++++++++++++++++++++++++ geos/3.3.6/geos.podspec | 107 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 214 insertions(+) create mode 100644 geos/3.3.5/geos.podspec create mode 100644 geos/3.3.6/geos.podspec diff --git a/geos/3.3.5/geos.podspec b/geos/3.3.5/geos.podspec new file mode 100644 index 00000000000000..62f99f719bf29d --- /dev/null +++ b/geos/3.3.5/geos.podspec @@ -0,0 +1,107 @@ +Pod::Spec.new do |s| + s.name = "geos" + s.version = "3.3.5" + s.summary = "GEOS (Geometry Engine - Open Source) is a C++ port of the Java Topology Suite (JTS)." + s.homepage = "http://trac.osgeo.org/geos/" + s.license = { :type => "GNU LGPL 2.1", + :file => "COPYING" } + s.author = { "Yury Bychkov" => "me@yury.ca", + "Martin Davis" => "mbdavis@refractions.net" } + s.source = { :svn => "http://svn.osgeo.org/geos", :tag => '3.3.5' } + + $ver_info = { "@VERSION@" => "3.3.5", + "@VERSION_MAJOR@" => "3", + "@VERSION_MINOR@" => "3", + "@VERSION_PATCH@" => "5", + "@JTS_PORT@" => "1.12.0", + "@CAPI_VERSION@" => "1.7.5", + "@CAPI_VERSION_MAJOR@" => "1", + "@CAPI_VERSION_MINOR@" => "7", + "@CAPI_VERSION_PATCH@" => "5" } + + s.ios.deployment_target = "4.0" + s.osx.deployment_target = "10.6" + + # gross hack to make this work with AFNetworking + s.compiler_flags = '-D_SYSTEMCONFIGURATION_H -D__MOBILECORESERVICES__ -D__CORESERVICES__' +# s.header_mappings_dir = 'include' + + # process .h.in define files. + def s.process_h_in(h_filename, contents, pattern, substs) + File.open(h_filename, "w") do |h_file| + if (contents.nil?) + File.open("#{h_filename}.in", "r") do |in_file| + contents = in_file.read + end + end + if (!pattern.nil?) + contents = contents.gsub(pattern, substs) + end + h_file.puts contents + end + end + + def s.pre_install(pod, target_definition) + platform_config = <<-CONFIG_H +#ifndef GEOS_PLATFORM_H +#define GEOS_PLATFORM_H + +#define HAVE_LONG_INT_64 1 +#define HAVE_FINITE 1 +#define HAVE_ISFINITE 1 +#ifdef HAVE_IEEEFP_H +extern "C" +{ +#include +} +#endif +#ifdef HAVE_INT64_T_64 +extern "C" +{ +#include +} +#endif +#include // for std::numeric_limits +#define DoubleNotANumber std::numeric_limits::quiet_NaN() +#define DoubleInfinity std::numeric_limits::infinity() +#define DoubleNegInfinity -std::numeric_limits::infinity() +#define DoubleMax std::numeric_limits::max() + +#ifdef HAVE_INT64_T_64 + typedef int64_t int64; +#else +# ifdef HAVE_LONG_LONG_INT_64 + typedef long long int int64; +# else + typedef long int int64; +# endif +#endif +# define FINITE(x) (isfinite(x)) + +#if defined(HAVE_ISNAN) +# define ISNAN(x) (isnan(x)) +#else +# define ISNAN(x) (std::isnan(x)) +#endif + +#ifndef ISNAN +#error "Can not compile without isnan function or macro" +#endif + +#endif +CONFIG_H + + process_h_in("#{pod.root}/include/geos/platform.h", platform_config, nil, nil); + process_h_in("#{pod.root}/include/geos/version.h", nil, /@.*?@/, $ver_info); + process_h_in("#{pod.root}/capi/geos_c.h", nil, /@.*?@/, $ver_info); + +# File.delete("#{pod.root}/capi/geos_c.h.in"); + end + +# s.source_files = FileList['src/**/*.{cpp,h}'].exclude(/tests/), 'include/**', 'capi/*.{cpp,h,in}' + s.source_files = FileList['src/**/*.cpp'].exclude(/tests/), 'capi/*.cpp' + s.preserve_paths = 'src/**/*.h', 'include/**/*.{h,inl,in}', 'capi/*.{h,in}' + + s.xcconfig = { 'HEADER_SEARCH_PATHS' => '${PODS_ROOT}/geos/include ${PODS_ROOT}/geos/capi' } + +end diff --git a/geos/3.3.6/geos.podspec b/geos/3.3.6/geos.podspec new file mode 100644 index 00000000000000..3f5cfbe8f0b1da --- /dev/null +++ b/geos/3.3.6/geos.podspec @@ -0,0 +1,107 @@ +Pod::Spec.new do |s| + s.name = "geos" + s.version = "3.3.6" + s.summary = "GEOS (Geometry Engine - Open Source) is a C++ port of the Java Topology Suite (JTS)." + s.homepage = "http://trac.osgeo.org/geos/" + s.license = { :type => "GNU LGPL 2.1", + :file => "COPYING" } + s.author = { "Yury Bychkov" => "me@yury.ca", + "Martin Davis" => "mbdavis@refractions.net" } + s.source = { :svn => "http://svn.osgeo.org/geos", :tag => '3.3.6' } + + $ver_info = { "@VERSION@" => "3.3.6", + "@VERSION_MAJOR@" => "3", + "@VERSION_MINOR@" => "3", + "@VERSION_PATCH@" => "6", + "@JTS_PORT@" => "1.12.0", + "@CAPI_VERSION@" => "1.7.6", + "@CAPI_VERSION_MAJOR@" => "1", + "@CAPI_VERSION_MINOR@" => "7", + "@CAPI_VERSION_PATCH@" => "6" } + + s.ios.deployment_target = "4.0" + s.osx.deployment_target = "10.6" + + # gross hack to make this work with AFNetworking + s.compiler_flags = '-D_SYSTEMCONFIGURATION_H -D__MOBILECORESERVICES__ -D__CORESERVICES__' +# s.header_mappings_dir = 'include' + + # process .h.in define files. + def s.process_h_in(h_filename, contents, pattern, substs) + File.open(h_filename, "w") do |h_file| + if (contents.nil?) + File.open("#{h_filename}.in", "r") do |in_file| + contents = in_file.read + end + end + if (!pattern.nil?) + contents = contents.gsub(pattern, substs) + end + h_file.puts contents + end + end + + def s.pre_install(pod, target_definition) + platform_config = <<-CONFIG_H +#ifndef GEOS_PLATFORM_H +#define GEOS_PLATFORM_H + +#define HAVE_LONG_INT_64 1 +#define HAVE_FINITE 1 +#define HAVE_ISFINITE 1 +#ifdef HAVE_IEEEFP_H +extern "C" +{ +#include +} +#endif +#ifdef HAVE_INT64_T_64 +extern "C" +{ +#include +} +#endif +#include // for std::numeric_limits +#define DoubleNotANumber std::numeric_limits::quiet_NaN() +#define DoubleInfinity std::numeric_limits::infinity() +#define DoubleNegInfinity -std::numeric_limits::infinity() +#define DoubleMax std::numeric_limits::max() + +#ifdef HAVE_INT64_T_64 + typedef int64_t int64; +#else +# ifdef HAVE_LONG_LONG_INT_64 + typedef long long int int64; +# else + typedef long int int64; +# endif +#endif +# define FINITE(x) (isfinite(x)) + +#if defined(HAVE_ISNAN) +# define ISNAN(x) (isnan(x)) +#else +# define ISNAN(x) (std::isnan(x)) +#endif + +#ifndef ISNAN +#error "Can not compile without isnan function or macro" +#endif + +#endif +CONFIG_H + + process_h_in("#{pod.root}/include/geos/platform.h", platform_config, nil, nil); + process_h_in("#{pod.root}/include/geos/version.h", nil, /@.*?@/, $ver_info); + process_h_in("#{pod.root}/capi/geos_c.h", nil, /@.*?@/, $ver_info); + +# File.delete("#{pod.root}/capi/geos_c.h.in"); + end + +# s.source_files = FileList['src/**/*.{cpp,h}'].exclude(/tests/), 'include/**', 'capi/*.{cpp,h,in}' + s.source_files = FileList['src/**/*.cpp'].exclude(/tests/), 'capi/*.cpp' + s.preserve_paths = 'src/**/*.h', 'include/**/*.{h,inl,in}', 'capi/*.{h,in}' + + s.xcconfig = { 'HEADER_SEARCH_PATHS' => '${PODS_ROOT}/geos/include ${PODS_ROOT}/geos/capi' } + +end From 877706e64de583c8973625718272e4f3a629e7bb Mon Sep 17 00:00:00 2001 From: "Juan J. Collas" Date: Sat, 15 Dec 2012 15:18:09 -0500 Subject: [PATCH 009/159] SpatiaLite is an open source library intended to extend the SQLite core to support fully fledged Spatial SQL capabilities. --- spatialite/3.0.1/spatialite.podspec | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 spatialite/3.0.1/spatialite.podspec diff --git a/spatialite/3.0.1/spatialite.podspec b/spatialite/3.0.1/spatialite.podspec new file mode 100644 index 00000000000000..1c6d6f3d03250c --- /dev/null +++ b/spatialite/3.0.1/spatialite.podspec @@ -0,0 +1,27 @@ +Pod::Spec.new do |s| + s.name = "spatialite" + s.version = "3.0.1" + s.summary = "SpatiaLite is an open source library intended to extend the SQLite core to support fully fledged Spatial SQL capabilities." + s.homepage = "https://www.gaia-gis.it/fossil/libspatialite/home" + s.license = { :type => "Mozilla Public License v1.1", + :file => "libspatialite-amalgamation-3.0.1/COPYING" } + s.author = { " Alessandro Furieri" => "a.furieri@lqt.it" } + s.source = { :http => "http://www.gaia-gis.it/gaia-sins/libspatialite-sources/libspatialite-amalgamation-3.0.1.tar.gz" } + + s.compiler_flags = '-DVERSION=\"3.0.1\" -DOMIT_GEOCALLBACKS -DSPL_AMALGAMATION=1' + s.ios.compiler_flags = '-U__APPLE__' + + s.ios.deployment_target = "4.0" + s.osx.deployment_target = "10.6" + + s.header_mappings_dir = "libspatialite-amalgamation-3.0.1" + + s.source_files = "libspatialite-amalgamation-3.0.1/*.c" + s.preserve_paths = "libspatialite-amalgamation-3.0.1/headers/**/*.h" + + s.dependency 'geos' + s.dependency 'proj4' + s.dependency 'freexl' + + s.xcconfig = { 'HEADER_SEARCH_PATHS' => '${PODS_ROOT}/spatialite/libspatialite-amalgamation-3.0.1/headers' } +end From 01e40c68953eb7ca92fce71836d72662693f820d Mon Sep 17 00:00:00 2001 From: Blake Watters Date: Sat, 15 Dec 2012 17:33:05 -0500 Subject: [PATCH 010/159] Add RestKit 0.20.0-pre4 --- RestKit/0.20.0pre4/RestKit.podspec | 66 ++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 RestKit/0.20.0pre4/RestKit.podspec diff --git a/RestKit/0.20.0pre4/RestKit.podspec b/RestKit/0.20.0pre4/RestKit.podspec new file mode 100644 index 00000000000000..19c843bf711721 --- /dev/null +++ b/RestKit/0.20.0pre4/RestKit.podspec @@ -0,0 +1,66 @@ +Pod::Spec.new do |s| + s.name = 'RestKit' + s.version = '0.20.0pre4' + s.summary = 'RestKit is a framework for consuming and modeling RESTful web resources on iOS and OS X.' + s.homepage = 'http://www.restkit.org' + s.author = { 'Blake Watters' => 'blakewatters@gmail.com' } + s.source = { :git => 'https://github.com/RestKit/RestKit.git', :tag => 'v0.20.0-pre4' } + s.license = 'Apache License, Version 2.0' + + # Platform setup + s.requires_arc = true + s.ios.deployment_target = '5.0' + s.osx.deployment_target = '10.7' + + # Exclude optional Search and Testing modules + s.preferred_dependency = 'Core' + + ### Subspecs + + s.subspec 'Core' do |cs| + cs.source_files = 'Code/*.h', 'Vendor/LibComponentLogging/Core', 'Vendor/LibComponentLogging/NSLog' + cs.header_dir = 'RestKit' + + cs.dependency 'RestKit/ObjectMapping' + cs.dependency 'RestKit/Network' + cs.dependency 'RestKit/CoreData' + end + + s.subspec 'ObjectMapping' do |os| + os.header_dir = 'RestKit/ObjectMapping' + os.source_files = 'Code/ObjectMapping' + end + + s.subspec 'Network' do |ns| + ns.header_dir = 'RestKit/Network' + ns.source_files = 'Code/Network' + ns.ios.frameworks = 'CFNetwork', 'Security', 'MobileCoreServices', 'SystemConfiguration' + ns.osx.frameworks = 'CoreServices', 'Security', 'SystemConfiguration' + ns.dependency 'SOCKit' + ns.dependency 'AFNetworking', '1.0.1' + ns.dependency 'RestKit/ObjectMapping' + ns.dependency 'RestKit/Support' + end + + s.subspec 'CoreData' do |cdos| + cdos.header_dir = 'RestKit/CoreData' + cdos.source_files = 'Code/CoreData' + cdos.frameworks = 'CoreData' + end + + s.subspec 'Testing' do |ts| + ts.header_dir = 'RestKit/Testing' + ts.source_files = 'Code/Testing' + end + + s.subspec 'Search' do |ss| + ss.header_dir = 'RestKit/Search' + ss.source_files = 'Code/Search' + ss.dependency 'RestKit/CoreData' + end + + s.subspec 'Support' do |ss| + ss.header_dir = 'RestKit/Support' + ss.source_files = 'Code/Support' + end +end From 60c3f9a2c5ddd2259969593e8f43e245463934e5 Mon Sep 17 00:00:00 2001 From: "Juan J. Collas" Date: Sat, 15 Dec 2012 17:47:48 -0500 Subject: [PATCH 011/159] Boost provides free peer-reviewed portable C++ source libraries. PARTIAL: These are only some of the includes, needed to support WhirlyGlobe --- boost/1.51.0/boost.podspec | 76 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 boost/1.51.0/boost.podspec diff --git a/boost/1.51.0/boost.podspec b/boost/1.51.0/boost.podspec new file mode 100644 index 00000000000000..69f115119c8e70 --- /dev/null +++ b/boost/1.51.0/boost.podspec @@ -0,0 +1,76 @@ +Pod::Spec.new do |s| + s.name = "boost" + s.version = "1.51.0" + s.summary = "Boost provides free peer-reviewed portable C++ source libraries." + s.homepage = "http://www.boost.org" + s.license = { :type => "Boost Software License", + :file => "boost_1_51_0/LICENSE_1_0.txt" } + s.author = "Rene Rivera" + s.source = { :http => "http://sourceforge.net/projects/boost/files/boost/1.51.0/boost_1_51_0.tar.gz" } + + s.ios.deployment_target = "4.0" + s.osx.deployment_target = "10.6" + + s.header_mappings_dir = 'boost_1_51_0' +# s.header_mappings_dir = '.' + +# s.source_files = 'boost_1_51_0/boost/*.hpp', 'boost_1_51_0/boost/{config,smart_ptr}/**/*.hpp' + + s.subspec 'shared_ptr-includes' do |shared_ptr| + shared_ptr.preserve_paths = 'boost_1_51_0/boost/shared_ptr.hpp', + 'boost_1_51_0/boost/config.hpp', + 'boost_1_51_0/boost/config/**/*.hpp', + 'boost_1_51_0/boost/version.hpp', + 'boost_1_51_0/boost/assert.hpp', + 'boost_1_51_0/boost/current_function.hpp', + 'boost_1_51_0/boost/checked_delete.hpp', + 'boost_1_51_0/boost/throw_exception.hpp', + 'boost_1_51_0/boost/exception/detail/attribute_noreturn.hpp', + 'boost_1_51_0/boost/exception/exception.hpp', + 'boost_1_51_0/boost/memory_order.hpp', + 'boost_1_51_0/boost/detail/workaround.hpp', + 'boost_1_51_0/boost/smart_ptr/shared_ptr.hpp', + 'boost_1_51_0/boost/smart_ptr/detail/spinlock*.hpp', + 'boost_1_51_0/boost/smart_ptr/detail/yield_k.hpp', + 'boost_1_51_0/boost/smart_ptr/detail/shared_count.hpp', + 'boost_1_51_0/boost/smart_ptr/bad_weak_ptr.hpp', + 'boost_1_51_0/boost/smart_ptr/detail/sp_counted_base.hpp', + 'boost_1_51_0/boost/smart_ptr/detail/sp_counted_base_spin.hpp', + 'boost_1_51_0/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp', + 'boost_1_51_0/boost/detail/sp_typeinfo.hpp', + 'boost_1_51_0/boost/smart_ptr/detail/sp_has_sync.hpp', + 'boost_1_51_0/boost/smart_ptr/detail/sp_counted_impl.hpp', + 'boost_1_51_0/boost/smart_ptr/detail/sp_convertible.hpp', + 'boost_1_51_0/boost/smart_ptr/detail/operator_bool.hpp' + end + + s.subspec 'pointer_cast-includes' do |pointer_cast| + pointer_cast.preserve_paths = 'boost_1_51_0/boost/pointer_cast.hpp' + end + + s.subspec 'numeric-includes' do |numeric| + numeric.preserve_paths = 'boost_1_51_0/boost/numeric/**/*.hpp' + end + + s.subspec 'preprocessor-includes' do |preprocessor| + preprocessor.preserve_paths = 'boost_1_51_0/boost/preprocessor/**/*.hpp' + end + + s.subspec 'math-includes' do |math| + math.preserve_paths = 'boost_1_51_0/boost/math/**/*.hpp', + 'boost_1_51_0/boost/limits.hpp', + 'boost_1_51_0/boost/static_assert.hpp', + 'boost_1_51_0/boost/cstdint.hpp', + 'boost_1_51_0/boost/config.hpp', + 'boost_1_51_0/boost/config/**/*.hpp', + 'boost_1_51_0/boost/version.hpp', + 'boost_1_51_0/boost/detail/endian.hpp', + 'boost_1_51_0/boost/detail/limits.hpp', + 'boost_1_51_0/boost/mpl/**/*.hpp', + 'boost_1_51_0/boost/type_traits.hpp', + 'boost_1_51_0/boost/type_traits/**/*.hpp' + end + + s.xcconfig = { 'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/boost/boost_1_51_0/"' } + +end From ab9957b60f9a09968980059b910c282df0793de3 Mon Sep 17 00:00:00 2001 From: "Juan J. Collas" Date: Sat, 15 Dec 2012 17:48:38 -0500 Subject: [PATCH 012/159] Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms. --- eigen/3.0.1/eigen.podspec | 24 ++++++++++++++++++++++++ eigen/3.1.1/eigen.podspec | 24 ++++++++++++++++++++++++ eigen/3.1.2/eigen.podspec | 24 ++++++++++++++++++++++++ 3 files changed, 72 insertions(+) create mode 100644 eigen/3.0.1/eigen.podspec create mode 100644 eigen/3.1.1/eigen.podspec create mode 100644 eigen/3.1.2/eigen.podspec diff --git a/eigen/3.0.1/eigen.podspec b/eigen/3.0.1/eigen.podspec new file mode 100644 index 00000000000000..a94e0ef36322ce --- /dev/null +++ b/eigen/3.0.1/eigen.podspec @@ -0,0 +1,24 @@ +Pod::Spec.new do |s| + s.name = "eigen" + s.version = "3.0.1" + s.summary = "Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms." + s.homepage = "http://eigen.tuxfamily.org/index.php?title=Main_Page" + s.license = { :type => "GNU LGPL 2.1", + :file => "COPYING.LGPL" } + s.author = "Benoît Jacob", "Gaël Guennebaud" + s.source = { :hg => "https://bitbucket.org/eigen/eigen", :revision => "3.0.1" } + + s.ios.deployment_target = "4.0" + s.osx.deployment_target = "10.6" + + s.compiler_flags = '-DEIGEN_MPL2_ONLY' + + s.header_mappings_dir = '.' + + s.preserve_paths = './Eigen/**' + + s.dependency 'boost/numeric-includes' + s.dependency 'boost/preprocessor-includes' + + s.xcconfig = { 'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/eigen"' } +end diff --git a/eigen/3.1.1/eigen.podspec b/eigen/3.1.1/eigen.podspec new file mode 100644 index 00000000000000..a3bf6dc3667bae --- /dev/null +++ b/eigen/3.1.1/eigen.podspec @@ -0,0 +1,24 @@ +Pod::Spec.new do |s| + s.name = "eigen" + s.version = "3.1.1" + s.summary = "Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms." + s.homepage = "http://eigen.tuxfamily.org/index.php?title=Main_Page" + s.license = { :type => "Mozilla Public License v2", + :file => "COPYING.MPL2" } + s.author = "Benoît Jacob", "Gaël Guennebaud" + s.source = { :hg => "https://bitbucket.org/eigen/eigen", :revision => "3.1.1" } + + s.ios.deployment_target = "4.0" + s.osx.deployment_target = "10.6" + + s.compiler_flags = '-DEIGEN_MPL2_ONLY' + + s.header_mappings_dir = '.' + + s.preserve_paths = './Eigen/**' + + s.dependency 'boost/numeric-includes' + s.dependency 'boost/preprocessor-includes' + + s.xcconfig = { 'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/eigen"' } +end diff --git a/eigen/3.1.2/eigen.podspec b/eigen/3.1.2/eigen.podspec new file mode 100644 index 00000000000000..f09df7996d553a --- /dev/null +++ b/eigen/3.1.2/eigen.podspec @@ -0,0 +1,24 @@ +Pod::Spec.new do |s| + s.name = "eigen" + s.version = "3.1.2" + s.summary = "Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms." + s.homepage = "http://eigen.tuxfamily.org/index.php?title=Main_Page" + s.license = { :type => "Mozilla Public License v2", + :file => "COPYING.MPL2" } + s.author = "Benoît Jacob", "Gaël Guennebaud" + s.source = { :hg => "https://bitbucket.org/eigen/eigen", :revision => "3.1.2" } + + s.ios.deployment_target = "4.0" + s.osx.deployment_target = "10.6" + + s.compiler_flags = '-DEIGEN_MPL2_ONLY' + + s.header_mappings_dir = '.' + + s.preserve_paths = './Eigen/**' + + s.dependency 'boost/numeric-includes' + s.dependency 'boost/preprocessor-includes' + + s.xcconfig = { 'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/eigen"' } +end From 172793ab02da5d79c21f024ef6eb4a608a0596ff Mon Sep 17 00:00:00 2001 From: "Juan J. Collas" Date: Sat, 15 Dec 2012 18:14:30 -0500 Subject: [PATCH 013/159] WhirlyGlobe is a self contained 3D earth display view suitable for use in iPhone and iPad applications. --- WhirlyGlobe/2.0/WhirlyGlobe.podspec | 42 +++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 WhirlyGlobe/2.0/WhirlyGlobe.podspec diff --git a/WhirlyGlobe/2.0/WhirlyGlobe.podspec b/WhirlyGlobe/2.0/WhirlyGlobe.podspec new file mode 100644 index 00000000000000..a5470d911cf4fb --- /dev/null +++ b/WhirlyGlobe/2.0/WhirlyGlobe.podspec @@ -0,0 +1,42 @@ +Pod::Spec.new do |s| + s.name = "WhirlyGlobe" + s.version = "2.0" + s.summary = "WhirlyGlobe is a self contained 3D earth display view suitable for use in iPhone and iPad applications." + s.homepage = "https://github.com/mousebird/WhirlyGlobe" + s.license = { :type => "Apache 2.0", + :text => <<-LICENSE + 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 = { "Steve Gifford" => "sjg@mousebirdconsulting.com" } + s.source = { :git => "https://github.com/mousebird/WhirlyGlobe.git", :tag => "v2.0" } + + s.platform = :ios, '5.0' + + s.source_files = 'WhirlyGlobeSrc/{WhirlyGlobeLib,WhirlyGlobeComponent}/{src,include}/**/*.{mm,m,h}' + s.public_header_files = FileList['WhirlyGlobeSrc/{WhirlyGlobeLib,WhirlyGlobeComponent}/include/**/*.{h}'].exclude(/private/) + + s.requires_arc = true + + s.dependency 'eigen' + s.dependency 'boost/shared_ptr-includes' + s.dependency 'boost/pointer_cast-includes' + s.dependency 'proj4' + s.dependency 'shapelib' + s.dependency 'clipper', '4.3.0' + s.dependency 'boost/math-includes' + + s.library = 'stdc++', 'sqlite3' + s.frameworks = 'UIKit', 'QuartzCore', 'OpenGLES' + +end From 74951be8a943dce75085c4bb1ab2f3c758df8ac8 Mon Sep 17 00:00:00 2001 From: Mattes Groeger Date: Sun, 16 Dec 2012 15:05:00 +0100 Subject: [PATCH 014/159] Add MGCommand library version 0.0.1 --- MGCommand/0.0.1/MGCommand.podspec | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 MGCommand/0.0.1/MGCommand.podspec diff --git a/MGCommand/0.0.1/MGCommand.podspec b/MGCommand/0.0.1/MGCommand.podspec new file mode 100644 index 00000000000000..89fe22856917eb --- /dev/null +++ b/MGCommand/0.0.1/MGCommand.podspec @@ -0,0 +1,11 @@ +Pod::Spec.new do |s| + s.name = "MGCommand" + s.version = "0.0.1" + s.summary = "This library provides a lightweight way for executing commands sequentially or concurrently." + s.homepage = "https://github.com/MattesGroeger/MGCommand" + s.license = 'MIT' + s.author = { "Mattes Groeger" => "info@mattes-groeger.de" } + s.source = { :git => "https://github.com/MattesGroeger/MGCommand.git", :tag => "0.0.1" } + s.source_files = 'MGCommand/Classes/**/*.{h,m}' + s.requires_arc = true +end From 2995eff12592094a2ccf8042304934efbb61d1d3 Mon Sep 17 00:00:00 2001 From: Inferis Date: Sun, 16 Dec 2012 16:36:50 +0100 Subject: [PATCH 015/159] Added version 2.2 of ViewDeck. --- ViewDeck/2.2.0/ViewDeck.podspec | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 ViewDeck/2.2.0/ViewDeck.podspec diff --git a/ViewDeck/2.2.0/ViewDeck.podspec b/ViewDeck/2.2.0/ViewDeck.podspec new file mode 100644 index 00000000000000..d7912b5bad9f15 --- /dev/null +++ b/ViewDeck/2.2.0/ViewDeck.podspec @@ -0,0 +1,25 @@ +Pod::Spec.new do |s| + s.name = 'ViewDeck' + s.version = '2.2.0' + s.platform = :ios + s.summary = 'An implementation of the sliding functionality found in the ' \ + 'Path 2.0 or Facebook iOS apps.' + s.homepage = 'https://github.com/Inferis/ViewDeck' + s.license = { + :type => 'MIT', + :text => <<-LICENSE + Copyright (C) 2011-2012, Tom Adriaenssen + + 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 = { 'Tom Adriaenssen' => 'http://codedump.blergh.be/' } + s.source = { :git => 'https://github.com/Inferis/ViewDeck.git', + :tag => '2.2.0'} + s.source_files = 'ViewDeck/*.{h,m}' + s.frameworks = 'QuartzCore' +end From eb08cd92bd59d44b4837e6bb6894a0e8f9469d1a Mon Sep 17 00:00:00 2001 From: Adar Porat Date: Sun, 16 Dec 2012 10:41:29 -0500 Subject: [PATCH 016/159] added user voice 2.0.2 --- .../2.0.2/uservoice-iphone-sdk.podspec | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 uservoice-iphone-sdk/2.0.2/uservoice-iphone-sdk.podspec diff --git a/uservoice-iphone-sdk/2.0.2/uservoice-iphone-sdk.podspec b/uservoice-iphone-sdk/2.0.2/uservoice-iphone-sdk.podspec new file mode 100644 index 00000000000000..decf2db67074b9 --- /dev/null +++ b/uservoice-iphone-sdk/2.0.2/uservoice-iphone-sdk.podspec @@ -0,0 +1,20 @@ +Pod::Spec.new do |s| + s.name = "uservoice-iphone-sdk" + s.version = "2.0.2" + s.summary = "UserVoice iOS SDK for iPhone and iPad apps." + s.description = "UserVoice for iOS allows you to embed UserVoice directly in your iPhone or iPad app." + s.homepage = "http://www.uservoice.com/iphone" + s.license = 'Apache License, Version 2.0' + + s.author = 'UserVoice' + s.source = { :git => "https://github.com/uservoice/uservoice-iphone-sdk.git", :tag => "2.0.2" } + + s.platform = :ios + + s.source_files = 'Classes/*.{h,m}', 'Categories/*.{h,m}', 'Vendor/**/*.{c,h,m}', 'Include/*.h' + s.resources = "Resources/*" + + s.frameworks = 'QuartzCore', 'SystemConfiguration' + + s.requires_arc = false +end \ No newline at end of file From d934185edb660c38aa2c84824ed54efcb2b8b9c3 Mon Sep 17 00:00:00 2001 From: Fred Leitz Date: Sun, 16 Dec 2012 10:23:23 -0800 Subject: [PATCH 017/159] update ColorArt podspec to 0.0.6 --- ColorArt/0.0.6/ColorArt.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 ColorArt/0.0.6/ColorArt.podspec diff --git a/ColorArt/0.0.6/ColorArt.podspec b/ColorArt/0.0.6/ColorArt.podspec new file mode 100644 index 00000000000000..5ecf37a04e2bdb --- /dev/null +++ b/ColorArt/0.0.6/ColorArt.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = "ColorArt" + s.version = "0.0.6" + s.summary = "iTunes 11-style color matching code." + s.homepage = "https://github.com/fleitz/ColorArt" + s.license = 'CUSTOM' + s.authors = { "Fred Leitz" => "fred.leitz@gmail.com", "Aaron Brethorst" => "", "Wade Cosgrove" => "" } + s.source = { :git => "https://github.com/fleitz/ColorArt.git", :tag => "v0.0.6" } + s.platform = :ios, '5.0' + s.source_files = 'ColorArt/Classes', 'ColorArt/Classes/**/*.{h,m}' + s.frameworks = 'UIKit', 'Foundation', 'CoreGraphics', 'QuartzCore' + s.requires_arc = true +end From a1cfbdfbd9da66bf4ad74b101b43bcf02a7c70a0 Mon Sep 17 00:00:00 2001 From: Mattes Groeger Date: Sun, 16 Dec 2012 20:06:35 +0100 Subject: [PATCH 018/159] Add MGCommandConfig library version 0.0.1 --- MGCommandConfig/0.0.1/MGCommandConfig.podspec | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 MGCommandConfig/0.0.1/MGCommandConfig.podspec diff --git a/MGCommandConfig/0.0.1/MGCommandConfig.podspec b/MGCommandConfig/0.0.1/MGCommandConfig.podspec new file mode 100644 index 00000000000000..e43051fbeac471 --- /dev/null +++ b/MGCommandConfig/0.0.1/MGCommandConfig.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = "MGCommandConfig" + s.version = "0.0.1" + s.summary = "This library allows to configure commands (MGCommand lib) via config files." + s.homepage = "https://github.com/MattesGroeger/MGCommandConfig" + s.license = 'MIT' + s.author = { "Mattes Groeger" => "info@mattes-groeger.de" } + s.source = { :git => "https://github.com/MattesGroeger/MGCommandConfig.git", :tag => "0.0.1" } + s.source_files = 'MGCommandConfig/Classes/**/*.{h,m}' + s.requires_arc = true + s.dependency 'MGCommand', '~> 0.0.1' +end From 1438feb1f818285d57d92104dcfec8db23beebb3 Mon Sep 17 00:00:00 2001 From: Sebastien THIEBAUD Date: Sun, 16 Dec 2012 12:08:38 -0800 Subject: [PATCH 019/159] Added STTweetLabel 1.0.0 --- STTweetLabel/1.0.0/STTweetLabel.podspec | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 STTweetLabel/1.0.0/STTweetLabel.podspec diff --git a/STTweetLabel/1.0.0/STTweetLabel.podspec b/STTweetLabel/1.0.0/STTweetLabel.podspec new file mode 100755 index 00000000000000..cafe2485d7713d --- /dev/null +++ b/STTweetLabel/1.0.0/STTweetLabel.podspec @@ -0,0 +1,17 @@ +Pod::Spec.new do |s| + s.name = "STTweetLabel" + s.version = "1.0" + s.summary = "A custom UILabel view controller for iOS with certain words tappable like Twitter." + s.homepage = "https://github.com/SebastienThiebaud/STTweetLabel" + + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { "Sebastien THIEBAUD" => "sebastien.thiebaud@supinfo.com" } + s.source = { + :git => "https://github.com/SebastienThiebaud/STTweetLabel.git", + :tag => "1.0" + } + + s.platform = :ios, '5.0' + s.source_files = 'STTweetLabel/STTweetLabel.{h,m}', 'STTweetLabel/STLinkProtocol.h' + s.requires_arc = true +end \ No newline at end of file From 52c4afe0aed65fbf9248ee575353ea131acda3d2 Mon Sep 17 00:00:00 2001 From: Sebastien THIEBAUD Date: Sun, 16 Dec 2012 12:20:39 -0800 Subject: [PATCH 020/159] Rename the path 1.0.0 -> 1.0 --- STTweetLabel/{1.0.0 => 1.0}/STTweetLabel.podspec | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename STTweetLabel/{1.0.0 => 1.0}/STTweetLabel.podspec (100%) diff --git a/STTweetLabel/1.0.0/STTweetLabel.podspec b/STTweetLabel/1.0/STTweetLabel.podspec similarity index 100% rename from STTweetLabel/1.0.0/STTweetLabel.podspec rename to STTweetLabel/1.0/STTweetLabel.podspec From cc7195e0e41a55e6c260f5fb212d083e5f33fa60 Mon Sep 17 00:00:00 2001 From: Sebastien THIEBAUD Date: Sun, 16 Dec 2012 13:45:58 -0800 Subject: [PATCH 021/159] Version 1.0 --- STTweetLabel/1.0/STTweetLabel.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/STTweetLabel/1.0/STTweetLabel.podspec b/STTweetLabel/1.0/STTweetLabel.podspec index cafe2485d7713d..d229dd6177cff1 100755 --- a/STTweetLabel/1.0/STTweetLabel.podspec +++ b/STTweetLabel/1.0/STTweetLabel.podspec @@ -12,6 +12,6 @@ Pod::Spec.new do |s| } s.platform = :ios, '5.0' - s.source_files = 'STTweetLabel/STTweetLabel.{h,m}', 'STTweetLabel/STLinkProtocol.h' + s.source_files = 'STTweetLabel/STTweetLabel.{h,m}' s.requires_arc = true end \ No newline at end of file From 3ae78324d8b1f861415ca867305dd88bb17e53bb Mon Sep 17 00:00:00 2001 From: Lasse Bang Mikkelsen Date: Mon, 17 Dec 2012 00:13:31 +0100 Subject: [PATCH 022/159] Added Google Maps SDK for iOS 1.0.1 podspec --- .../1.0.1/Google-Maps-iOS-SDK.podspec | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Google-Maps-iOS-SDK/1.0.1/Google-Maps-iOS-SDK.podspec diff --git a/Google-Maps-iOS-SDK/1.0.1/Google-Maps-iOS-SDK.podspec b/Google-Maps-iOS-SDK/1.0.1/Google-Maps-iOS-SDK.podspec new file mode 100644 index 00000000000000..b195497658da03 --- /dev/null +++ b/Google-Maps-iOS-SDK/1.0.1/Google-Maps-iOS-SDK.podspec @@ -0,0 +1,28 @@ +Pod::Spec.new do |s| + s.name = 'Google-Maps-iOS-SDK' + s.version = '1.0.1' + s.summary = 'Google Maps SDK for iOS.' + s.description = 'With the Google Maps SDK for iOS, you can add maps based on Google maps data to your application.' + s.homepage = 'https://developers.google.com/maps/documentation/ios/' + s.license = { + :type => 'Copyright', + :text => 'Copyright 2012 Google Inc.' + } + s.author = 'Google Inc.' + + s.source = { :http => 'https://dl.google.com/geosdk/googlemaps-ios-1.0.1.zip' } + s.platform = :ios + + framework_path = 'GoogleMaps-1.0.1/GoogleMaps.framework' + + s.source_files = "#{framework_path}/Headers/*.h" + s.resource = "#{framework_path}/Resources/GoogleMaps.bundle" + + s.preserve_paths = framework_path + s.header_dir = 'GoogleMaps' + + s.frameworks = 'GoogleMaps', 'AVFoundation', 'CoreData', 'CoreLocation', 'CoreText', 'GLKit', 'ImageIO', 'OpenGLES', 'QuartzCore', 'SystemConfiguration' + s.libraries = 'icucore', 'stdc++', 'z' + + s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/Google-Maps-iOS-SDK/GoogleMaps-1.0.1"' } +end \ No newline at end of file From 2069ea8a58ac4c0e4231bfeab0dadd1b5a4dbfb5 Mon Sep 17 00:00:00 2001 From: Adam Kirk Date: Sun, 16 Dec 2012 18:24:15 -0700 Subject: [PATCH 023/159] [Add] MTGeometry (0.0.1) --- MTGeometry/0.0.1/MTGeometry.podspec | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 MTGeometry/0.0.1/MTGeometry.podspec diff --git a/MTGeometry/0.0.1/MTGeometry.podspec b/MTGeometry/0.0.1/MTGeometry.podspec new file mode 100644 index 00000000000000..e1248ae54bb573 --- /dev/null +++ b/MTGeometry/0.0.1/MTGeometry.podspec @@ -0,0 +1,11 @@ +Pod::Spec.new do |s| + s.name = "MTGeometry" + s.version = "0.0.1" + s.summary = "An extension to Core Graphics Geometry. Intersections, scaling, etc." + s.homepage = "https://github.com/mysterioustrousers/MTGeometry" + s.license = 'BSD' + s.author = { "Adam Kirk" => "atomkirk@gmail.com" } + s.source = { :git => "https://github.com/mysterioustrousers/MTGeometry.git", :tag => "0.0.1" } + s.source_files = 'MTGeometry/*.{h,c}' + s.framework = 'CoreGraphics' +end From 422ff8b12ad57f74bf23eb4f9dfcc6ed5f928069 Mon Sep 17 00:00:00 2001 From: Eric Horacek Date: Sun, 16 Dec 2012 19:04:56 -0700 Subject: [PATCH 024/159] [Update] MSNavigationPaneViewController (0.0.2) --- .../0.0.2/MSNavigationPaneViewController.podspec | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 MSNavigationPaneViewController/0.0.2/MSNavigationPaneViewController.podspec diff --git a/MSNavigationPaneViewController/0.0.2/MSNavigationPaneViewController.podspec b/MSNavigationPaneViewController/0.0.2/MSNavigationPaneViewController.podspec new file mode 100644 index 00000000000000..9ce040e991c002 --- /dev/null +++ b/MSNavigationPaneViewController/0.0.2/MSNavigationPaneViewController.podspec @@ -0,0 +1,16 @@ +Pod::Spec.new do |s| + s.name = 'MSNavigationPaneViewController' + s.version = '0.0.2' + 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 cae6f293daf5dee6cfac4931a01b9d0537efa07c Mon Sep 17 00:00:00 2001 From: Francis Chong Date: Mon, 17 Dec 2012 10:27:18 +0800 Subject: [PATCH 025/159] Add NanoStore 2.1.8 --- NanoStore/2.1.8/NanoStore.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 NanoStore/2.1.8/NanoStore.podspec diff --git a/NanoStore/2.1.8/NanoStore.podspec b/NanoStore/2.1.8/NanoStore.podspec new file mode 100644 index 00000000000000..76666ef17dc1dc --- /dev/null +++ b/NanoStore/2.1.8/NanoStore.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = 'NanoStore' + s.version = '2.1.8' + s.license = 'BSD' + s.summary = 'NanoStore is an open source, lightweight schema-less local key-value document store written in Objective-C for Mac OS X and iOS.' + s.homepage = 'https://github.com/tciuro/NanoStore' + s.authors = { 'Tito Ciuro' => 'tciuro@mac.com' } + s.source = { :git => 'https://github.com/tciuro/NanoStore.git', :tag => '2.1.8' } + s.source_files = 'Classes/**/*.{h,m}' + + s.library = 'sqlite3' + s.requires_arc = true +end From 7dac000d9089b8413a4ac9e5bfee618c1eac5ff0 Mon Sep 17 00:00:00 2001 From: Adam Kirk Date: Sun, 16 Dec 2012 22:59:07 -0700 Subject: [PATCH 026/159] [Update] MTGeometry (0.0.2) --- MTGeometry/0.0.2/MTGeometry.podspec | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 MTGeometry/0.0.2/MTGeometry.podspec diff --git a/MTGeometry/0.0.2/MTGeometry.podspec b/MTGeometry/0.0.2/MTGeometry.podspec new file mode 100644 index 00000000000000..d5115faaa8423e --- /dev/null +++ b/MTGeometry/0.0.2/MTGeometry.podspec @@ -0,0 +1,11 @@ +Pod::Spec.new do |s| + s.name = "MTGeometry" + s.version = "0.0.2" + s.summary = "An extension to Core Graphics Geometry. Intersections, scaling, etc." + s.homepage = "https://github.com/mysterioustrousers/MTGeometry" + s.license = 'BSD' + s.author = { "Adam Kirk" => "atomkirk@gmail.com" } + s.source = { :git => "https://github.com/mysterioustrousers/MTGeometry.git", :tag => "0.0.2" } + s.source_files = 'MTGeometry/*.{h,c}' + s.framework = 'CoreGraphics' +end From 9782f51448144807885f864fd513cb1671df26fb Mon Sep 17 00:00:00 2001 From: Stephen Vanterpool Date: Mon, 17 Dec 2012 00:09:43 -0800 Subject: [PATCH 027/159] Added Magical Record 2.1.beta.1 --- .../2.1.beta.1/MagicalRecord.podspec | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 MagicalRecord/2.1.beta.1/MagicalRecord.podspec diff --git a/MagicalRecord/2.1.beta.1/MagicalRecord.podspec b/MagicalRecord/2.1.beta.1/MagicalRecord.podspec new file mode 100644 index 00000000000000..038d3ee784fe42 --- /dev/null +++ b/MagicalRecord/2.1.beta.1/MagicalRecord.podspec @@ -0,0 +1,20 @@ +Pod::Spec.new do |s| + s.name = 'MagicalRecord' + s.version = '2.1.beta.1' + s.license = 'MIT' + s.summary = 'Super Awesome Easy Fetching for Core Data 1!!!11!!!!1!.' + s.homepage = 'http://github.com/magicalpanda/MagicalRecord' + s.author = { 'Saul Mora' => 'saul@magicalpanda.com' } + s.source = { :git => 'https://github.com/magicalpanda/MagicalRecord.git',:branch=>'develop', :tag => '2.1.beta.1' } + s.description = 'Handy fetching, threading and data import helpers to make Core Data a little easier to use.' + s.source_files = 'MagicalRecord/**/*.{h,m}' + s.framework = 'CoreData' + s.requires_arc = true + + def s.post_install(target) + prefix_header = config.project_pods_root + target.prefix_header_filename + prefix_header.open('a') do |file| + file.puts(%{#ifdef __OBJC__\n#define MR_SHORTHAND\n#import "CoreData+MagicalRecord.h"\n#endif}) + end + end +end From ebb8151b174952947f5bfb55ff0c5e02a9c968c5 Mon Sep 17 00:00:00 2001 From: Matthias Wessendorf Date: Mon, 17 Dec 2012 14:19:41 +0100 Subject: [PATCH 028/159] ADding new milestone to specs repo --- AeroGear/1.0.0.M2/AeroGear.podspec | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 AeroGear/1.0.0.M2/AeroGear.podspec diff --git a/AeroGear/1.0.0.M2/AeroGear.podspec b/AeroGear/1.0.0.M2/AeroGear.podspec new file mode 100644 index 00000000000000..c73bdcf84863cd --- /dev/null +++ b/AeroGear/1.0.0.M2/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.M2" + 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.M2' } + 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/pipeline/AGFilterConfig.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 e9e828a6a9eae7b2601d0b0b6e3722fe12efe188 Mon Sep 17 00:00:00 2001 From: Paolo Sangregorio Date: Mon, 17 Dec 2012 16:31:38 +0100 Subject: [PATCH 029/159] Added MNMBottomPullToRefresh podspec --- .../MNMBottomPullToRefresh.podspec | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 MNMBottomPullToRefresh/MNMBottomPullToRefresh.podspec diff --git a/MNMBottomPullToRefresh/MNMBottomPullToRefresh.podspec b/MNMBottomPullToRefresh/MNMBottomPullToRefresh.podspec new file mode 100644 index 00000000000000..c6355bae144794 --- /dev/null +++ b/MNMBottomPullToRefresh/MNMBottomPullToRefresh.podspec @@ -0,0 +1,16 @@ +Pod::Spec.new do |s| + s.name = "MNMBottomPullToRefresh" + s.version = "0.0.1" + s.summary = "." + s.description = <<-DESC + MNMBottomPullToRefresh is a solution to add pull-to-refresh feature to the bottom of an UITableView instead of the top, as usual. + DESC + s.homepage = "https://bitbucket.org/emenegro/bottom-pull-to-refresh" + s.platform = :ios, '5.0' + s.author = 'Mario Negro' + s.license = 'Copyright' + s.requires_arc = true + s.source = { :git => "https://bitbucket.org/emenegro/bottom-pull-to-refresh.git", :commit => '82d5fed6dd7f4a4df531a6954398b60b9aecec6d' } + s.source_files = 'MNMBottomPullToRefreshDemo/MNMBottomPullToRefresh/*.{h,m}' + s.resources = 'MNMBottomPullToRefreshDemo/MNMBottomPullToRefresh/*.{png,strings}' +end \ No newline at end of file From f62f543ce730368eef4c00381d5298351356b6a5 Mon Sep 17 00:00:00 2001 From: Paolo Sangregorio Date: Mon, 17 Dec 2012 16:44:44 +0100 Subject: [PATCH 030/159] Fix path for MNMBottomPullToRefresh --- MNMBottomPullToRefresh/{ => 0.0.1}/MNMBottomPullToRefresh.podspec | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename MNMBottomPullToRefresh/{ => 0.0.1}/MNMBottomPullToRefresh.podspec (100%) diff --git a/MNMBottomPullToRefresh/MNMBottomPullToRefresh.podspec b/MNMBottomPullToRefresh/0.0.1/MNMBottomPullToRefresh.podspec similarity index 100% rename from MNMBottomPullToRefresh/MNMBottomPullToRefresh.podspec rename to MNMBottomPullToRefresh/0.0.1/MNMBottomPullToRefresh.podspec From ae4e3e6ff527a25065339d42d708563480fbeda2 Mon Sep 17 00:00:00 2001 From: Andras Kovi Date: Mon, 17 Dec 2012 17:48:00 +0100 Subject: [PATCH 031/159] Udpate for ReactiveCocoa 0.12.0 --- ReactiveCocoa/0.12.0/ReactiveCocoa.podspec | 45 ++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 ReactiveCocoa/0.12.0/ReactiveCocoa.podspec diff --git a/ReactiveCocoa/0.12.0/ReactiveCocoa.podspec b/ReactiveCocoa/0.12.0/ReactiveCocoa.podspec new file mode 100644 index 00000000000000..b67c2a2944e9a0 --- /dev/null +++ b/ReactiveCocoa/0.12.0/ReactiveCocoa.podspec @@ -0,0 +1,45 @@ +Pod::Spec.new do |s| + s.name = "ReactiveCocoa" + s.version = "0.12.0" + s.summary = "A framework for composing and transforming sequences of values." + s.homepage = "https://github.com/blog/1107-reactivecocoa-is-now-open-source" + s.author = { "Josh Abernathy" => "josh@github.com" } + s.source = { :git => "https://github.com/github/ReactiveCocoa.git", :tag => "v#{s.version}" } + s.license = 'Simplified BSD License' + s.description = "ReactiveCocoa offers:\n" \ + "1. The ability to compose operations on future data.\n" \ + "2. An approach to minimizing state and mutability.\n" \ + "3. A declarative way to define behaviors and the relationships between properties.\n" \ + "4. A unified, high-level interface for asynchronous operations.\n" \ + "5. A lovely API on top of KVO." + + s.requires_arc = true + s.ios.deployment_target = '5.0' + + s.subspec 'Core' do |sp| + files = FileList['ReactiveCocoaFramework/ReactiveCocoa/*.{h,m}'] + sp.ios.source_files = files.dup.exclude(/NSButton/, /AppKit/) + sp.osx.source_files = files.dup.exclude(/UIControl/, /UIText/, /Event/, /DelegateProxy/) + sp.header_dir = 'ReactiveCocoa' + + sp.dependency 'JRSwizzle', '~> 1.0' + sp.dependency 'libextobjc/EXTKeyPathCoding', '~> 0.2.3' + sp.dependency 'libextobjc/EXTConcreteProtocol', '~> 0.2.3' + sp.dependency 'libextobjc/EXTScope', '~> 0.2.3' + end + + s.subspec 'RACExtensions' do |sp| + files = FileList['RACExtensions/*.{h,m}'] + sp.ios.source_files = files.dup.exclude(/NSTask/) + sp.osx.source_files = files + sp.dependency 'ReactiveCocoa/Core' + end + + def s.pre_install (pod, _) + header = pod.root + 'ReactiveCocoaFramework/ReactiveCocoa/ReactiveCocoa.h' + contents = header.read + contents = contents.gsub('ReactiveCocoa/libextobjc/extobjc/EXTKeyPathCoding.h', 'EXTKeyPathCoding.h') + contents = contents.gsub('ReactiveCocoa/EXTKeyPathCoding.h', 'EXTKeyPathCoding.h') + File.open(header, 'w') { |file| file.puts(contents) } + end +end \ No newline at end of file From b7e0df6adea1432a64485471b930f51b744f8c30 Mon Sep 17 00:00:00 2001 From: Adam Kirk Date: Mon, 17 Dec 2012 10:52:43 -0700 Subject: [PATCH 032/159] [Update] MTPocket (0.8.0) --- MTPocket/0.8.0/MTPocket.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 MTPocket/0.8.0/MTPocket.podspec diff --git a/MTPocket/0.8.0/MTPocket.podspec b/MTPocket/0.8.0/MTPocket.podspec new file mode 100644 index 00000000000000..6f6cf76013b713 --- /dev/null +++ b/MTPocket/0.8.0/MTPocket.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = "MTPocket" + s.version = "0.8.0" + s.summary = "A Cocoa web request library that doesn't suck." + s.description = "Simple and powerful. Convenient and informative. JSON and XML to collection object conversion. Comprehensive request and response objects." + s.homepage = "https://github.com/mysterioustrousers/MTPocket" + s.license = 'BSD' + s.author = { "Adam Kirk" => "atomkirk@gmail.com" } + s.source = { :git => "https://github.com/mysterioustrousers/MTPocket.git", :tag => "0.8.0" } + s.source_files = 'MTPocket/*.{h,m}' + s.dependency 'XMLDictionary', '~> 2.0.0' + s.dependency 'MTJSONUtils', '~> 0.1.0' + s.dependency 'Base64' +end From a8868450fa27887e775e14e416ab8df82d71c696 Mon Sep 17 00:00:00 2001 From: Tobias Sundstrand Date: Mon, 17 Dec 2012 21:05:39 +0100 Subject: [PATCH 033/159] [add] instagram-ios-sdk --- instagram-ios-sdk/0.0.1/instagram-ios-sdk.podspec | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 instagram-ios-sdk/0.0.1/instagram-ios-sdk.podspec diff --git a/instagram-ios-sdk/0.0.1/instagram-ios-sdk.podspec b/instagram-ios-sdk/0.0.1/instagram-ios-sdk.podspec new file mode 100644 index 00000000000000..e271975522d866 --- /dev/null +++ b/instagram-ios-sdk/0.0.1/instagram-ios-sdk.podspec @@ -0,0 +1,11 @@ +Pod::Spec.new do |s| + s.name = 'Instagram SDK for iOS' + s.version = '0.0.1' + s.platform = :ios + s.summary = 'This open source iOS library allows you to integrate Instagram into your iOS application include iPhone, iPad and iPod touch.' + s.homepage = 'https://github.com/crino/instagram-ios-sdk' + s.author = { 'Cristiano Severini'} + s.source = { :git => 'https://github.com/crino/instagram-ios-sdk.git', :commit => '0af5a2f70a053be720aa0357d00ce5a4d61b8a8a' } + s.source_files = 'instagram-ios-sdk/instagram-ios-sdk/instagram-ios-sdk' + s.license = 'MIT' +end From b508c4d9b0a1fb7fc77e93ba6307469e8da0555e Mon Sep 17 00:00:00 2001 From: Jeong YunWon Date: Tue, 18 Dec 2012 05:30:56 +0900 Subject: [PATCH 034/159] FoundationExtension 0.8 --- FoundationExtension/{0.7 => 0.8}/FoundationExtension.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename FoundationExtension/{0.7 => 0.8}/FoundationExtension.podspec (96%) diff --git a/FoundationExtension/0.7/FoundationExtension.podspec b/FoundationExtension/0.8/FoundationExtension.podspec similarity index 96% rename from FoundationExtension/0.7/FoundationExtension.podspec rename to FoundationExtension/0.8/FoundationExtension.podspec index a0d618d5f88d0d..e63e576d023f9a 100644 --- a/FoundationExtension/0.7/FoundationExtension.podspec +++ b/FoundationExtension/0.8/FoundationExtension.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "FoundationExtension" - s.version = "0.7" + s.version = "0.8" 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.7" } + s.source = { :git => "https://github.com/youknowone/FoundationExtension.git", :tag => "pod-0.8" } s.dependency "cdebug", "~> 0.1" s.subspec "FoundationExtension" do |ss| From f488faccf777a2424b02ea003b76059052b26b01 Mon Sep 17 00:00:00 2001 From: Jeong YunWon Date: Tue, 18 Dec 2012 05:43:00 +0900 Subject: [PATCH 035/159] revert --- FoundationExtension/{0.8 => 0.7}/FoundationExtension.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename FoundationExtension/{0.8 => 0.7}/FoundationExtension.podspec (96%) diff --git a/FoundationExtension/0.8/FoundationExtension.podspec b/FoundationExtension/0.7/FoundationExtension.podspec similarity index 96% rename from FoundationExtension/0.8/FoundationExtension.podspec rename to FoundationExtension/0.7/FoundationExtension.podspec index e63e576d023f9a..a0d618d5f88d0d 100644 --- a/FoundationExtension/0.8/FoundationExtension.podspec +++ b/FoundationExtension/0.7/FoundationExtension.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "FoundationExtension" - s.version = "0.8" + 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.8" } + s.source = { :git => "https://github.com/youknowone/FoundationExtension.git", :tag => "pod-0.7" } s.dependency "cdebug", "~> 0.1" s.subspec "FoundationExtension" do |ss| From e054671eba0cfb99274115629610fa3ed808b809 Mon Sep 17 00:00:00 2001 From: Tobias Sundstrand Date: Mon, 17 Dec 2012 21:49:36 +0100 Subject: [PATCH 036/159] [updated]instagram-ios-sdk --- .../0.0.1/instagram-ios-sdk.podspec | 29 +++++++++++++------ 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/instagram-ios-sdk/0.0.1/instagram-ios-sdk.podspec b/instagram-ios-sdk/0.0.1/instagram-ios-sdk.podspec index e271975522d866..372d877fddeecb 100644 --- a/instagram-ios-sdk/0.0.1/instagram-ios-sdk.podspec +++ b/instagram-ios-sdk/0.0.1/instagram-ios-sdk.podspec @@ -1,11 +1,22 @@ Pod::Spec.new do |s| - s.name = 'Instagram SDK for iOS' - s.version = '0.0.1' - s.platform = :ios - s.summary = 'This open source iOS library allows you to integrate Instagram into your iOS application include iPhone, iPad and iPod touch.' - s.homepage = 'https://github.com/crino/instagram-ios-sdk' - s.author = { 'Cristiano Severini'} - s.source = { :git => 'https://github.com/crino/instagram-ios-sdk.git', :commit => '0af5a2f70a053be720aa0357d00ce5a4d61b8a8a' } - s.source_files = 'instagram-ios-sdk/instagram-ios-sdk/instagram-ios-sdk' - s.license = 'MIT' + s.name = "instagram-ios-sdk" + s.version = "0.0.1" + s.summary = "Instagram SDK for iOS." + s.description = "This open source iOS library allows you to integrate Instagram into your iOS application include iPhone, iPad and iPod touch." + s.homepage = "http://www.followgram.me" + s.license = { + :type => 'MIT', + :text => "LICENSE + + Copyright (C) 2012 Cristiano Severini + + Distributed under the MIT License." + } + s.author = 'Cristiano Severini' + s.source = { :git => "https://github.com/crino/instagram-ios-sdk.git", :commit => "0af5a2f70a053be720aa0357d00ce5a4d61b8a8a" } + s.platform = :ios, '5.0' + s.source_files = 'instagram-ios-sdk/instagram-ios-sdk' + s.public_header_files = 'instagram-ios-sdk/instagram-ios-sdk/*.h' + s.requires_arc = true + s.dependency 'SBJson', '2.2.3' end From 5fe2542d310bedd96d8eeec70303a7161910987c Mon Sep 17 00:00:00 2001 From: Dan Fleming Date: Mon, 17 Dec 2012 16:23:56 -0500 Subject: [PATCH 037/159] Updated MagicalRecord 1.8.3 spec to correspond to the one in the repo --- MagicalRecord/1.8.3/MagicalRecord.podspec | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/MagicalRecord/1.8.3/MagicalRecord.podspec b/MagicalRecord/1.8.3/MagicalRecord.podspec index 1cd15e5f7c825e..924493afd10ff7 100644 --- a/MagicalRecord/1.8.3/MagicalRecord.podspec +++ b/MagicalRecord/1.8.3/MagicalRecord.podspec @@ -2,13 +2,18 @@ Pod::Spec.new do |s| s.name = 'MagicalRecord' s.version = '1.8.3' s.license = 'MIT' - s.summary = 'Super Awesome Easy Fetching for Core Data 1!!!11!!!!1!.' + s.summary = 'Super Awesome Easy Fetching for Core Data 1!!!11!!!!1!' s.homepage = 'http://github.com/magicalpanda/MagicalRecord' s.author = { 'Saul Mora' => 'saul@magicalpanda.com' } - s.source = { :git => 'https://github.com/magicalpanda/MagicalRecord.git', :tag => '1.8.3' } + s.source = { :git => 'http://github.com/magicalpanda/MagicalRecord.git', :tag => '1.8.3' } s.description = 'Handy fetching, threading and data import helpers to make Core Data a little easier to use.' s.source_files = 'Source/**/*.{h,m}' s.framework = 'CoreData' - s.prefix_header_contents = "#define MR_SHORTHAND 1\n#import \"CoreData+MagicalRecord.h\"" -end + def s.post_install(target) + prefix_header = config.project_pods_root + target.prefix_header_filename + prefix_header.open('a') do |file| + file.puts(%{#ifdef __OBJC__\n#define MR_SHORTHAND 1\n#import "CoreData+MagicalRecord.h"\n#endif}) + end + end +end \ No newline at end of file From 74bc8eff8c8a8b57848e13625fac204d7cb29987 Mon Sep 17 00:00:00 2001 From: Vincent Tourraine Date: Mon, 17 Dec 2012 22:31:22 +0100 Subject: [PATCH 038/159] Add KSCustomUIPopover podspec v0.0.1 --- KSCustomUIPopover/0.0.1/KSCustomUIPopover.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 KSCustomUIPopover/0.0.1/KSCustomUIPopover.podspec diff --git a/KSCustomUIPopover/0.0.1/KSCustomUIPopover.podspec b/KSCustomUIPopover/0.0.1/KSCustomUIPopover.podspec new file mode 100644 index 00000000000000..185910255c7ade --- /dev/null +++ b/KSCustomUIPopover/0.0.1/KSCustomUIPopover.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = "KSCustomUIPopover" + s.version = "0.0.1" + s.summary = "Example project showing how to customize UIPopover with images." + s.homepage = "http://www.scianski.com" + s.license = 'MIT' + s.author = { "Krzysztof Scianski" => "krzysztof@scianski.com" } + s.source = { :git => "https://github.com/Scianski/KSCustomUIPopover.git", :commit => "80d0da3bc21c878f29ff78aa1185b04f80cf4ef7" } + s.platform = :ios, '5.0' + s.source_files = 'Classes', 'KSCustomPopover/KSCustomPopoverBackgroundView.{h,m}' + s.resources = "KSCustomPopover/*.png" + s.requires_arc = true +end From b21b28dc4b2c97a2e3eae3c628aeebec62954283 Mon Sep 17 00:00:00 2001 From: Dan Fleming Date: Mon, 17 Dec 2012 16:44:45 -0500 Subject: [PATCH 039/159] Fixed Travis validation errors in MagicalRecord 1.8.3 (oh copy-and-paste, you've undone me again) --- MagicalRecord/1.8.3/MagicalRecord.podspec | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/MagicalRecord/1.8.3/MagicalRecord.podspec b/MagicalRecord/1.8.3/MagicalRecord.podspec index 924493afd10ff7..cd187d20042aa6 100644 --- a/MagicalRecord/1.8.3/MagicalRecord.podspec +++ b/MagicalRecord/1.8.3/MagicalRecord.podspec @@ -2,8 +2,8 @@ Pod::Spec.new do |s| s.name = 'MagicalRecord' s.version = '1.8.3' s.license = 'MIT' - s.summary = 'Super Awesome Easy Fetching for Core Data 1!!!11!!!!1!' - s.homepage = 'http://github.com/magicalpanda/MagicalRecord' + s.summary = 'Super Awesome Easy Fetching for Core Data 1!!!11!!!!1!.' + s.homepage = 'https://github.com/magicalpanda/MagicalRecord' s.author = { 'Saul Mora' => 'saul@magicalpanda.com' } s.source = { :git => 'http://github.com/magicalpanda/MagicalRecord.git', :tag => '1.8.3' } s.description = 'Handy fetching, threading and data import helpers to make Core Data a little easier to use.' @@ -16,4 +16,5 @@ Pod::Spec.new do |s| file.puts(%{#ifdef __OBJC__\n#define MR_SHORTHAND 1\n#import "CoreData+MagicalRecord.h"\n#endif}) end end -end \ No newline at end of file +end + From 2b9004ed7ec569ddba4007ffb79d2d2accdbe1c7 Mon Sep 17 00:00:00 2001 From: Ben Kreeger Date: Mon, 17 Dec 2012 15:46:32 -0600 Subject: [PATCH 040/159] Adding new version of BDKNotifyHUD podspec. --- BDKNotifyHUD/1.1.0/BDKNotifyHUD.podspec | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 BDKNotifyHUD/1.1.0/BDKNotifyHUD.podspec diff --git a/BDKNotifyHUD/1.1.0/BDKNotifyHUD.podspec b/BDKNotifyHUD/1.1.0/BDKNotifyHUD.podspec new file mode 100644 index 00000000000000..96c0177778675b --- /dev/null +++ b/BDKNotifyHUD/1.1.0/BDKNotifyHUD.podspec @@ -0,0 +1,25 @@ +Pod::Spec.new do |s| + s.name = 'BDKNotifyHUD' + s.version = '1.1.0' + s.platform = :ios + s.summary = 'An animated UIView for displaying a temporary "bezel" notification, mid-screen.' + s.description = 'An animated UIView for displaying a temporary "bezel" notification, mid-screen.' + s.homepage = 'https://github.com/kreeger/BDKNotifyHUD' + s.license = { + :type => 'MIT', + :text => <<-LICENSE + Copyright (C) 2012 Benjamin Kreeger. + +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 = { 'Benjamin Kreeger' => 'http://ben.kree.gr/' } + s.source = { :git => 'https://github.com/kreeger/BDKNotifyHUD.git', :tag => 'v1.1.0' } + s.source_files = 'BDKNotifyHUD/BDKNotifyHUD.{h,m}' + s.frameworks = 'QuartzCore' + s.requires_arc = true +end From a3263c44a291e81c475bf5b9896fcb1b5a6e12d4 Mon Sep 17 00:00:00 2001 From: Dan Fleming Date: Mon, 17 Dec 2012 16:48:27 -0500 Subject: [PATCH 041/159] Third time's the charm right? --- MagicalRecord/1.8.3/MagicalRecord.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MagicalRecord/1.8.3/MagicalRecord.podspec b/MagicalRecord/1.8.3/MagicalRecord.podspec index cd187d20042aa6..fed591abc25cae 100644 --- a/MagicalRecord/1.8.3/MagicalRecord.podspec +++ b/MagicalRecord/1.8.3/MagicalRecord.podspec @@ -3,9 +3,9 @@ Pod::Spec.new do |s| s.version = '1.8.3' s.license = 'MIT' s.summary = 'Super Awesome Easy Fetching for Core Data 1!!!11!!!!1!.' - s.homepage = 'https://github.com/magicalpanda/MagicalRecord' + s.homepage = 'http://github.com/magicalpanda/MagicalRecord' s.author = { 'Saul Mora' => 'saul@magicalpanda.com' } - s.source = { :git => 'http://github.com/magicalpanda/MagicalRecord.git', :tag => '1.8.3' } + s.source = { :git => 'https://github.com/magicalpanda/MagicalRecord.git', :tag => '1.8.3' } s.description = 'Handy fetching, threading and data import helpers to make Core Data a little easier to use.' s.source_files = 'Source/**/*.{h,m}' s.framework = 'CoreData' From f6c4e3c24a1243b80c251536eb1abbe01fa1ffb9 Mon Sep 17 00:00:00 2001 From: Mattt Thompson Date: Mon, 17 Dec 2012 15:04:17 -0800 Subject: [PATCH 042/159] Adding AFKissXMLRequestOperation podspec --- .../0.0.1/AFKissXMLRequestOperation.podspec | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 AFKissXMLRequestOperation/0.0.1/AFKissXMLRequestOperation.podspec diff --git a/AFKissXMLRequestOperation/0.0.1/AFKissXMLRequestOperation.podspec b/AFKissXMLRequestOperation/0.0.1/AFKissXMLRequestOperation.podspec new file mode 100644 index 00000000000000..870b18538d70ea --- /dev/null +++ b/AFKissXMLRequestOperation/0.0.1/AFKissXMLRequestOperation.podspec @@ -0,0 +1,15 @@ +Pod::Spec.new do |s| + s.name = 'AFKissXMLRequestOperation' + s.version = '0.0.1' + s.homepage = 'https://github.com/AFNetworking/AFKissXMLRequestOperation' + s.authors = { 'Mattt Thompson' => 'm@mattt.me' } + s.license = 'MIT' + s.summary = 'An extension for AFNetworking that provides an interface to parse XML using KissXML.' + s.source = { :git => 'https://github.com/AFNetworking/AFKissXMLRequestOperation.git', :tag => '0.0.1' } + s.source_files = 'AFKissXMLRequestOperation.{h,m}' + s.dependency 'AFNetworking' + s.dependency 'KissXML' + s.ios.deployment_target = '5.0' + s.osx.deployment_target = '10.7' + s.requires_arc = true +end From 50d11fd0ba8cbbc65a80d080fb6d724d8df4d0d3 Mon Sep 17 00:00:00 2001 From: Mattt Thompson Date: Mon, 17 Dec 2012 15:41:34 -0800 Subject: [PATCH 043/159] Adding podspec for AFHTTPRequestOperationLogger 0.10.0 --- .../0.10.0/AFHTTPRequestOperationLogger.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 AFHTTPRequestOperationLogger/0.10.0/AFHTTPRequestOperationLogger.podspec diff --git a/AFHTTPRequestOperationLogger/0.10.0/AFHTTPRequestOperationLogger.podspec b/AFHTTPRequestOperationLogger/0.10.0/AFHTTPRequestOperationLogger.podspec new file mode 100644 index 00000000000000..4cb9474a1f3aef --- /dev/null +++ b/AFHTTPRequestOperationLogger/0.10.0/AFHTTPRequestOperationLogger.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = 'AFHTTPRequestOperationLogger' + s.version = '0.10.0' + s.license = 'MIT' + s.summary = 'AFNetworking Extension for HTTP Request Logging' + s.homepage = 'https://github.com/AFNetworking/AFHTTPRequestOperationLogger' + s.authors = { 'Mattt Thompson' => 'm@mattt.me' } + s.source = { :git => 'https://github.com/AFNetworking/AFHTTPRequestOperationLogger.git', :tag => '0.10.0' } + s.source_files = 'AFHTTPRequestOperationLogger.{h,m}' + s.requires_arc = true + + s.dependency 'AFNetworking', '>= 0.9.0' +end From f7ac670220b7ea84eb7e8bb47de1a7fd6ddc6070 Mon Sep 17 00:00:00 2001 From: Ben Huang Date: Tue, 18 Dec 2012 09:58:14 +0800 Subject: [PATCH 044/159] Added InfinitePagingView podspec. --- .../0.0.1/InfinitePagingView.podspec | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 InfinitePagingView/0.0.1/InfinitePagingView.podspec diff --git a/InfinitePagingView/0.0.1/InfinitePagingView.podspec b/InfinitePagingView/0.0.1/InfinitePagingView.podspec new file mode 100644 index 00000000000000..aa7e4f56928365 --- /dev/null +++ b/InfinitePagingView/0.0.1/InfinitePagingView.podspec @@ -0,0 +1,17 @@ +Pod::Spec.new do |s| + s.name = "InfinitePagingView" + s.version = "0.0.1" + s.summary = "InfinitePagingView is a subclass of UIView. It contains an endlessly scrollable UIScrollView." + s.description = <<-DESC + InfinitePagingView is a subclass of UIView. It contains an endlessly scrollable UIScrollView.on't worry about the indent, we strip it! + DESC + s.homepage = "https://github.com/caesarcat/InfinitePagingView" + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { "SHIGETA Takuji" => "shigeta@qnote.co.jp" } + s.source = { :git => "https://github.com/caesarcat/InfinitePagingView.git", :commit => "ba137b9001f294f021887b8746f6704e7a6322b6" } + s.platform = :ios + + s.source_files = 'Classes', 'Classes/**/*.{h,m}' + + s.requires_arc = true +end From 62b6885f2ae922dcaa6b80f93c72a37cbc6e428e Mon Sep 17 00:00:00 2001 From: Dan Fleming Date: Mon, 17 Dec 2012 23:01:26 -0500 Subject: [PATCH 045/159] Fixed compilation errors for MagicalRecord 1.7.1 --- MagicalRecord/1.7.1/MagicalRecord.podspec | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/MagicalRecord/1.7.1/MagicalRecord.podspec b/MagicalRecord/1.7.1/MagicalRecord.podspec index 9beef9dbe4c240..e2a9ce2494e1d3 100644 --- a/MagicalRecord/1.7.1/MagicalRecord.podspec +++ b/MagicalRecord/1.7.1/MagicalRecord.podspec @@ -10,5 +10,11 @@ Pod::Spec.new do |s| s.source_files = 'Source/**/*.{h,m}' s.framework = 'CoreData' s.requires_arc = true - s.prefix_header_contents = "#define MR_SHORTHAND 1\n#import \"CoreData+MagicalRecord.h\"" + + def s.post_install(target) + prefix_header = config.project_pods_root + target.prefix_header_filename + prefix_header.open('a') do |file| + file.puts(%{#ifdef __OBJC__\n#define MR_SHORTHAND 1\n#import "CoreData+MagicalRecord.h"\n#endif}) + end + end end From 890d00fcd40d4da2d08754c1a79c1e67846b3940 Mon Sep 17 00:00:00 2001 From: Parker Wightman Date: Mon, 17 Dec 2012 21:49:47 -0700 Subject: [PATCH 046/159] [Add] MTBlockAlertView (0.0.1) --- MTBlockAlertView/0.0.1/MTBlockAlertView.podspec | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 MTBlockAlertView/0.0.1/MTBlockAlertView.podspec diff --git a/MTBlockAlertView/0.0.1/MTBlockAlertView.podspec b/MTBlockAlertView/0.0.1/MTBlockAlertView.podspec new file mode 100644 index 00000000000000..47b7d7b0273adf --- /dev/null +++ b/MTBlockAlertView/0.0.1/MTBlockAlertView.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = "MTBlockAlertView" + s.version = "0.0.1" + s.summary = "An iOS Alert View that uses block-based delegation instead of protocols." + s.homepage = "https://github.com/mysterioustrousers/MTBlockAlertView" + s.license = 'MIT' + s.authors = { "Mysterious Trousers, LLC" => "drycleanonly@mysterioustrousers.com", "Parker Wightman" => "parkerwightman@gmail.com" } + s.source = { :git => "https://github.com/mysterioustrousers/MTBlockAlertView.git", :tag => "0.0.1" } + s.platform = :ios, '5.1' + s.source_files = 'MTBlockAlertView/MTBlockAlertView/*.{h,m}' + s.requires_arc = true +end From aeecf86059c8deebfb39f3865bb6ef436d412aec Mon Sep 17 00:00:00 2001 From: Sebastien THIEBAUD Date: Mon, 17 Dec 2012 22:04:15 -0800 Subject: [PATCH 047/159] STTweetLabel 1.0.1 --- STTweetLabel/1.0.1/STTweetLabel.podspec | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 STTweetLabel/1.0.1/STTweetLabel.podspec diff --git a/STTweetLabel/1.0.1/STTweetLabel.podspec b/STTweetLabel/1.0.1/STTweetLabel.podspec new file mode 100755 index 00000000000000..86d3fcf4702e82 --- /dev/null +++ b/STTweetLabel/1.0.1/STTweetLabel.podspec @@ -0,0 +1,17 @@ +Pod::Spec.new do |s| + s.name = "STTweetLabel" + s.version = "1.0.1" + s.summary = "A custom UILabel view controller for iOS with certain words tappable like Twitter." + s.homepage = "https://github.com/SebastienThiebaud/STTweetLabel" + + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { "Sebastien THIEBAUD" => "sebastien.thiebaud@supinfo.com" } + s.source = { + :git => "https://github.com/SebastienThiebaud/STTweetLabel.git", + :tag => "1.0.1" + } + + s.platform = :ios, '5.0' + s.source_files = 'STTweetLabel/STTweetLabel.{h,m}' + s.requires_arc = true +end \ No newline at end of file From effbef8d73552d92f1ec95d719b8533314b95ffe Mon Sep 17 00:00:00 2001 From: Eric Horacek Date: Tue, 18 Dec 2012 01:10:50 -0700 Subject: [PATCH 048/159] [Update] MSNavigationPaneViewController (0.0.3) --- .../0.0.3/MSNavigationPaneViewController.podspec | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 MSNavigationPaneViewController/0.0.3/MSNavigationPaneViewController.podspec diff --git a/MSNavigationPaneViewController/0.0.3/MSNavigationPaneViewController.podspec b/MSNavigationPaneViewController/0.0.3/MSNavigationPaneViewController.podspec new file mode 100644 index 00000000000000..4c74da62a2f4ad --- /dev/null +++ b/MSNavigationPaneViewController/0.0.3/MSNavigationPaneViewController.podspec @@ -0,0 +1,16 @@ +Pod::Spec.new do |s| + s.name = 'MSNavigationPaneViewController' + s.version = '0.0.3' + 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 5082e126cde416be17ec2f2d24824c3927e225a4 Mon Sep 17 00:00:00 2001 From: fawkeswei Date: Tue, 18 Dec 2012 19:52:07 +0800 Subject: [PATCH 049/159] [Update] GoogleMapsKit (1.0.1) --- GoogleMapsKit/1.0.1/GoogleMapsKit.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 GoogleMapsKit/1.0.1/GoogleMapsKit.podspec diff --git a/GoogleMapsKit/1.0.1/GoogleMapsKit.podspec b/GoogleMapsKit/1.0.1/GoogleMapsKit.podspec new file mode 100644 index 00000000000000..f74280a52787c1 --- /dev/null +++ b/GoogleMapsKit/1.0.1/GoogleMapsKit.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = "GoogleMapsKit" + s.version = "1.0.1" + s.summary = "Unofficial wrapper to quickly launch Google Maps for iPhone from your app." + s.homepage = "http://blog.fawkeswei.com/2012/12/17/googlemapskit-launch-google-maps-for-iphone-from-your-app/" + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { "Fawkes Wei" => "fawkeswei@gmail.com" } + + s.source = { :git => "https://github.com/fawkeswei/GoogleMapsKit.git", :tag => "v1.0.1" } + s.platform = :ios, '5.0' + s.source_files = 'GoogleMapsKit/*.{h,m}' + s.framework = 'CoreLocation' +end From e6fad942fbfcc6d4b4100860b97d77a57d46d294 Mon Sep 17 00:00:00 2001 From: Markus Emrich Date: Tue, 18 Dec 2012 14:03:51 +0100 Subject: [PATCH 050/159] Added JDFlipNumberView 2.0 - complete rewrite. --- JDFlipNumberView/2.0/JDFlipNumberView.podspec | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 JDFlipNumberView/2.0/JDFlipNumberView.podspec diff --git a/JDFlipNumberView/2.0/JDFlipNumberView.podspec b/JDFlipNumberView/2.0/JDFlipNumberView.podspec new file mode 100644 index 00000000000000..cbe52378a83e6e --- /dev/null +++ b/JDFlipNumberView/2.0/JDFlipNumberView.podspec @@ -0,0 +1,20 @@ +Pod::Spec.new do |s| + + s.name = "JDFlipNumberView" + s.version = "2.0" + s.summary = "A simple, yet powerful, customizable FlipNumberView based on CoreAnimation (Simulating an analog flip display)." + + s.description = "The FlipNumberView is simulating an analog flip display (like those for the departure time on the airport). It's well abstracted and damn easy to use. It may be used for Countdowns, Timers, clocks or any other number display. Supports automatic animation in either direction. An example project is given. Supports ARC." + + s.homepage = "https://github.com/jaydee3/JDFlipNumberView" + s.license = "MIT" + s.author = { "Markus Emrich" => "markus@nxtbgthng.com" } + + s.source = { :git => "https://github.com/jaydee3/JDFlipNumberView.git", :tag => "pod-2.0" } + s.source_files = 'JDFlipNumberView/**/*.{h,m}' + s.resource = "JDFlipNumberView/JDFlipNumberView.bundle" + s.platform = :ios, '5.0' + s.frameworks = "QuartzCore" + s.requires_arc = true + +end From df5ca720ceb7d7bed860db3f003479b87a66d0f9 Mon Sep 17 00:00:00 2001 From: Thomas Kollbach Date: Tue, 18 Dec 2012 14:39:54 +0100 Subject: [PATCH 051/159] Add Podspec for NXActivities 0.2.2 --- NXActivities/0.2.2/NXActivities.podspec | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 NXActivities/0.2.2/NXActivities.podspec diff --git a/NXActivities/0.2.2/NXActivities.podspec b/NXActivities/0.2.2/NXActivities.podspec new file mode 100644 index 00000000000000..cb3f16303f33d7 --- /dev/null +++ b/NXActivities/0.2.2/NXActivities.podspec @@ -0,0 +1,22 @@ +Pod::Spec.new do |s| + s.platform = :ios, '6.0' + s.ios.deployment_target = '5.0' + s.name = 'NXActivities' + + s.version = '0.2.2' + s.license = 'BSD' + + s.summary = 'Provides ready to use UIActivity implementations for popular webservices. Currently supports Instapaper and Pocket.' + s.homepage = 'https://github.com/nxtbgthng/NXActivities' + s.author = { 'Thomas Kollbach' => 'toto@nxtbgthng.com' } + + s.dependency 'MBProgressHUD', '0.5' + + s.source = { :git => 'https://github.com/nxtbgthng/NXActivities.git', :tag => "v#{s.version}" } + s.source_files = 'Sources/*.{h,m}' + s.resources = 'Resources/NXActivities.bundle' + + s.requires_arc = true + s.framework = "CoreGraphics" + s.framework = "Security" +end From 09edad4eb9d18f03e69cee98810dd944d1a4fd8c Mon Sep 17 00:00:00 2001 From: Matthias Wessendorf Date: Tue, 18 Dec 2012 17:01:34 +0100 Subject: [PATCH 052/159] Adding the final 1.0.0.M1 to the repo --- AeroGear-OTP/1.0.0.M1/AeroGear-OTP.podspec | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 AeroGear-OTP/1.0.0.M1/AeroGear-OTP.podspec diff --git a/AeroGear-OTP/1.0.0.M1/AeroGear-OTP.podspec b/AeroGear-OTP/1.0.0.M1/AeroGear-OTP.podspec new file mode 100644 index 00000000000000..7f60d1865c8db1 --- /dev/null +++ b/AeroGear-OTP/1.0.0.M1/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" + 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' } + 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', 'aerogear-otp.ios/Classes/AGClock.h', 'aerogear-otp.ios/Classes/AGBase32.h', 'aerogear-otp.ios/Classes/AGStringEncoding.h' + s.requires_arc = true +end From 907f737b9a6cbc8f57f2f5431fcb4f8679006f8e Mon Sep 17 00:00:00 2001 From: Adam Kirk Date: Tue, 18 Dec 2012 09:03:28 -0700 Subject: [PATCH 053/159] [Update] FamilySearchCocoa (0.8.6) --- .../0.8.6/FamilySearchCocoa.podspec | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 FamilySearchCocoa/0.8.6/FamilySearchCocoa.podspec diff --git a/FamilySearchCocoa/0.8.6/FamilySearchCocoa.podspec b/FamilySearchCocoa/0.8.6/FamilySearchCocoa.podspec new file mode 100644 index 00000000000000..eb97f6aebd776b --- /dev/null +++ b/FamilySearchCocoa/0.8.6/FamilySearchCocoa.podspec @@ -0,0 +1,18 @@ +Pod::Spec.new do |s| + s.name = "FamilySearchCocoa" + s.version = "0.8.6" + s.summary = "An easy to use library for interacting with the FamilySearch.org API on iOS or OS X" + s.description = <<-DESC + You need to get a developer key from https://devnet.familysearch.org/ first. Then you can easily get the current user, add + parents, children, spouses and modify a persons events like birth, death, marriage date, etc. More is coming soon. + DESC + s.homepage = "https://github.com/FamilySearch/FamilySearchCocoa" + s.license = 'BSD' + s.author = { "Adam Kirk" => "akirk@familysearch.org" } + s.source = { :git => "https://github.com/FamilySearch/FamilySearchCocoa.git", :tag => "0.8.6" } + s.source_files = 'FamilySearchCocoa/*.{h,m}' + s.requires_arc = true + s.dependency 'MTPocket' + s.dependency 'MTDates' + s.dependency 'MTJSONUtils' +end From 7f441dd23263b4048b8a44eafcfa04f5c6ece63a Mon Sep 17 00:00:00 2001 From: Matthias Wessendorf Date: Tue, 18 Dec 2012 17:09:19 +0100 Subject: [PATCH 054/159] Remove outdated, and wrong versioned SNAPSHOTS --- .../1.0.0.M1.20121124/AeroGear-OTP.podspec | 31 ------------------- .../1.0.0.M1.20121211/AeroGear-OTP.podspec | 31 ------------------- .../1.0.0.M1.20121212/AeroGear-OTP.podspec | 31 ------------------- 3 files changed, 93 deletions(-) delete mode 100644 AeroGear-OTP/1.0.0.M1.20121124/AeroGear-OTP.podspec delete mode 100644 AeroGear-OTP/1.0.0.M1.20121211/AeroGear-OTP.podspec delete mode 100644 AeroGear-OTP/1.0.0.M1.20121212/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 deleted file mode 100644 index 1aa2814d1d4373..00000000000000 --- a/AeroGear-OTP/1.0.0.M1.20121124/AeroGear-OTP.podspec +++ /dev/null @@ -1,31 +0,0 @@ -# -# 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 diff --git a/AeroGear-OTP/1.0.0.M1.20121211/AeroGear-OTP.podspec b/AeroGear-OTP/1.0.0.M1.20121211/AeroGear-OTP.podspec deleted file mode 100644 index 56289fad588c73..00000000000000 --- a/AeroGear-OTP/1.0.0.M1.20121211/AeroGear-OTP.podspec +++ /dev/null @@ -1,31 +0,0 @@ -# -# 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.20121211" - 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.20121211' } - 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', 'aerogear-otp.ios/Classes/AGClock.h', 'aerogear-otp.ios/Classes/AGBase32.h', 'aerogear-otp.ios/Classes/AGStringEncoding.h' - s.requires_arc = true -end diff --git a/AeroGear-OTP/1.0.0.M1.20121212/AeroGear-OTP.podspec b/AeroGear-OTP/1.0.0.M1.20121212/AeroGear-OTP.podspec deleted file mode 100644 index c2d835af6c62c2..00000000000000 --- a/AeroGear-OTP/1.0.0.M1.20121212/AeroGear-OTP.podspec +++ /dev/null @@ -1,31 +0,0 @@ -# -# 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.20121212" - 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.20121212' } - 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', 'aerogear-otp.ios/Classes/AGClock.h', 'aerogear-otp.ios/Classes/AGBase32.h', 'aerogear-otp.ios/Classes/AGStringEncoding.h' - s.requires_arc = true -end From 638ba60edc27d164669d9899989c57eeffca048b Mon Sep 17 00:00:00 2001 From: Jeong YunWon Date: Tue, 18 Dec 2012 05:44:38 +0900 Subject: [PATCH 055/159] FoundationExtension 0.8 and old versions --- .../0.1/FoundationExtension.podspec | 41 +++++++++++++++++++ .../0.2.1/FoundationExtension.podspec | 41 +++++++++++++++++++ .../0.4/FoundationExtension.podspec | 41 +++++++++++++++++++ .../0.5/FoundationExtension.podspec | 41 +++++++++++++++++++ .../0.6.2/FoundationExtension.podspec | 41 +++++++++++++++++++ .../0.8/FoundationExtension.podspec | 41 +++++++++++++++++++ 6 files changed, 246 insertions(+) create mode 100644 FoundationExtension/0.1/FoundationExtension.podspec create mode 100644 FoundationExtension/0.2.1/FoundationExtension.podspec create mode 100644 FoundationExtension/0.4/FoundationExtension.podspec create mode 100644 FoundationExtension/0.5/FoundationExtension.podspec create mode 100644 FoundationExtension/0.6.2/FoundationExtension.podspec create mode 100644 FoundationExtension/0.8/FoundationExtension.podspec diff --git a/FoundationExtension/0.1/FoundationExtension.podspec b/FoundationExtension/0.1/FoundationExtension.podspec new file mode 100644 index 00000000000000..7abdd84aa26088 --- /dev/null +++ b/FoundationExtension/0.1/FoundationExtension.podspec @@ -0,0 +1,41 @@ +Pod::Spec.new do |s| + s.name = "FoundationExtension" + s.version = "0.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. + * Many common snippets in a method call. + * Looks like native foundation methods - It follows Apple Coding Guideline and Foundation naming convention. + See document on [Github] (http://youknowone.github.com/FoundationExtension) + + Try FoundationExtension for Foundation extensions. + For iOS, UIKitExtension is available too. + DESC + 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.1" } + s.dependency "cdebug", "~> 0.1" + + s.subspec "FoundationExtension" do |ss| + ss.source_files = "FoundationExtension" + ss.xcconfig = { "GCC_PREFIX_HEADER" => "FoundationExtension/FoundationExtension-Prefix.pch" } + end + + s.subspec "CocoaExtension" do |ss| + ss.platform = :osx + ss.source_files = "CocoaExtension" + ss.header_dir = "CocoaExtension" + ss.framework = "Cocoa" + ss.xcconfig = { "GCC_PREFIX_HEADER" => "CocoaExtension/CocoaExtension-Prefix.pch" } + ss.dependency "FoundationExtension/FoundationExtension" + end + + s.subspec "UIKitExtension" do |ss| + ss.platform = :ios + ss.source_files = "UIKitExtension" + ss.header_dir = "UIKitExtension" + ss.xcconfig = { "GCC_PREFIX_HEADER" => "UIKitExtension/UIKitExtension-Prefix.pch" } + ss.dependency "FoundationExtension/FoundationExtension" + end +end diff --git a/FoundationExtension/0.2.1/FoundationExtension.podspec b/FoundationExtension/0.2.1/FoundationExtension.podspec new file mode 100644 index 00000000000000..127355d05479a5 --- /dev/null +++ b/FoundationExtension/0.2.1/FoundationExtension.podspec @@ -0,0 +1,41 @@ +Pod::Spec.new do |s| + s.name = "FoundationExtension" + s.version = "0.2.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. + * Many common snippets in a method call. + * Looks like native foundation methods - It follows Apple Coding Guideline and Foundation naming convention. + See document on [Github] (http://youknowone.github.com/FoundationExtension) + + Try FoundationExtension for Foundation extensions. + For iOS, UIKitExtension is available too. + DESC + 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.2.1" } + s.dependency "cdebug", "~> 0.1" + + s.subspec "FoundationExtension" do |ss| + ss.source_files = "FoundationExtension" + ss.xcconfig = { "GCC_PREFIX_HEADER" => "FoundationExtension/FoundationExtension-Prefix.pch" } + end + + s.subspec "CocoaExtension" do |ss| + ss.platform = :osx + ss.source_files = "CocoaExtension" + ss.header_dir = "CocoaExtension" + ss.framework = "Cocoa" + ss.xcconfig = { "GCC_PREFIX_HEADER" => "CocoaExtension/CocoaExtension-Prefix.pch" } + ss.dependency "FoundationExtension/FoundationExtension" + end + + s.subspec "UIKitExtension" do |ss| + ss.platform = :ios + ss.source_files = "UIKitExtension" + ss.header_dir = "UIKitExtension" + ss.xcconfig = { "GCC_PREFIX_HEADER" => "UIKitExtension/UIKitExtension-Prefix.pch" } + ss.dependency "FoundationExtension/FoundationExtension" + end +end diff --git a/FoundationExtension/0.4/FoundationExtension.podspec b/FoundationExtension/0.4/FoundationExtension.podspec new file mode 100644 index 00000000000000..fa90495d1ba0a3 --- /dev/null +++ b/FoundationExtension/0.4/FoundationExtension.podspec @@ -0,0 +1,41 @@ +Pod::Spec.new do |s| + s.name = "FoundationExtension" + s.version = "0.4" + 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. + * Many common snippets in a method call. + * Looks like native foundation methods - It follows Apple Coding Guideline and Foundation naming convention. + See document on [Github] (http://youknowone.github.com/FoundationExtension) + + Try FoundationExtension for Foundation extensions. + For iOS, UIKitExtension is available too. + DESC + 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.4" } + s.dependency "cdebug", "~> 0.1" + + s.subspec "FoundationExtension" do |ss| + ss.source_files = "FoundationExtension" + ss.xcconfig = { "GCC_PREFIX_HEADER" => "FoundationExtension/FoundationExtension-Prefix.pch" } + end + + s.subspec "CocoaExtension" do |ss| + ss.platform = :osx + ss.source_files = "CocoaExtension" + ss.header_dir = "CocoaExtension" + ss.framework = "Cocoa" + ss.xcconfig = { "GCC_PREFIX_HEADER" => "CocoaExtension/CocoaExtension-Prefix.pch" } + ss.dependency "FoundationExtension/FoundationExtension" + end + + s.subspec "UIKitExtension" do |ss| + ss.platform = :ios + ss.source_files = "UIKitExtension" + ss.header_dir = "UIKitExtension" + ss.xcconfig = { "GCC_PREFIX_HEADER" => "UIKitExtension/UIKitExtension-Prefix.pch" } + ss.dependency "FoundationExtension/FoundationExtension" + end +end diff --git a/FoundationExtension/0.5/FoundationExtension.podspec b/FoundationExtension/0.5/FoundationExtension.podspec new file mode 100644 index 00000000000000..5b56a9a9ca2298 --- /dev/null +++ b/FoundationExtension/0.5/FoundationExtension.podspec @@ -0,0 +1,41 @@ +Pod::Spec.new do |s| + s.name = "FoundationExtension" + s.version = "0.5" + 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. + * Many common snippets in a method call. + * Looks like native foundation methods - It follows Apple Coding Guideline and Foundation naming convention. + See document on [Github] (http://youknowone.github.com/FoundationExtension) + + Try FoundationExtension for Foundation extensions. + For iOS, UIKitExtension is available too. + DESC + 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.dependency "cdebug", "~> 0.1" + + s.subspec "FoundationExtension" do |ss| + ss.source_files = "FoundationExtension" + ss.xcconfig = { "GCC_PREFIX_HEADER" => "FoundationExtension/FoundationExtension-Prefix.pch" } + end + + s.subspec "CocoaExtension" do |ss| + ss.platform = :osx + ss.source_files = "CocoaExtension" + ss.header_dir = "CocoaExtension" + ss.framework = "Cocoa" + ss.xcconfig = { "GCC_PREFIX_HEADER" => "CocoaExtension/CocoaExtension-Prefix.pch" } + ss.dependency "FoundationExtension/FoundationExtension" + end + + s.subspec "UIKitExtension" do |ss| + ss.platform = :ios + ss.source_files = "UIKitExtension" + ss.header_dir = "UIKitExtension" + ss.xcconfig = { "GCC_PREFIX_HEADER" => "UIKitExtension/UIKitExtension-Prefix.pch" } + ss.dependency "FoundationExtension/FoundationExtension" + end +end diff --git a/FoundationExtension/0.6.2/FoundationExtension.podspec b/FoundationExtension/0.6.2/FoundationExtension.podspec new file mode 100644 index 00000000000000..b3ed1dd0c4da07 --- /dev/null +++ b/FoundationExtension/0.6.2/FoundationExtension.podspec @@ -0,0 +1,41 @@ +Pod::Spec.new do |s| + s.name = "FoundationExtension" + 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. + * Many common snippets in a method call. + * Looks like native foundation methods - It follows Apple Coding Guideline and Foundation naming convention. + See document on [Github] (http://youknowone.github.com/FoundationExtension) + + Try FoundationExtension for Foundation extensions. + For iOS, UIKitExtension is available too. + DESC + 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.dependency "cdebug", "~> 0.1" + + s.subspec "FoundationExtension" do |ss| + ss.source_files = "FoundationExtension" + ss.xcconfig = { "GCC_PREFIX_HEADER" => "FoundationExtension/FoundationExtension-Prefix.pch" } + end + + s.subspec "CocoaExtension" do |ss| + ss.platform = :osx + ss.source_files = "CocoaExtension" + ss.header_dir = "CocoaExtension" + ss.framework = "Cocoa" + ss.xcconfig = { "GCC_PREFIX_HEADER" => "CocoaExtension/CocoaExtension-Prefix.pch" } + ss.dependency "FoundationExtension/FoundationExtension" + end + + s.subspec "UIKitExtension" do |ss| + ss.platform = :ios + ss.source_files = "UIKitExtension" + ss.header_dir = "UIKitExtension" + ss.xcconfig = { "GCC_PREFIX_HEADER" => "UIKitExtension/UIKitExtension-Prefix.pch" } + ss.dependency "FoundationExtension/FoundationExtension" + end +end diff --git a/FoundationExtension/0.8/FoundationExtension.podspec b/FoundationExtension/0.8/FoundationExtension.podspec new file mode 100644 index 00000000000000..e63e576d023f9a --- /dev/null +++ b/FoundationExtension/0.8/FoundationExtension.podspec @@ -0,0 +1,41 @@ +Pod::Spec.new do |s| + s.name = "FoundationExtension" + s.version = "0.8" + 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. + * Many common snippets in a method call. + * Looks like native foundation methods - It follows Apple Coding Guideline and Foundation naming convention. + See document on [Github] (http://youknowone.github.com/FoundationExtension) + + Try FoundationExtension for Foundation extensions. + For iOS, UIKitExtension is available too. + DESC + 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.8" } + s.dependency "cdebug", "~> 0.1" + + s.subspec "FoundationExtension" do |ss| + ss.source_files = "FoundationExtension" + ss.xcconfig = { "GCC_PREFIX_HEADER" => "FoundationExtension/FoundationExtension-Prefix.pch" } + end + + s.subspec "CocoaExtension" do |ss| + ss.platform = :osx + ss.source_files = "CocoaExtension" + ss.header_dir = "CocoaExtension" + ss.framework = "Cocoa" + ss.xcconfig = { "GCC_PREFIX_HEADER" => "CocoaExtension/CocoaExtension-Prefix.pch" } + ss.dependency "FoundationExtension/FoundationExtension" + end + + s.subspec "UIKitExtension" do |ss| + ss.platform = :ios + ss.source_files = "UIKitExtension" + ss.header_dir = "UIKitExtension" + ss.xcconfig = { "GCC_PREFIX_HEADER" => "UIKitExtension/UIKitExtension-Prefix.pch" } + ss.dependency "FoundationExtension/FoundationExtension" + end +end From 2344d2ee02dd75310f9cd69c75fcf26192798d5d Mon Sep 17 00:00:00 2001 From: Parker Wightman Date: Tue, 18 Dec 2012 11:01:56 -0700 Subject: [PATCH 056/159] [Update] MTBlockAlertView (0.1.0) --- MTBlockAlertView/0.1.0/MTBlockAlertView.podspec | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 MTBlockAlertView/0.1.0/MTBlockAlertView.podspec diff --git a/MTBlockAlertView/0.1.0/MTBlockAlertView.podspec b/MTBlockAlertView/0.1.0/MTBlockAlertView.podspec new file mode 100644 index 00000000000000..5dc22733d70904 --- /dev/null +++ b/MTBlockAlertView/0.1.0/MTBlockAlertView.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = "MTBlockAlertView" + s.version = "0.1.0" + s.summary = "An iOS Alert View that uses block-based delegation instead of protocols." + s.homepage = "https://github.com/mysterioustrousers/MTBlockAlertView" + s.license = 'MIT' + s.authors = { "Mysterious Trousers, LLC" => "drycleanonly@mysterioustrousers.com", "Parker Wightman" => "parkerwightman@gmail.com" } + s.source = { :git => "https://github.com/mysterioustrousers/MTBlockAlertView.git", :tag => "0.1.0" } + s.platform = :ios, '5.1' + s.source_files = 'MTBlockAlertView/MTBlockAlertView/*.{h,m}' + s.requires_arc = true +end From 3c04820f4559ddd2b3a95256f5e544aca8ba4c7e Mon Sep 17 00:00:00 2001 From: Adam Kirk Date: Tue, 18 Dec 2012 11:03:20 -0700 Subject: [PATCH 057/159] [Update] MTGeometry (0.0.3) --- MTGeometry/0.0.3/MTGeometry.podspec | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 MTGeometry/0.0.3/MTGeometry.podspec diff --git a/MTGeometry/0.0.3/MTGeometry.podspec b/MTGeometry/0.0.3/MTGeometry.podspec new file mode 100644 index 00000000000000..f629e0d64a4443 --- /dev/null +++ b/MTGeometry/0.0.3/MTGeometry.podspec @@ -0,0 +1,11 @@ +Pod::Spec.new do |s| + s.name = "MTGeometry" + s.version = "0.0.3" + s.summary = "An extension to Core Graphics Geometry. Intersections, scaling, etc." + s.homepage = "https://github.com/mysterioustrousers/MTGeometry" + s.license = 'BSD' + s.author = { "Adam Kirk" => "atomkirk@gmail.com" } + s.source = { :git => "https://github.com/mysterioustrousers/MTGeometry.git", :tag => "0.0.3" } + s.source_files = 'MTGeometry/*.{h,c}' + s.framework = 'CoreGraphics' +end From 9b42d140796cd21812861e4ee84f50b2e6439a42 Mon Sep 17 00:00:00 2001 From: Sebastien THIEBAUD Date: Tue, 18 Dec 2012 10:20:31 -0800 Subject: [PATCH 058/159] STTweetLabel 1.1 Updated protocol --- STTweetLabel/1.1/STTweetLabel.podspec | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 STTweetLabel/1.1/STTweetLabel.podspec diff --git a/STTweetLabel/1.1/STTweetLabel.podspec b/STTweetLabel/1.1/STTweetLabel.podspec new file mode 100755 index 00000000000000..013290830579b6 --- /dev/null +++ b/STTweetLabel/1.1/STTweetLabel.podspec @@ -0,0 +1,17 @@ +Pod::Spec.new do |s| + s.name = "STTweetLabel" + s.version = "1.1" + s.summary = "A custom UILabel view controller for iOS with certain words tappable like Twitter." + s.homepage = "https://github.com/SebastienThiebaud/STTweetLabel" + + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { "Sebastien THIEBAUD" => "sebastien.thiebaud@supinfo.com" } + s.source = { + :git => "https://github.com/SebastienThiebaud/STTweetLabel.git", + :tag => "1.1" + } + + s.platform = :ios, '5.0' + s.source_files = 'STTweetLabel/STTweetLabel.{h,m}' + s.requires_arc = true +end \ No newline at end of file From cfe66f4518e199a3b0089883b5e3cc62a38ebf29 Mon Sep 17 00:00:00 2001 From: Sebastien THIEBAUD Date: Tue, 18 Dec 2012 10:35:05 -0800 Subject: [PATCH 059/159] STTweetLabel 1.1.0 --- STTweetLabel/{1.1 => 1.1.0}/STTweetLabel.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename STTweetLabel/{1.1 => 1.1.0}/STTweetLabel.podspec (91%) diff --git a/STTweetLabel/1.1/STTweetLabel.podspec b/STTweetLabel/1.1.0/STTweetLabel.podspec similarity index 91% rename from STTweetLabel/1.1/STTweetLabel.podspec rename to STTweetLabel/1.1.0/STTweetLabel.podspec index 013290830579b6..afcd3f70abdf87 100755 --- a/STTweetLabel/1.1/STTweetLabel.podspec +++ b/STTweetLabel/1.1.0/STTweetLabel.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "STTweetLabel" - s.version = "1.1" + s.version = "1.1.0" s.summary = "A custom UILabel view controller for iOS with certain words tappable like Twitter." s.homepage = "https://github.com/SebastienThiebaud/STTweetLabel" @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.author = { "Sebastien THIEBAUD" => "sebastien.thiebaud@supinfo.com" } s.source = { :git => "https://github.com/SebastienThiebaud/STTweetLabel.git", - :tag => "1.1" + :tag => "1.1.0" } s.platform = :ios, '5.0' From 805c48c924259b2011485e2918352ba66d1e4fc3 Mon Sep 17 00:00:00 2001 From: "Justin R. Miller" Date: Tue, 18 Dec 2012 12:31:15 -0800 Subject: [PATCH 060/159] updated contact info for MapBox pods --- Fingertips/0.1.0/Fingertips.podspec | 2 +- MapBox/0.4.0/MapBox.podspec | 2 +- MapBox/0.4.1/MapBox.podspec | 2 +- MapBox/0.4.2/MapBox.podspec | 2 +- MapBox/0.4.3/MapBox.podspec | 2 +- MapBox/0.5.0/MapBox.podspec | 2 +- MapBox/0.5.1/MapBox.podspec | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Fingertips/0.1.0/Fingertips.podspec b/Fingertips/0.1.0/Fingertips.podspec index 07b0e5c05af91a..9d38e7dba7911b 100644 --- a/Fingertips/0.1.0/Fingertips.podspec +++ b/Fingertips/0.1.0/Fingertips.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |f| f.description = 'A small UIWindow subclass that gives you automatic presentation mode in your iOS app.' f.homepage = 'http://github.com/developmentseed/fingertips' f.license = 'BSD' - f.author = { 'Justin R. Miller' => 'justin@developmentseed.org' } + f.author = { 'MapBox' => 'ios@mapbox.com' } f.source = { :git => 'https://github.com/developmentseed/fingertips.git', :tag => '0.1.0' } diff --git a/MapBox/0.4.0/MapBox.podspec b/MapBox/0.4.0/MapBox.podspec index 61e76ea859ad44..462e460f3db40f 100644 --- a/MapBox/0.4.0/MapBox.podspec +++ b/MapBox/0.4.0/MapBox.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |m| m.description = 'Open source alternative to MapKit supporting custom tile sources, offline use, and complete cache control.' m.homepage = 'http://mapbox.com/mobile' m.license = 'BSD' - m.author = { 'Justin R. Miller' => 'justin@mapbox.com' } + m.author = { 'MapBox' => 'ios@mapbox.com' } m.source = { :git => 'https://github.com/mapbox/mapbox-ios-sdk.git', :tag => '0.4.0' } diff --git a/MapBox/0.4.1/MapBox.podspec b/MapBox/0.4.1/MapBox.podspec index 10527b079dbf63..32171ef8dea6db 100644 --- a/MapBox/0.4.1/MapBox.podspec +++ b/MapBox/0.4.1/MapBox.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |m| m.description = 'Open source alternative to MapKit supporting custom tile sources, offline use, and complete cache control.' m.homepage = 'http://mapbox.com/mobile' m.license = 'BSD' - m.author = { 'Justin R. Miller' => 'justin@mapbox.com' } + m.author = { 'MapBox' => 'ios@mapbox.com' } m.source = { :git => 'https://github.com/mapbox/mapbox-ios-sdk.git', :tag => '0.4.1' } diff --git a/MapBox/0.4.2/MapBox.podspec b/MapBox/0.4.2/MapBox.podspec index fd3c7579381f34..28bac16ef1eb33 100644 --- a/MapBox/0.4.2/MapBox.podspec +++ b/MapBox/0.4.2/MapBox.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |m| m.description = 'Open source alternative to MapKit supporting custom tile sources, offline use, and complete cache control.' m.homepage = 'http://mapbox.com/mobile' m.license = 'BSD' - m.author = { 'Justin R. Miller' => 'justin@mapbox.com' } + m.author = { 'MapBox' => 'ios@mapbox.com' } m.source = { :git => 'https://github.com/mapbox/mapbox-ios-sdk.git', :tag => '0.4.2' } diff --git a/MapBox/0.4.3/MapBox.podspec b/MapBox/0.4.3/MapBox.podspec index 1081273b3d0257..c34fb3d8501744 100644 --- a/MapBox/0.4.3/MapBox.podspec +++ b/MapBox/0.4.3/MapBox.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |m| m.description = 'Open source alternative to MapKit supporting custom tile sources, offline use, and complete cache control.' m.homepage = 'http://mapbox.com/mobile' m.license = 'BSD' - m.author = { 'Justin R. Miller' => 'justin@mapbox.com' } + m.author = { 'MapBox' => 'ios@mapbox.com' } m.source = { :git => 'https://github.com/mapbox/mapbox-ios-sdk.git', :tag => '0.4.3' } diff --git a/MapBox/0.5.0/MapBox.podspec b/MapBox/0.5.0/MapBox.podspec index b2d74f1902f3f4..625a8a5fb28879 100644 --- a/MapBox/0.5.0/MapBox.podspec +++ b/MapBox/0.5.0/MapBox.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |m| m.description = 'Open source alternative to MapKit supporting custom tile sources, offline use, and complete cache control.' m.homepage = 'http://mapbox.com/mobile' m.license = 'BSD' - m.author = { 'Justin R. Miller' => 'justin@mapbox.com' } + m.author = { 'MapBox' => 'ios@mapbox.com' } m.source = { :git => 'https://github.com/mapbox/mapbox-ios-sdk.git', :tag => '0.5.0' } diff --git a/MapBox/0.5.1/MapBox.podspec b/MapBox/0.5.1/MapBox.podspec index 4f4eeb2d1e2ff6..08b564376b5428 100644 --- a/MapBox/0.5.1/MapBox.podspec +++ b/MapBox/0.5.1/MapBox.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |m| m.description = 'Open source alternative to MapKit supporting custom tile sources, offline use, and complete cache control.' m.homepage = 'http://mapbox.com/mobile' m.license = 'BSD' - m.author = { 'Justin R. Miller' => 'justin@mapbox.com' } + m.author = { 'MapBox' => 'ios@mapbox.com' } m.source = { :git => 'https://github.com/mapbox/mapbox-ios-sdk.git', :tag => '0.5.1' } From b45cd34d23e47b02ae967ada8ffa46e4228ba188 Mon Sep 17 00:00:00 2001 From: Adam Kirk Date: Tue, 18 Dec 2012 13:58:35 -0700 Subject: [PATCH 061/159] [Add] MTPencil (0.0.1) --- MTPencil/0.0.1/MTPencil.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 MTPencil/0.0.1/MTPencil.podspec diff --git a/MTPencil/0.0.1/MTPencil.podspec b/MTPencil/0.0.1/MTPencil.podspec new file mode 100644 index 00000000000000..b54eee23655eb5 --- /dev/null +++ b/MTPencil/0.0.1/MTPencil.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = "MTPencil" + s.version = "0.0.1" + s.summary = "Library for animated line drawing (like an invisible pencil)." + s.homepage = "https://github.com/mysterioustrousers/MTPencil" + s.license = 'BSD' + s.author = { "Adam Kirk" => "atomkirk@gmail.com" } + s.source = { :git => "https://github.com/mysterioustrousers/MTPencil.git", :tag => "0.0.1" } + s.platform = :ios, '5.0' + s.source_files = 'MTPencil/MTPencil.{h,m}' + s.framework = 'CoreGraphics' + s.requires_arc = true + s.dependency 'MTGeometry' +end From d175cfb5d3e19a50537e660bcdbff71a6b97835f Mon Sep 17 00:00:00 2001 From: Chris Wagner Date: Tue, 18 Dec 2012 14:30:36 -0700 Subject: [PATCH 062/159] remove :ios platform specification GData works on OSX as well as iOS --- GData/1.9.1/GData.podspec | 1 - 1 file changed, 1 deletion(-) diff --git a/GData/1.9.1/GData.podspec b/GData/1.9.1/GData.podspec index c0150fc210784a..47055cde64580c 100644 --- a/GData/1.9.1/GData.podspec +++ b/GData/1.9.1/GData.podspec @@ -1,7 +1,6 @@ Pod::Spec.new do |s| s.name = 'GData' s.version = '1.9.1' - s.platform = :ios s.license = { :type => 'Apache License, Version 2.0', :file => 'COPYING.txt' } s.summary = "The Google data APIs provide a simple protocol for reading and "\ "writing data on the web. Many Google services provide a Google data API." From b2d47b3e67757af67b12dcd07e72744b30111112 Mon Sep 17 00:00:00 2001 From: Adam Kirk Date: Tue, 18 Dec 2012 15:17:39 -0700 Subject: [PATCH 063/159] [Update] MTPencil (0.0.2) --- MTPencil/0.0.2/MTPencil.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 MTPencil/0.0.2/MTPencil.podspec diff --git a/MTPencil/0.0.2/MTPencil.podspec b/MTPencil/0.0.2/MTPencil.podspec new file mode 100644 index 00000000000000..4ef4f58e838a1d --- /dev/null +++ b/MTPencil/0.0.2/MTPencil.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = "MTPencil" + s.version = "0.0.2" + s.summary = "Library for animated line drawing (like an invisible pencil)." + s.homepage = "https://github.com/mysterioustrousers/MTPencil" + s.license = 'BSD' + s.author = { "Adam Kirk" => "atomkirk@gmail.com" } + s.source = { :git => "https://github.com/mysterioustrousers/MTPencil.git", :tag => "0.0.2" } + s.platform = :ios, '5.0' + s.source_files = 'MTPencil/MTPencil.{h,m}' + s.framework = 'CoreGraphics' + s.requires_arc = true + s.dependency 'MTGeometry' +end From 7d02d09f5948063e19f03d06eca69ff5f4d42807 Mon Sep 17 00:00:00 2001 From: Kevin Renskers Date: Tue, 18 Dec 2012 22:45:59 +0000 Subject: [PATCH 064/159] [Add] GVUserDefaults (0.1.0) --- GVUserDefaults/0.1.0/GVUserDefaults.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 GVUserDefaults/0.1.0/GVUserDefaults.podspec diff --git a/GVUserDefaults/0.1.0/GVUserDefaults.podspec b/GVUserDefaults/0.1.0/GVUserDefaults.podspec new file mode 100644 index 00000000000000..cd5746b614c283 --- /dev/null +++ b/GVUserDefaults/0.1.0/GVUserDefaults.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = "GVUserDefaults" + s.version = "0.1.0" + s.summary = "NSUserDefaults access via properties." + s.homepage = "https://github.com/gangverk/GVUserDefaults" + s.license = 'MIT' + s.author = { "Kevin Renskers" => "info@mixedcase.nl" } + s.source = { :git => "https://github.com/gangverk/GVUserDefaults.git", :tag => s.version.to_s } + s.ios.deployment_target = '4.0' + s.osx.deployment_target = '10.6' + s.source_files = 'GVUserDefaults/*.{h,m}' + s.requires_arc = true +end From 55cf07fdf4b9ca3cd4fd4a99186e12f0da6e68d8 Mon Sep 17 00:00:00 2001 From: Jacob Jennings Date: Tue, 18 Dec 2012 15:14:51 -0800 Subject: [PATCH 065/159] Update HTStateAwareRasterImageView podspec. --- .../0.0.1/HTStateAwareRasterImageView.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HTStateAwareRasterImageView/0.0.1/HTStateAwareRasterImageView.podspec b/HTStateAwareRasterImageView/0.0.1/HTStateAwareRasterImageView.podspec index e140364432c410..a47b2df96ecd91 100644 --- a/HTStateAwareRasterImageView/0.0.1/HTStateAwareRasterImageView.podspec +++ b/HTStateAwareRasterImageView/0.0.1/HTStateAwareRasterImageView.podspec @@ -6,7 +6,7 @@ Pod::Spec.new do |s| s.homepage = "https://github.com/hoteltonight/HTStateAwareRasterImageView" s.license = 'MIT' s.author = { "Jacob Jennings" => "jacob.r.jennings@gmail.com" } - s.source = { :git => "https://github.com/hoteltonight/HTStateAwareRasterImageView.git", :commit => '07b3a38694b199e41b71e622fde54c52064643f8' } + s.source = { :git => "https://github.com/hoteltonight/HTStateAwareRasterImageView.git", :commit => '493fccf49c5fd24b375b3fbbd73c2870a7e2af4d' } s.ios.deployment_target = '4.3' s.source_files = 'Classes', '*.{h,m}' s.requires_arc = true From a044a0521d9de34ec9e963f7ca3f8a575a754637 Mon Sep 17 00:00:00 2001 From: Zac Altman Date: Wed, 19 Dec 2012 11:59:33 +1100 Subject: [PATCH 066/159] Added ZAActivityBar --- ZAActivityBar/1.0/ZAActivityBar.podspec | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 ZAActivityBar/1.0/ZAActivityBar.podspec diff --git a/ZAActivityBar/1.0/ZAActivityBar.podspec b/ZAActivityBar/1.0/ZAActivityBar.podspec new file mode 100644 index 00000000000000..e420a563a589b4 --- /dev/null +++ b/ZAActivityBar/1.0/ZAActivityBar.podspec @@ -0,0 +1,17 @@ +Pod::Spec.new do |s| + s.name = "ZAActivityBar" + s.version = "0.1" + s.platform = :ios, "5.0" + s.license = "MIT" + s.summary = "An easy-to-use activity bar that's meant to non-intrusively display the progress of a task." + s.homepage = "https://github.com/zacaltman/ZAActivityBar" + s.author = { "Zac Altman" => "zac@basind.com" } + s.source = { :git => "https://github.com/zacaltman/ZAActivityBar.git", :tag => "0.1" } + s.source_files = "ZAActivityBar/*.{h,m}" + + s.framework = "QuartzCore" + s.dependency "SKBounceAnimation", "~> 1.0" + s.resources = "ZAActivityBar/ZAActivityBar.bundle" + + s.requires_arc = true +end From 12909648eaa569efe6a4df8cc61f306c7d81cebd Mon Sep 17 00:00:00 2001 From: Zac Altman Date: Wed, 19 Dec 2012 12:06:18 +1100 Subject: [PATCH 067/159] Added Description --- ZAActivityBar/1.0/ZAActivityBar.podspec | 1 + 1 file changed, 1 insertion(+) diff --git a/ZAActivityBar/1.0/ZAActivityBar.podspec b/ZAActivityBar/1.0/ZAActivityBar.podspec index e420a563a589b4..2b43d5eb22c136 100644 --- a/ZAActivityBar/1.0/ZAActivityBar.podspec +++ b/ZAActivityBar/1.0/ZAActivityBar.podspec @@ -4,6 +4,7 @@ Pod::Spec.new do |s| s.platform = :ios, "5.0" s.license = "MIT" s.summary = "An easy-to-use activity bar that's meant to non-intrusively display the progress of a task." + s.description = "An easy-to-use activity bar that's meant to non-intrusively display the progress of a task." s.homepage = "https://github.com/zacaltman/ZAActivityBar" s.author = { "Zac Altman" => "zac@basind.com" } s.source = { :git => "https://github.com/zacaltman/ZAActivityBar.git", :tag => "0.1" } From abb8e642985b490fbb09d855a36aec2fab3e421a Mon Sep 17 00:00:00 2001 From: Zac Altman Date: Wed, 19 Dec 2012 12:21:24 +1100 Subject: [PATCH 068/159] Modified --- ZAActivityBar/1.0/ZAActivityBar.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ZAActivityBar/1.0/ZAActivityBar.podspec b/ZAActivityBar/1.0/ZAActivityBar.podspec index 2b43d5eb22c136..7d8dee15c544d2 100644 --- a/ZAActivityBar/1.0/ZAActivityBar.podspec +++ b/ZAActivityBar/1.0/ZAActivityBar.podspec @@ -1,13 +1,13 @@ Pod::Spec.new do |s| s.name = "ZAActivityBar" - s.version = "0.1" + s.version = "0.1.1" s.platform = :ios, "5.0" s.license = "MIT" s.summary = "An easy-to-use activity bar that's meant to non-intrusively display the progress of a task." s.description = "An easy-to-use activity bar that's meant to non-intrusively display the progress of a task." s.homepage = "https://github.com/zacaltman/ZAActivityBar" s.author = { "Zac Altman" => "zac@basind.com" } - s.source = { :git => "https://github.com/zacaltman/ZAActivityBar.git", :tag => "0.1" } + s.source = { :git => "https://github.com/zacaltman/ZAActivityBar.git", :tag => "0.1.1" } s.source_files = "ZAActivityBar/*.{h,m}" s.framework = "QuartzCore" From d7825ea7cb233c3a31888c9f22650bfabb9af26e Mon Sep 17 00:00:00 2001 From: Zac Altman Date: Wed, 19 Dec 2012 12:23:41 +1100 Subject: [PATCH 069/159] Modified to 0.1.1 --- ZAActivityBar/0.1.1/ZAActivityBar.podspec | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ZAActivityBar/0.1.1/ZAActivityBar.podspec diff --git a/ZAActivityBar/0.1.1/ZAActivityBar.podspec b/ZAActivityBar/0.1.1/ZAActivityBar.podspec new file mode 100644 index 00000000000000..7d8dee15c544d2 --- /dev/null +++ b/ZAActivityBar/0.1.1/ZAActivityBar.podspec @@ -0,0 +1,18 @@ +Pod::Spec.new do |s| + s.name = "ZAActivityBar" + s.version = "0.1.1" + s.platform = :ios, "5.0" + s.license = "MIT" + s.summary = "An easy-to-use activity bar that's meant to non-intrusively display the progress of a task." + s.description = "An easy-to-use activity bar that's meant to non-intrusively display the progress of a task." + s.homepage = "https://github.com/zacaltman/ZAActivityBar" + s.author = { "Zac Altman" => "zac@basind.com" } + s.source = { :git => "https://github.com/zacaltman/ZAActivityBar.git", :tag => "0.1.1" } + s.source_files = "ZAActivityBar/*.{h,m}" + + s.framework = "QuartzCore" + s.dependency "SKBounceAnimation", "~> 1.0" + s.resources = "ZAActivityBar/ZAActivityBar.bundle" + + s.requires_arc = true +end From cee456ab43a7a3db3a8890a32223e0d65adc438b Mon Sep 17 00:00:00 2001 From: Zac Altman Date: Wed, 19 Dec 2012 12:27:16 +1100 Subject: [PATCH 070/159] Removed old spec --- ZAActivityBar/1.0/ZAActivityBar.podspec | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 ZAActivityBar/1.0/ZAActivityBar.podspec diff --git a/ZAActivityBar/1.0/ZAActivityBar.podspec b/ZAActivityBar/1.0/ZAActivityBar.podspec deleted file mode 100644 index 7d8dee15c544d2..00000000000000 --- a/ZAActivityBar/1.0/ZAActivityBar.podspec +++ /dev/null @@ -1,18 +0,0 @@ -Pod::Spec.new do |s| - s.name = "ZAActivityBar" - s.version = "0.1.1" - s.platform = :ios, "5.0" - s.license = "MIT" - s.summary = "An easy-to-use activity bar that's meant to non-intrusively display the progress of a task." - s.description = "An easy-to-use activity bar that's meant to non-intrusively display the progress of a task." - s.homepage = "https://github.com/zacaltman/ZAActivityBar" - s.author = { "Zac Altman" => "zac@basind.com" } - s.source = { :git => "https://github.com/zacaltman/ZAActivityBar.git", :tag => "0.1.1" } - s.source_files = "ZAActivityBar/*.{h,m}" - - s.framework = "QuartzCore" - s.dependency "SKBounceAnimation", "~> 1.0" - s.resources = "ZAActivityBar/ZAActivityBar.bundle" - - s.requires_arc = true -end From 3e78c9a8cf9c47eba576b1ca0d02f613e9817a21 Mon Sep 17 00:00:00 2001 From: Ben Huang Date: Wed, 19 Dec 2012 09:28:54 +0800 Subject: [PATCH 071/159] Added MHTabBarController podspec. This is a custom container view controller for iOS 5 that works just like a regular UITabBarController, except the tabs are at the top and look different. --- .../0.0.1/MHTabBarController.podspec | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 MHTabBarController/0.0.1/MHTabBarController.podspec diff --git a/MHTabBarController/0.0.1/MHTabBarController.podspec b/MHTabBarController/0.0.1/MHTabBarController.podspec new file mode 100644 index 00000000000000..52cc0e099aedb9 --- /dev/null +++ b/MHTabBarController/0.0.1/MHTabBarController.podspec @@ -0,0 +1,17 @@ +Pod::Spec.new do |s| + s.name = "MHTabBarController" + s.version = "0.0.1" + s.summary = "A custom tab bar controller for iOS 5." + s.description = <<-DESC + This is a custom container view controller for iOS 5 that works just like a regular UITabBarController, except the tabs are at the top and look different. + DESC + s.homepage = "http://www.hollance.com/2011/11/mhtabbarcontroller-a-custom-tab-bar-for-ios-5-using-the-new-container-apis/" + s.license = { :type => 'MIT', :text => 'The MHTabBarController source code is copyright 2011 Matthijs Hollemans and is licensed under the terms of the MIT license.' } + s.author = { "Matthijs Hollemans" => "mail@hollance.com" } + s.source = { :git => "https://github.com/hollance/MHTabBarController.git", :commit => "073f751521d6c998364a3671ec3edd6cecc7b4e7" } + s.platform = :ios, '5.0' + s.source_files = 'Classes', 'Demo/MHTabBarController.*' + s.resources = "Images/*.png" + s.requires_arc = true + +end From 244ca923f6150dcb5085984edfd32c462aac0f71 Mon Sep 17 00:00:00 2001 From: David Whetstone Date: Tue, 18 Dec 2012 17:29:46 -0800 Subject: [PATCH 072/159] Use weak_framework for AdSupport --- Localytics/0.0.1/Localytics.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localytics/0.0.1/Localytics.podspec b/Localytics/0.0.1/Localytics.podspec index 58e010a6b31f69..e0b17bad11d368 100644 --- a/Localytics/0.0.1/Localytics.podspec +++ b/Localytics/0.0.1/Localytics.podspec @@ -41,7 +41,7 @@ Pod::Spec.new do |s| s.source_files = '*.{h,m}' - s.framework = 'AdSupport' + s.weak_framework = 'AdSupport' s.library = 'z', 'sqlite3' -end \ No newline at end of file +end From 874e00bfe55048ea585b926d49ad8e225ce15560 Mon Sep 17 00:00:00 2001 From: Joe Goullaud Date: Tue, 18 Dec 2012 21:24:47 -0500 Subject: [PATCH 073/159] Add RZCollectionList 0.5.0 --- RZCollectionList/0.5.0/RZCollectionList.podspec | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 RZCollectionList/0.5.0/RZCollectionList.podspec diff --git a/RZCollectionList/0.5.0/RZCollectionList.podspec b/RZCollectionList/0.5.0/RZCollectionList.podspec new file mode 100644 index 00000000000000..00bdac7076a86d --- /dev/null +++ b/RZCollectionList/0.5.0/RZCollectionList.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = "RZCollectionList" + s.version = "0.5.0" + s.summary = "A framework for transforming and combining data from Core Data and other sources and displaying it in a UITableView or UICollectionView." + s.homepage = "http://github.com/Raizlabs/RZCollectionList" + s.license = "MIT" + s.author = { "Joe Goullaud" => "joe@raizlabs.com"} + s.source = { :git => "https://github.com/Raizlabs/RZCollectionList.git", :tag => "0.5.0" } + s.source_files = 'RZCollectionList', 'RZCollectionList/**/*.{h,m}' + s.requires_arc = true + s.platform = :ios, '5.0' +end \ No newline at end of file From 5e3c7a04561d43a76eb49f1fd59a8bdaf528e9bc Mon Sep 17 00:00:00 2001 From: Lex Tang Date: Wed, 19 Dec 2012 12:45:06 +0800 Subject: [PATCH 074/159] Add A3GridTableView 0.0.1 Add ViewUtils 1.0 --- 0.0.1/A3GridTableView.podspec | 12 ++++++++++++ ViewUtils/1.0/ViewUtils.podspec | 12 ++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 0.0.1/A3GridTableView.podspec create mode 100644 ViewUtils/1.0/ViewUtils.podspec diff --git a/0.0.1/A3GridTableView.podspec b/0.0.1/A3GridTableView.podspec new file mode 100644 index 00000000000000..93697ef54a3e0d --- /dev/null +++ b/0.0.1/A3GridTableView.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = "A3GridTableView" + s.version = "0.0.1" + s.summary = "Fast UIScrollView subclass which presents its cells in a GridView" + s.description = "A3GridTableView is a UIScrollView subclass with a high performance GridView style layouting. It has similar delegate methods to a UITableView and can be even used like one. The difference is that the A3GridTableView aligns his section in collumns and not in one flow." + s.homepage = "https://github.com/allaboutapps/A3GridTableView" + s.license = { :type => 'BSD 3-Clause License', :file => 'LICENSE.txt } + s.author = { "allaboutapps" => "office@allaboutapps.at" } + s.source = { :git => "https://github.com/allaboutapps/A3GridTableView.git", :commit => "329bc6bc17b7a538f7c01e5ea3e8140f7c8b7821" } + s.platform = :ios + s.source_files = 'A3GridTableView' +end diff --git a/ViewUtils/1.0/ViewUtils.podspec b/ViewUtils/1.0/ViewUtils.podspec new file mode 100644 index 00000000000000..b5e2ae1d2b67b1 --- /dev/null +++ b/ViewUtils/1.0/ViewUtils.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = "ViewUtils" + s.version = "1.0" + s.summary = "ViewUtils is a collection of category methods designed that extend UIView with all the handy little properties and functionality that you always wished were built-in to begin with." + s.homepage = "https://github.com/nicklockwood/ViewUtils" + s.license = { :type => 'MIT (example)', :file => 'LICENCE.md' } + s.author = { "Nick Lockwood" => "support@charcoaldesign.co.uk" } + s.source = { :git => "https://github.com/nicklockwood/ViewUtils.git", :tag => "1.0" } + s.platform = :ios + s.source_files = 'ViewUtils', 'Classes/**/*.{h,m}' + s.framework = 'QuartzCore' +end From e59ed426abda462f0bca3fbc5b38345940c98dff Mon Sep 17 00:00:00 2001 From: Lex Tang Date: Wed, 19 Dec 2012 12:51:29 +0800 Subject: [PATCH 075/159] Sorry, wrong folder. --- {0.0.1 => A3GridTableView/0.0.1}/A3GridTableView.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename {0.0.1 => A3GridTableView/0.0.1}/A3GridTableView.podspec (98%) diff --git a/0.0.1/A3GridTableView.podspec b/A3GridTableView/0.0.1/A3GridTableView.podspec similarity index 98% rename from 0.0.1/A3GridTableView.podspec rename to A3GridTableView/0.0.1/A3GridTableView.podspec index 93697ef54a3e0d..fb0205420681be 100644 --- a/0.0.1/A3GridTableView.podspec +++ b/A3GridTableView/0.0.1/A3GridTableView.podspec @@ -4,7 +4,7 @@ Pod::Spec.new do |s| s.summary = "Fast UIScrollView subclass which presents its cells in a GridView" s.description = "A3GridTableView is a UIScrollView subclass with a high performance GridView style layouting. It has similar delegate methods to a UITableView and can be even used like one. The difference is that the A3GridTableView aligns his section in collumns and not in one flow." s.homepage = "https://github.com/allaboutapps/A3GridTableView" - s.license = { :type => 'BSD 3-Clause License', :file => 'LICENSE.txt } + s.license = { :type => 'BSD 3-Clause License', :file => 'LICENSE.txt' } s.author = { "allaboutapps" => "office@allaboutapps.at" } s.source = { :git => "https://github.com/allaboutapps/A3GridTableView.git", :commit => "329bc6bc17b7a538f7c01e5ea3e8140f7c8b7821" } s.platform = :ios From 0f9cd886704a915b51f62ea633659bdc215efc8f Mon Sep 17 00:00:00 2001 From: Lex Tang Date: Wed, 19 Dec 2012 13:19:29 +0800 Subject: [PATCH 076/159] Fixed for lint. --- A3GridTableView/0.0.1/A3GridTableView.podspec | 2 +- ViewUtils/1.0/ViewUtils.podspec | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/A3GridTableView/0.0.1/A3GridTableView.podspec b/A3GridTableView/0.0.1/A3GridTableView.podspec index fb0205420681be..d2a3b29422ec30 100644 --- a/A3GridTableView/0.0.1/A3GridTableView.podspec +++ b/A3GridTableView/0.0.1/A3GridTableView.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "A3GridTableView" s.version = "0.0.1" - s.summary = "Fast UIScrollView subclass which presents its cells in a GridView" + s.summary = "Fast UIScrollView subclass which presents its cells in a GridView." s.description = "A3GridTableView is a UIScrollView subclass with a high performance GridView style layouting. It has similar delegate methods to a UITableView and can be even used like one. The difference is that the A3GridTableView aligns his section in collumns and not in one flow." s.homepage = "https://github.com/allaboutapps/A3GridTableView" s.license = { :type => 'BSD 3-Clause License', :file => 'LICENSE.txt' } diff --git a/ViewUtils/1.0/ViewUtils.podspec b/ViewUtils/1.0/ViewUtils.podspec index b5e2ae1d2b67b1..d69f4af5ff8395 100644 --- a/ViewUtils/1.0/ViewUtils.podspec +++ b/ViewUtils/1.0/ViewUtils.podspec @@ -1,12 +1,13 @@ Pod::Spec.new do |s| s.name = "ViewUtils" s.version = "1.0" - s.summary = "ViewUtils is a collection of category methods designed that extend UIView with all the handy little properties and functionality that you always wished were built-in to begin with." + s.summary = "ViewUtils is a collection of category methods designed that extend UIView with all the handy little properties and functionality." + s.description = "ViewUtils is a collection of category methods that extend UIView with all the handy little properties and functionality that you always wished were built-in to begin with." s.homepage = "https://github.com/nicklockwood/ViewUtils" - s.license = { :type => 'MIT (example)', :file => 'LICENCE.md' } + s.license = { :type => 'Zlib License', :file => 'LICENCE.md' } s.author = { "Nick Lockwood" => "support@charcoaldesign.co.uk" } s.source = { :git => "https://github.com/nicklockwood/ViewUtils.git", :tag => "1.0" } s.platform = :ios - s.source_files = 'ViewUtils', 'Classes/**/*.{h,m}' + s.source_files = 'ViewUtils' s.framework = 'QuartzCore' end From 9fb701c89d4be1f398b235bf890b2cd87c985477 Mon Sep 17 00:00:00 2001 From: Jeong YunWon Date: Wed, 19 Dec 2012 16:16:23 +0900 Subject: [PATCH 077/159] UIKitExtension bugfix --- .../0.8.1/FoundationExtension.podspec | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 FoundationExtension/0.8.1/FoundationExtension.podspec diff --git a/FoundationExtension/0.8.1/FoundationExtension.podspec b/FoundationExtension/0.8.1/FoundationExtension.podspec new file mode 100644 index 00000000000000..7c97ffc4f296d7 --- /dev/null +++ b/FoundationExtension/0.8.1/FoundationExtension.podspec @@ -0,0 +1,41 @@ +Pod::Spec.new do |s| + s.name = "FoundationExtension" + s.version = "0.8.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. + * Many common snippets in a method call. + * Looks like native foundation methods - It follows Apple Coding Guideline and Foundation naming convention. + See document on [Github] (http://youknowone.github.com/FoundationExtension) + + Try FoundationExtension for Foundation extensions. + For iOS, UIKitExtension is available too. + DESC + 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.8.1" } + s.dependency "cdebug", "~> 0.1" + + s.subspec "FoundationExtension" do |ss| + ss.source_files = "FoundationExtension" + ss.xcconfig = { "GCC_PREFIX_HEADER" => "FoundationExtension/FoundationExtension-Prefix.pch" } + end + + s.subspec "CocoaExtension" do |ss| + ss.platform = :osx + ss.source_files = "CocoaExtension" + ss.header_dir = "CocoaExtension" + ss.framework = "Cocoa" + ss.xcconfig = { "GCC_PREFIX_HEADER" => "CocoaExtension/CocoaExtension-Prefix.pch" } + ss.dependency "FoundationExtension/FoundationExtension" + end + + s.subspec "UIKitExtension" do |ss| + ss.platform = :ios + ss.source_files = "UIKitExtension" + ss.header_dir = "UIKitExtension" + ss.xcconfig = { "GCC_PREFIX_HEADER" => "UIKitExtension/UIKitExtension-Prefix.pch" } + ss.dependency "FoundationExtension/FoundationExtension" + end +end From 2aef0e7fef8fda281814dfa0b7b7df2bd0168468 Mon Sep 17 00:00:00 2001 From: Jeong YunWon Date: Wed, 19 Dec 2012 18:37:51 +0900 Subject: [PATCH 078/159] Cauly SDK --- CaulySDK/3.0.0.0/CaulySDK.podspec | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 CaulySDK/3.0.0.0/CaulySDK.podspec diff --git a/CaulySDK/3.0.0.0/CaulySDK.podspec b/CaulySDK/3.0.0.0/CaulySDK.podspec new file mode 100644 index 00000000000000..134dec14c31593 --- /dev/null +++ b/CaulySDK/3.0.0.0/CaulySDK.podspec @@ -0,0 +1,23 @@ +Pod::Spec.new do |s| + s.name = "CaulySDK" + s.version = "3.0.0.0" + s.summary = "Cauly SDK with helper." + s.homepage = "https://github.com/youknowone/CaulySDK" + s.license = { + :type => 'proprietary', + :text => <<-LICENSE + Copyright (C) FuturestreamNetworks + LICENSE + } + s.author = "FuturestreamNetworks" + s.source = { :git => "https://github.com/youknowone/CaulySDK.git", :tag => "3.0.0.0" } + s.platform = :ios + s.source_files = '*.{h,m}', 'library/*.h' + s.public_header_files = '*.h', 'library/*.h' + s.resources = "library/DefaultImages/*.png" + s.preserve_paths = "library" + + s.frameworks = 'CoreGraphics', 'QuartzCore', 'SystemConfiguration', 'MediaPlayer', 'MapKit', 'CoreLocation', 'CFNetwork', 'MessageUI', 'EventKit' + s.libraries = 'z', 'CaulyAds' + s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '${PODS_ROOT}/CaulySDK/library' } +end From e3583055d50cc3606e0b746f857a35db931414c4 Mon Sep 17 00:00:00 2001 From: Kevin Renskers Date: Wed, 19 Dec 2012 10:45:00 +0000 Subject: [PATCH 079/159] [Update] GVUserDefaults (0.2.0) --- GVUserDefaults/0.2.0/GVUserDefaults.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 GVUserDefaults/0.2.0/GVUserDefaults.podspec diff --git a/GVUserDefaults/0.2.0/GVUserDefaults.podspec b/GVUserDefaults/0.2.0/GVUserDefaults.podspec new file mode 100644 index 00000000000000..476129466dbc24 --- /dev/null +++ b/GVUserDefaults/0.2.0/GVUserDefaults.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = "GVUserDefaults" + s.version = "0.2.0" + s.summary = "NSUserDefaults access via properties." + s.homepage = "https://github.com/gangverk/GVUserDefaults" + s.license = 'MIT' + s.author = { "Kevin Renskers" => "info@mixedcase.nl" } + s.source = { :git => "https://github.com/gangverk/GVUserDefaults.git", :tag => s.version.to_s } + s.ios.deployment_target = '4.0' + s.osx.deployment_target = '10.6' + s.source_files = 'GVUserDefaults/*.{h,m}' + s.requires_arc = true +end From 605625825a62736cca597432afdaf89b6426d08c Mon Sep 17 00:00:00 2001 From: Kevin Renskers Date: Wed, 19 Dec 2012 14:00:37 +0000 Subject: [PATCH 080/159] [Update] GVUserDefaults (0.3.0) --- GVUserDefaults/0.3.0/GVUserDefaults.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 GVUserDefaults/0.3.0/GVUserDefaults.podspec diff --git a/GVUserDefaults/0.3.0/GVUserDefaults.podspec b/GVUserDefaults/0.3.0/GVUserDefaults.podspec new file mode 100644 index 00000000000000..669cfec15ea872 --- /dev/null +++ b/GVUserDefaults/0.3.0/GVUserDefaults.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = "GVUserDefaults" + s.version = "0.3.0" + s.summary = "NSUserDefaults access via properties." + s.homepage = "https://github.com/gangverk/GVUserDefaults" + s.license = 'MIT' + s.author = { "Kevin Renskers" => "info@mixedcase.nl" } + s.source = { :git => "https://github.com/gangverk/GVUserDefaults.git", :tag => s.version.to_s } + s.ios.deployment_target = '4.0' + s.osx.deployment_target = '10.6' + s.source_files = 'GVUserDefaults/*.{h,m}' + s.requires_arc = true +end From 6160a269cb1bd3915ddf241f71ce931e1aa9773e Mon Sep 17 00:00:00 2001 From: Adam Kirk Date: Wed, 19 Dec 2012 08:29:01 -0700 Subject: [PATCH 081/159] [Update] MTPocket (0.8.1) --- MTPocket/0.8.1/MTPocket.podspec | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 MTPocket/0.8.1/MTPocket.podspec diff --git a/MTPocket/0.8.1/MTPocket.podspec b/MTPocket/0.8.1/MTPocket.podspec new file mode 100644 index 00000000000000..e06519434c6654 --- /dev/null +++ b/MTPocket/0.8.1/MTPocket.podspec @@ -0,0 +1,15 @@ +Pod::Spec.new do |s| + s.name = "MTPocket" + s.version = "0.8.1" + s.summary = "A Cocoa web request library that doesn't suck." + s.description = "Simple and powerful. Convenient and informative. JSON and XML to collection object conversion. Comprehensive request and response objects." + s.homepage = "https://github.com/mysterioustrousers/MTPocket" + s.license = 'BSD' + s.author = { "Adam Kirk" => "atomkirk@gmail.com" } + s.source = { :git => "https://github.com/mysterioustrousers/MTPocket.git", :tag => "0.8.1" } + s.source_files = 'MTPocket/*.{h,m}' + s.public_header_files = 'MTPocket/MTPocketRequest.h', 'MTPocket/MTPocketAsyncRequest.h', 'MTPocket/MTPocketResponse.h' + s.dependency 'XMLDictionary', '~> 2.0.0' + s.dependency 'MTJSONUtils', '~> 0.1.0' + s.dependency 'Base64' +end From b44ed89c19f170b4ae323f216a34e2ac6077a100 Mon Sep 17 00:00:00 2001 From: Adam Kirk Date: Wed, 19 Dec 2012 08:33:59 -0700 Subject: [PATCH 082/159] [Update] MTPocket (0.8.2) --- MTPocket/0.8.2/MTPocket.podspec | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 MTPocket/0.8.2/MTPocket.podspec diff --git a/MTPocket/0.8.2/MTPocket.podspec b/MTPocket/0.8.2/MTPocket.podspec new file mode 100644 index 00000000000000..d29dd428562dfd --- /dev/null +++ b/MTPocket/0.8.2/MTPocket.podspec @@ -0,0 +1,15 @@ +Pod::Spec.new do |s| + s.name = "MTPocket" + s.version = "0.8.2" + s.summary = "A Cocoa web request library that doesn't suck." + s.description = "Simple and powerful. Convenient and informative. JSON and XML to collection object conversion. Comprehensive request and response objects." + s.homepage = "https://github.com/mysterioustrousers/MTPocket" + s.license = 'BSD' + s.author = { "Adam Kirk" => "atomkirk@gmail.com" } + s.source = { :git => "https://github.com/mysterioustrousers/MTPocket.git", :tag => "0.8.2" } + s.source_files = 'MTPocket/*.{h,m}' + s.public_header_files = 'MTPocket/MTPocket.h', 'MTPocket/MTPocketRequest.h', 'MTPocket/MTPocketAsyncRequest.h', 'MTPocket/MTPocketResponse.h' + s.dependency 'XMLDictionary', '~> 2.0.0' + s.dependency 'MTJSONUtils', '~> 0.1.0' + s.dependency 'Base64' +end From e21f4405b65c4a5304bf75befa6adc6f2bf45abc Mon Sep 17 00:00:00 2001 From: Adam Kirk Date: Wed, 19 Dec 2012 08:35:10 -0700 Subject: [PATCH 083/159] removing unecessary versions --- MTPocket/0.8.1/MTPocket.podspec | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 MTPocket/0.8.1/MTPocket.podspec diff --git a/MTPocket/0.8.1/MTPocket.podspec b/MTPocket/0.8.1/MTPocket.podspec deleted file mode 100644 index e06519434c6654..00000000000000 --- a/MTPocket/0.8.1/MTPocket.podspec +++ /dev/null @@ -1,15 +0,0 @@ -Pod::Spec.new do |s| - s.name = "MTPocket" - s.version = "0.8.1" - s.summary = "A Cocoa web request library that doesn't suck." - s.description = "Simple and powerful. Convenient and informative. JSON and XML to collection object conversion. Comprehensive request and response objects." - s.homepage = "https://github.com/mysterioustrousers/MTPocket" - s.license = 'BSD' - s.author = { "Adam Kirk" => "atomkirk@gmail.com" } - s.source = { :git => "https://github.com/mysterioustrousers/MTPocket.git", :tag => "0.8.1" } - s.source_files = 'MTPocket/*.{h,m}' - s.public_header_files = 'MTPocket/MTPocketRequest.h', 'MTPocket/MTPocketAsyncRequest.h', 'MTPocket/MTPocketResponse.h' - s.dependency 'XMLDictionary', '~> 2.0.0' - s.dependency 'MTJSONUtils', '~> 0.1.0' - s.dependency 'Base64' -end From 19e82cb60026656fc8f052fbe80314ec42191374 Mon Sep 17 00:00:00 2001 From: John Arnold Date: Wed, 19 Dec 2012 13:56:52 -0400 Subject: [PATCH 084/159] Added HSLUpdateChecker --- HSLUpdateChecker/1.0.0/HSLUpdateChecker.podspec | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 HSLUpdateChecker/1.0.0/HSLUpdateChecker.podspec diff --git a/HSLUpdateChecker/1.0.0/HSLUpdateChecker.podspec b/HSLUpdateChecker/1.0.0/HSLUpdateChecker.podspec new file mode 100644 index 00000000000000..2eeff92f660b04 --- /dev/null +++ b/HSLUpdateChecker/1.0.0/HSLUpdateChecker.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = "HSLUpdateChecker" + s.version = "1.0.0" + s.summary = "Prompts the user to update your app when a new version is available. Zero configuration, one line of code to use." + s.homepage = "https://github.com/Handelabra/HSLUpdateChecker" + s.license = "MIT" + s.author = { "John Arnold" => "john@handelabra.com" } + s.source = { :git => "https://github.com/Handelabra/HSLUpdateChecker.git", :tag => "1.0.0" } + s.platform = :ios, '5.0' + s.source_files = 'Classes', 'Classes/**/*.{h,m}' + s.requires_arc = true +end From eb349f2069030fb3da9ca4a2ec0ccb8e34cc43b7 Mon Sep 17 00:00:00 2001 From: Vladimir Grichina Date: Wed, 19 Dec 2012 20:21:27 +0200 Subject: [PATCH 085/159] Update THObserversAndBinders/1.0.0/THObserversAndBinders.podspec Don't see why it cannot be used on iOS 5 --- THObserversAndBinders/1.0.0/THObserversAndBinders.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/THObserversAndBinders/1.0.0/THObserversAndBinders.podspec b/THObserversAndBinders/1.0.0/THObserversAndBinders.podspec index 19377f4ea68e8d..3cb747a701be43 100644 --- a/THObserversAndBinders/1.0.0/THObserversAndBinders.podspec +++ b/THObserversAndBinders/1.0.0/THObserversAndBinders.podspec @@ -9,6 +9,6 @@ Pod::Spec.new do |s| s.source_files = 'THObserversAndBinders' s.requires_arc = true - s.ios.deployment_target = '6.0' + s.ios.deployment_target = '5.0' s.osx.deployment_target = '10.7' -end \ No newline at end of file +end From e631c375b86e49dcd41d9f0b305f00c72de172cf Mon Sep 17 00:00:00 2001 From: Alberto Jerez Date: Wed, 19 Dec 2012 22:26:11 +0100 Subject: [PATCH 086/159] Update AJNotificationView to 0.5 --- .../0.5/AJNotificationView.podspec | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 AJNotificationView/0.5/AJNotificationView.podspec diff --git a/AJNotificationView/0.5/AJNotificationView.podspec b/AJNotificationView/0.5/AJNotificationView.podspec new file mode 100644 index 00000000000000..db023b8d10d063 --- /dev/null +++ b/AJNotificationView/0.5/AJNotificationView.podspec @@ -0,0 +1,20 @@ +Pod::Spec.new do |s| + s.name = 'AJNotificationView' + s.version = '0.5' + s.platform = :ios + s.summary = 'Notice component for iOS.' + s.homepage = 'https://github.com/ajerez/AJNotificationView' + s.author = { 'Alberto Jerez' => 'https://twitter.com/alberto_jrz' } + s.source = { + :git => 'https://github.com/ajerez/AJNotificationView.git', + :tag => 'v0.5' + } + s.description = 'Notice component for iPhone and iPad. All core graphics code and resolution independent.' + s.source_files = 'AJNotificationView/*' + s.frameworks = 'QuartzCore' + s.requires_arc = true + s.license = { + :type => 'MIT', + :file => 'LICENSE' + } +end From fd8c037276820fb03f545b3f29daae564099fa7c Mon Sep 17 00:00:00 2001 From: Evan Grim Date: Wed, 19 Dec 2012 17:18:20 -0600 Subject: [PATCH 087/159] Update MAKVONotificationCenter with recent fix --- .../0.0.2/MAKVONotificationCenter.podspec | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 MAKVONotificationCenter/0.0.2/MAKVONotificationCenter.podspec diff --git a/MAKVONotificationCenter/0.0.2/MAKVONotificationCenter.podspec b/MAKVONotificationCenter/0.0.2/MAKVONotificationCenter.podspec new file mode 100644 index 00000000000000..144953437ff900 --- /dev/null +++ b/MAKVONotificationCenter/0.0.2/MAKVONotificationCenter.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = 'MAKVONotificationCenter' + s.version = '0.0.2' + s.source = { :git => 'https://github.com/mikeash/MAKVONotificationCenter.git', :commit => '1f414de5dd2fd54fad6928a09794431ffa13f30f' } + s.homepage = 'http://www.mikeash.com/pyblog/key-value-observing-done-right.html' + s.author = { 'Mike Ash' => 'mike@mikeash.com' } + s.summary = 'Key-Value Observing Done Right.' + s.source_files = 'MAKVONotificationCenter.{h,m}' + s.header_dir = s.name + s.requires_arc = true + +end From 17a77c8aa7903dffa28bc37fc1030459dbf388d0 Mon Sep 17 00:00:00 2001 From: Evan Grim Date: Wed, 19 Dec 2012 17:32:06 -0600 Subject: [PATCH 088/159] Add license entry to MAKVONotificationCenter spec --- MAKVONotificationCenter/0.0.2/MAKVONotificationCenter.podspec | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/MAKVONotificationCenter/0.0.2/MAKVONotificationCenter.podspec b/MAKVONotificationCenter/0.0.2/MAKVONotificationCenter.podspec index 144953437ff900..361c67ae3c0fac 100644 --- a/MAKVONotificationCenter/0.0.2/MAKVONotificationCenter.podspec +++ b/MAKVONotificationCenter/0.0.2/MAKVONotificationCenter.podspec @@ -8,5 +8,9 @@ Pod::Spec.new do |s| s.source_files = 'MAKVONotificationCenter.{h,m}' s.header_dir = s.name s.requires_arc = true + s.license = { + :type => 'MIT', + :file => 'LICENSE' + } end From c2c75f19e8e0baaa52729ec4292a913f79bc8a97 Mon Sep 17 00:00:00 2001 From: Luosky Date: Thu, 20 Dec 2012 11:52:40 +0800 Subject: [PATCH 089/159] [Update] MTStatusBarOverlay (0.9.1) --- .../0.9.1/MTStatusBarOverlay.podspec | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 MTStatusBarOverlay/0.9.1/MTStatusBarOverlay.podspec diff --git a/MTStatusBarOverlay/0.9.1/MTStatusBarOverlay.podspec b/MTStatusBarOverlay/0.9.1/MTStatusBarOverlay.podspec new file mode 100644 index 00000000000000..977ac8f247148c --- /dev/null +++ b/MTStatusBarOverlay/0.9.1/MTStatusBarOverlay.podspec @@ -0,0 +1,16 @@ +Pod::Spec.new do |s| + s.name = 'MTStatusBarOverlay' + s.version = '0.9.1' + s.platform = :ios + s.summary = 'A custom iOS status bar overlay seen in Apps like Reeder, Evernote and Google Mobile App.' + s.homepage = 'https://github.com/myell0w/MTStatusBarOverlay' + s.author = { 'Matthias Tretter' => 'myell0w@me.com' } + s.source = { :git => 'https://github.com/myell0w/MTStatusBarOverlay.git', :tag => '0.9.1' } + + s.description = 'This class provides a custom iOS (iPhone + iPad) status bar overlay window known from ' \ + 'Apps like Reeder, Google Mobile App or Evernote. It currently supports touch-handling, ' \ + 'queuing of messages, delegation as well as three different animation modes.' + + s.requires_arc = true + s.source_files = '*.{h,m}' +end From ff9bf313cb3a0549aea045c9ea1ab9bb764e16b7 Mon Sep 17 00:00:00 2001 From: Luosky Date: Thu, 20 Dec 2012 12:11:56 +0800 Subject: [PATCH 090/159] add license for MTStatusBarOverlay --- MTStatusBarOverlay/0.9.1/MTStatusBarOverlay.podspec | 1 + MTStatusBarOverlay/0.9/MTStatusBarOverlay.podspec | 1 + 2 files changed, 2 insertions(+) diff --git a/MTStatusBarOverlay/0.9.1/MTStatusBarOverlay.podspec b/MTStatusBarOverlay/0.9.1/MTStatusBarOverlay.podspec index 977ac8f247148c..815146bc0e4b74 100644 --- a/MTStatusBarOverlay/0.9.1/MTStatusBarOverlay.podspec +++ b/MTStatusBarOverlay/0.9.1/MTStatusBarOverlay.podspec @@ -3,6 +3,7 @@ Pod::Spec.new do |s| s.version = '0.9.1' s.platform = :ios s.summary = 'A custom iOS status bar overlay seen in Apps like Reeder, Evernote and Google Mobile App.' + s.license = { :type => 'MIT', :file => 'LICENSE' } s.homepage = 'https://github.com/myell0w/MTStatusBarOverlay' s.author = { 'Matthias Tretter' => 'myell0w@me.com' } s.source = { :git => 'https://github.com/myell0w/MTStatusBarOverlay.git', :tag => '0.9.1' } diff --git a/MTStatusBarOverlay/0.9/MTStatusBarOverlay.podspec b/MTStatusBarOverlay/0.9/MTStatusBarOverlay.podspec index 205958d76295cf..d501a17944fae3 100644 --- a/MTStatusBarOverlay/0.9/MTStatusBarOverlay.podspec +++ b/MTStatusBarOverlay/0.9/MTStatusBarOverlay.podspec @@ -3,6 +3,7 @@ Pod::Spec.new do |s| s.version = '0.9' s.platform = :ios s.summary = 'A custom iOS status bar overlay seen in Apps like Reeder, Evernote and Google Mobile App.' + s.license = { :type => 'MIT', :file => 'LICENSE' } s.homepage = 'https://github.com/myell0w/MTStatusBarOverlay' s.author = { 'Matthias Tretter' => 'myell0w@me.com' } s.source = { :git => 'https://github.com/myell0w/MTStatusBarOverlay.git', :tag => '0.9' } From 82ec1adaf7877769b582738707e4f4d87d53cce9 Mon Sep 17 00:00:00 2001 From: vtourraine Date: Thu, 20 Dec 2012 14:26:43 +0100 Subject: [PATCH 091/159] [Add] DMTabBar (0.0.1) --- DMTabBar/0.0.1/DMTabBar.podspec | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 DMTabBar/0.0.1/DMTabBar.podspec diff --git a/DMTabBar/0.0.1/DMTabBar.podspec b/DMTabBar/0.0.1/DMTabBar.podspec new file mode 100644 index 00000000000000..2d0bb14615c7a0 --- /dev/null +++ b/DMTabBar/0.0.1/DMTabBar.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = "DMTabBar" + s.version = "0.0.1" + s.summary = "XCode 4.x like inspector segmented control" + s.homepage = "https://github.com/malcommac/DMTabBar" + s.license = { :type => "MIT", :text => "Copyright (c) 2012 Daniele Margutti (http://www.danielemargutti.com - daniele.margutti@gmail.com). All rights reserved."} + s.author = { "Daniele Margutti" => "me@danielemargutti.com" } + s.source = { :git => "https://github.com/malcommac/DMTabBar.git", :commit => "6e9d0a87ca32528c580c0de78f5dda7f80d686fe" } + s.platform = :osx, '10.6' + s.source_files = 'DMTabBar/DMTabBar/DMTabBar.{h,m}', 'DMTabBar/DMTabBar/DMTabBarItem.{h,m}' + s.requires_arc = true +end From 188a9f24d03e107e0d9d29a4cdc5946713795445 Mon Sep 17 00:00:00 2001 From: Adam Kirk Date: Thu, 20 Dec 2012 07:48:37 -0700 Subject: [PATCH 092/159] [Add] MTColorDistance (0.0.1) --- MTColorDistance/0.0.1/MTColorDistance.podspec | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 MTColorDistance/0.0.1/MTColorDistance.podspec diff --git a/MTColorDistance/0.0.1/MTColorDistance.podspec b/MTColorDistance/0.0.1/MTColorDistance.podspec new file mode 100644 index 00000000000000..1f9ce5abfc35f5 --- /dev/null +++ b/MTColorDistance/0.0.1/MTColorDistance.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = "MTColorDistance" + s.version = "0.0.1" + s.summary = "A category on UIColor. Pass in an array of colors and it will return the closest color to the receiver." + s.homepage = "https://github.com/mysterioustrousers/MTNearestColor" + s.license = 'MIT' + s.authors = { "Quenton Jones" => "qjones@knottyalder.com", "Adam Kirk" => "atomkirk@gmail.com" } + s.source = { :git => "https://github.com/mysterioustrousers/MTNearestColor.git", :tag => "0.0.1" } + s.platform = :ios + s.source_files = 'MTColorDistance/*.{h,m}' + s.framework = 'UIKit' +end From a4e59dc9f9c484c7899e673ae0585a9122bb3514 Mon Sep 17 00:00:00 2001 From: Saurabh Garg Date: Thu, 20 Dec 2012 17:18:19 +0100 Subject: [PATCH 093/159] - changes the JSONKit 1.5pre url to use https so that it isn't blocked by corporate firewalls --- JSONKit/1.5pre/JSONKit.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JSONKit/1.5pre/JSONKit.podspec b/JSONKit/1.5pre/JSONKit.podspec index 42c158853457c9..4133d493148db1 100644 --- a/JSONKit/1.5pre/JSONKit.podspec +++ b/JSONKit/1.5pre/JSONKit.podspec @@ -5,7 +5,7 @@ Pod::Spec.new do |s| s.summary = 'A Very High Performance Objective-C JSON Library.' s.homepage = 'https://github.com/johnezang/JSONKit' s.author = 'John Engelhart' - s.source = { :git => 'git://github.com/johnezang/JSONKit.git', :commit => '0aff3deb5e1bb2bbc88a83fd71c8ad5550185cce' } + s.source = { :git => 'https://github.com/johnezang/JSONKit.git', :commit => '0aff3deb5e1bb2bbc88a83fd71c8ad5550185cce' } s.source_files = 'JSONKit.*' s.compiler_flags = '-Wno-deprecated-objc-isa-usage', '-Wno-format' From e06d0747c3526c2720d7a2662c0859fd1194efa6 Mon Sep 17 00:00:00 2001 From: Anthony Shoumikhin Date: Thu, 20 Dec 2012 20:38:01 +0200 Subject: [PATCH 094/159] NSXtensions 0.3 --- NSXtensions/0.3/NSXtensions.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 NSXtensions/0.3/NSXtensions.podspec diff --git a/NSXtensions/0.3/NSXtensions.podspec b/NSXtensions/0.3/NSXtensions.podspec new file mode 100644 index 00000000000000..690bf4b2f98afc --- /dev/null +++ b/NSXtensions/0.3/NSXtensions.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = "NSXtensions" + s.version = "0.3" + s.summary = "A collection of useful extensions for standard Cocoa classes." + s.homepage = "https://github.com/shoumikhin/NSXtensions" + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { "Anthony Shoumikhin" => "anthony@shoumikh.in" } + s.source = { :git => "https://github.com/shoumikhin/NSXtensions.git", :tag => "0.3" } + s.platform = :ios, '5.1' + s.source_files = '*.{h,m}' + s.public_header_files = '*.h' + s.frameworks = 'Foundation', 'UIKit', 'CoreData', 'MapKit' + s.requires_arc = true +end From 33f4756be17fe2d5b2557cf3537e012f2c62fdee Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Thu, 20 Dec 2012 16:17:54 -0500 Subject: [PATCH 095/159] [Add] KSInstapaperAPI (0.1.0) --- KSInstapaperAPI/0.1.0/KSInstapaperAPI.podspec | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 KSInstapaperAPI/0.1.0/KSInstapaperAPI.podspec diff --git a/KSInstapaperAPI/0.1.0/KSInstapaperAPI.podspec b/KSInstapaperAPI/0.1.0/KSInstapaperAPI.podspec new file mode 100644 index 00000000000000..581537608b8253 --- /dev/null +++ b/KSInstapaperAPI/0.1.0/KSInstapaperAPI.podspec @@ -0,0 +1,16 @@ +Pod::Spec.new do |s| + s.name = "KSInstapaperAPI" + s.version = "0.1.0" + s.summary = "An Instapaper API controller with the ability to queue URLs when the network is down." + s.homepage = "https://github.com/Keithbsmiley/KSInstapaperAPI" + s.license = 'MIT' + s.author = { "Keith Smiley" => "keithbsmiley@gmail.com" } + s.source = { :git => "https://github.com/Keithbsmiley/KSInstapaperAPI.git", :tag => s.version.to_s } + s.ios.deployment_target = '5.0' + s.osx.deployment_target = '10.7' + s.source_files = '*.{h,m}' + s.requires_arc = true + s.dependency 'AFNetworking', '~> 1.0.1' + s.dependency 'SSKeychain', '~> 0.1.4' + s.dependency 'Reachability', '~> 3.1.0' +end From 7f662b9089fec42e9a3211c97747e79bba029cb0 Mon Sep 17 00:00:00 2001 From: Lawrence Lomax Date: Fri, 21 Dec 2012 10:24:23 +1100 Subject: [PATCH 096/159] MABlockClosure Podspec --- MABlockClosure/0.0.1/MABlockClosure.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 MABlockClosure/0.0.1/MABlockClosure.podspec diff --git a/MABlockClosure/0.0.1/MABlockClosure.podspec b/MABlockClosure/0.0.1/MABlockClosure.podspec new file mode 100644 index 00000000000000..86c5c22f223f7a --- /dev/null +++ b/MABlockClosure/0.0.1/MABlockClosure.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = "MABlockClosure" + s.version = "0.0.1" + s.summary = "MABlockClosure uses libffi to generate function pointers wrapping Objective-C blocks." + s.homepage = "https://github.com/mikeash/MABlockClosure" + s.license = { + :type => 'BSD', + :text => 'LICENSE' + } + s.author = { "Mike Ash" => "mike@mikeash.com" } + s.source = { :git => 'https://github.com/mikeash/MABlockClosure.git', :commit => '5148a8f383e2eb796bb5316b4d06361a54958234' } + s.source_files = 'MABlockClosure.{h,m}' + s.dependency 'libffi' +end From 47a504eadc87a26302dd462c6cdf8693bebf767f Mon Sep 17 00:00:00 2001 From: Luosky Date: Fri, 21 Dec 2012 15:09:35 +0800 Subject: [PATCH 097/159] [Add] NullSafe (1.1) --- NullSafe/1.1/NullSafe.podspec | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 NullSafe/1.1/NullSafe.podspec diff --git a/NullSafe/1.1/NullSafe.podspec b/NullSafe/1.1/NullSafe.podspec new file mode 100644 index 00000000000000..f36221d590f419 --- /dev/null +++ b/NullSafe/1.1/NullSafe.podspec @@ -0,0 +1,15 @@ +Pod::Spec.new do |s| + s.name = "NullSafe" + s.version = "1.1" + s.summary = "NullSafe is a simple category on NSNull that returns nil for any unrecognised messages instead of throwing an exception." + s.homepage = "https://github.com/nicklockwood/NullSafe" + s.license = { :type => 'zlib', :file => 'LICENCE.md' } + + s.author = { "Nick Lockwood" => "support@charcoaldesign.co.uk" } + + s.source = { :git => "https://github.com/nicklockwood/NullSafe.git", :tag => "1.1" } + s.ios.deployment_target = '4.3' + s.osx.deployment_target = '10.6' + s.source_files = 'NullSafe/NullSafe.{h,m}' + # s.requires_arc = true +end \ No newline at end of file From 6566e5c5088c379806078a94a44b99ecbd47367d Mon Sep 17 00:00:00 2001 From: Allen Huang Date: Fri, 21 Dec 2012 16:27:33 +0800 Subject: [PATCH 098/159] [Fix] SBTickerView (0.0.1) --- SBTickerView/0.0.1/SBTickerView.podspec | 1 + 1 file changed, 1 insertion(+) diff --git a/SBTickerView/0.0.1/SBTickerView.podspec b/SBTickerView/0.0.1/SBTickerView.podspec index ddf9c4ea6729ef..0adfce74c9d1ff 100644 --- a/SBTickerView/0.0.1/SBTickerView.podspec +++ b/SBTickerView/0.0.1/SBTickerView.podspec @@ -7,6 +7,7 @@ Pod::Spec.new do |s| s.homepage = 'https://github.com/blommegard/SBTickerView' s.author = { 'Simon Blommegård' => 'http://simonb.se/' } s.license = 'MIT' + s.requires_arc = true s.source = { :git => 'https://github.com/blommegard/SBTickerView.git', :commit => '9d45f5b320861354a269714b42c831e61ff1ad09' } s.source_files = '*.{h,m}' From 565c4c082c850232eb1d77b993488869f01a8378 Mon Sep 17 00:00:00 2001 From: Sebastien THIEBAUD Date: Fri, 21 Dec 2012 12:46:32 -0800 Subject: [PATCH 099/159] STTweetLabel 1.1.1 --- STTweetLabel/1.1.1/STTweetLabel.podspec | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 STTweetLabel/1.1.1/STTweetLabel.podspec diff --git a/STTweetLabel/1.1.1/STTweetLabel.podspec b/STTweetLabel/1.1.1/STTweetLabel.podspec new file mode 100755 index 00000000000000..1906a5d49e8409 --- /dev/null +++ b/STTweetLabel/1.1.1/STTweetLabel.podspec @@ -0,0 +1,17 @@ +Pod::Spec.new do |s| + s.name = "STTweetLabel" + s.version = "1.1.1" + s.summary = "A custom UILabel view controller for iOS with certain words tappable like Twitter." + s.homepage = "https://github.com/SebastienThiebaud/STTweetLabel" + + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { "Sebastien THIEBAUD" => "sthiebaud@icloud.com" } + s.source = { + :git => "https://github.com/SebastienThiebaud/STTweetLabel.git", + :tag => "1.1.1" + } + + s.platform = :ios, '5.0' + s.source_files = 'STTweetLabel/STTweetLabel.{h,m}' + s.requires_arc = true +end \ No newline at end of file From 346bdccd070df49068e26cd4fecbad46b7c707b6 Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Fri, 21 Dec 2012 19:34:09 -0500 Subject: [PATCH 100/159] Fixed BSKeyboardControls 0.0.1 URL issue. Discussed https://github.com/CocoaPods/Specs/issues/684 --- 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 fe9564ac92961c..7e24d181ba009e 100644 --- a/BSKeyboardControls/0.0.1/BSKeyboardControls.podspec +++ b/BSKeyboardControls/0.0.1/BSKeyboardControls.podspec @@ -5,7 +5,7 @@ Pod::Spec.new do |s| 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", :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 030368493447cedd476dd3fdcd460e1fcc6a9dae Mon Sep 17 00:00:00 2001 From: Adam Kirk Date: Sat, 22 Dec 2012 13:38:05 -0700 Subject: [PATCH 101/159] [Update] MTDates (0.6.2) --- MTDates/0.6.2/MTDates.podspec | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 MTDates/0.6.2/MTDates.podspec diff --git a/MTDates/0.6.2/MTDates.podspec b/MTDates/0.6.2/MTDates.podspec new file mode 100644 index 00000000000000..2e9eccf35dc31a --- /dev/null +++ b/MTDates/0.6.2/MTDates.podspec @@ -0,0 +1,11 @@ +Pod::Spec.new do |s| + s.name = "MTDates" + s.version = "0.6.2" + s.summary = "A category on NSDate. 100+ date calculation methods." + s.homepage = "https://github.com/mysterioustrousers/MTDates" + s.license = 'BSD ' + s.author = { "Adam Kirk" => "atomkirk@gmail.com" } + s.source = { :git => "https://github.com/mysterioustrousers/MTDates.git", :tag => "0.6.2" } + s.source_files = 'MTDates/*.{h,m}' + s.requires_arc = true +end From 68400d81d434fe38e42b7e018cf5b8bd24efa55a Mon Sep 17 00:00:00 2001 From: Jeong YunWon Date: Sun, 23 Dec 2012 05:51:36 +0900 Subject: [PATCH 102/159] [Add] sqlite3-objc (0.2) --- sqlite3-objc/0.2/sqlite3-objc.podspec | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 sqlite3-objc/0.2/sqlite3-objc.podspec diff --git a/sqlite3-objc/0.2/sqlite3-objc.podspec b/sqlite3-objc/0.2/sqlite3-objc.podspec new file mode 100644 index 00000000000000..10d994d2505af7 --- /dev/null +++ b/sqlite3-objc/0.2/sqlite3-objc.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = "sqlite3-objc" + s.version = "0.2" + s.summary = "Sqlite3 Objective-C wrapper." + s.homepage = "https://github.com/youknowone/sqlite3-objc" + s.license = 'Public Domain (sqlite3 license)' + s.author = { "Jeong YunWon" => "sqlite3objc@youknowone.org" } + s.source = { :git => "https://github.com/youknowone/sqlite3-objc.git", :tag => "0.2" } + s.source_files = 'Sqlite3/Sqlite.h', 'Sqlite3/Database.{h|m}', 'Sqlite3/Statement.{h|m}', 'Sqlite3/_Error.{h|m}' + s.library = 'sqlite3' + s.dependency 'cdebug' +end From 224e3e720db97dcb5f68f644eff4ee5bf24c51d9 Mon Sep 17 00:00:00 2001 From: Sebastien THIEBAUD Date: Sat, 22 Dec 2012 13:44:48 -0800 Subject: [PATCH 103/159] STScratchView 1.0.0 --- STScratchView/1.0.0/STScratchView.podspec | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 STScratchView/1.0.0/STScratchView.podspec diff --git a/STScratchView/1.0.0/STScratchView.podspec b/STScratchView/1.0.0/STScratchView.podspec new file mode 100755 index 00000000000000..e55fadf25837ad --- /dev/null +++ b/STScratchView/1.0.0/STScratchView.podspec @@ -0,0 +1,17 @@ +Pod::Spec.new do |s| + s.name = "STScratchView" + s.version = "1.0.0" + s.summary = "A UIView which allow a scratching behavior." + s.homepage = "https://github.com/SebastienThiebaud/STScratchView" + + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { "Sebastien THIEBAUD" => "sthiebaud@icloud.com" } + s.source = { + :git => "https://github.com/SebastienThiebaud/STScratchView.git", + :tag => "1.0.0" + } + + s.platform = :ios, '5.0' + s.source_files = 'STScratchView/STScratchView.{h,m}' + s.requires_arc = true +end \ No newline at end of file From fbde7a267fe2bb29a8786db21d98d5eb39c2e99a Mon Sep 17 00:00:00 2001 From: Simon Rice Date: Sun, 23 Dec 2012 09:47:03 +0000 Subject: [PATCH 104/159] [Update] SRMonthPicker 0.2.6 --- SRMonthPicker/0.2.6/SRMonthPicker.podspec | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 SRMonthPicker/0.2.6/SRMonthPicker.podspec diff --git a/SRMonthPicker/0.2.6/SRMonthPicker.podspec b/SRMonthPicker/0.2.6/SRMonthPicker.podspec new file mode 100644 index 00000000000000..471be6edb2fc9f --- /dev/null +++ b/SRMonthPicker/0.2.6/SRMonthPicker.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = "SRMonthPicker" + s.version = "0.2.6" + s.summary = "Like UIDatePicker, but without the days." + s.homepage = "https://www.github.com/simonrice/SRMonthPicker" + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { "Simon Rice" => "im@simonrice.com" } + s.source = { :git => "https://github.com/simonrice/SRMonthPicker.git", :tag => "0.2.6" } + s.platform = :ios + s.source_files = 'Classes', '*.{h,m}' + s.requires_arc = true +end From fbd90342ec07fe554ea82bd3a9fccd489415f87b Mon Sep 17 00:00:00 2001 From: Simon Rice Date: Sun, 23 Dec 2012 11:09:45 +0000 Subject: [PATCH 105/159] [Fixes] SRMonthPicker 0.2.6 --- SRMonthPicker/0.2.6/SRMonthPicker.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SRMonthPicker/0.2.6/SRMonthPicker.podspec b/SRMonthPicker/0.2.6/SRMonthPicker.podspec index 471be6edb2fc9f..5547edcdd197a3 100644 --- a/SRMonthPicker/0.2.6/SRMonthPicker.podspec +++ b/SRMonthPicker/0.2.6/SRMonthPicker.podspec @@ -6,7 +6,7 @@ Pod::Spec.new do |s| s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { "Simon Rice" => "im@simonrice.com" } s.source = { :git => "https://github.com/simonrice/SRMonthPicker.git", :tag => "0.2.6" } - s.platform = :ios + s.platform = :ios, "5.0" s.source_files = 'Classes', '*.{h,m}' s.requires_arc = true end From 486a57a1c893ad665ab77b976b0409f12eb2ac59 Mon Sep 17 00:00:00 2001 From: "Juan J. Collas" Date: Sun, 23 Dec 2012 07:56:15 -0500 Subject: [PATCH 106/159] Expat is an XML parser library written in C. --- expat/2.1/expat.podspec | 54 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 expat/2.1/expat.podspec diff --git a/expat/2.1/expat.podspec b/expat/2.1/expat.podspec new file mode 100644 index 00000000000000..9ba39da4318088 --- /dev/null +++ b/expat/2.1/expat.podspec @@ -0,0 +1,54 @@ +Pod::Spec.new do |s| + s.name = "expat" + s.version = "2.1" + s.summary = "Expat is an XML parser library written in C." + s.homepage = "http://www.libexpat.org/" + s.license = { :type => 'MIT', :file => 'expat-2.1.0/COPYING' } + + s.author = { "James Clark" => "jjc@jclark.com" } + + s.source = { :http => "http://sourceforge.net/projects/expat/files/expat/2.1.0/expat-2.1.0.tar.gz" } + + s.compiler_flags = '-DHAVE_EXPAT_CONFIG_H' + + s.ios.deployment_target = '5.0' + s.osx.deployment_target = '10.7' + + def s.pre_install(pod, target_definition) + expat_config = <<-CONFIG_H +#define BYTEORDER 1234 +#define HAVE_BCOPY 1 +#define HAVE_DLFCN_H 1 +#define HAVE_FCNTL_H 1 +#define HAVE_GETPAGESIZE 1 +#define HAVE_INTTYPES_H 1 +#define HAVE_MEMMOVE 1 +#define HAVE_MEMORY_H 1 +#define HAVE_MMAP 1 +#define HAVE_STDINT_H 1 +#define HAVE_STDLIB_H 1 +#define HAVE_STRINGS_H 1 +#define HAVE_STRING_H 1 +#define HAVE_SYS_PARAM_H 1 +#define HAVE_SYS_STAT_H 1 +#define HAVE_SYS_TYPES_H 1 +#define HAVE_UNISTD_H 1 +#define PACKAGE_BUGREPORT "expat-bugs@libexpat.org" +#define PACKAGE_NAME "expat" +#define PACKAGE_STRING "expat 2.1.0" +#define PACKAGE_VERSION "2.1.0" +#define STDC_HEADERS 1 +#define XML_CONTEXT_BYTES 1024 +#define XML_DTD 1 +#define XML_NS 1 +CONFIG_H + + File.open("#{pod.root}/expat-2.1.0/expat_config.h", "w") do |file| + file.puts expat_config + end + end + + s.source_files = 'expat-2.1.0/lib/*.{h,c}' + + s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(PODS_ROOT)/expat/expat-2.1.0' } +end From 700cb7d31bf53c5411e469683ef2daa7d2253ec9 Mon Sep 17 00:00:00 2001 From: "Juan J. Collas" Date: Sun, 23 Dec 2012 07:58:01 -0500 Subject: [PATCH 107/159] uriparser is a strictly RFC 3986 compliant URI parsing and handling library written in C. --- uriparser/0.7.7/uriparser.podspec | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 uriparser/0.7.7/uriparser.podspec diff --git a/uriparser/0.7.7/uriparser.podspec b/uriparser/0.7.7/uriparser.podspec new file mode 100644 index 00000000000000..7d137215b7441f --- /dev/null +++ b/uriparser/0.7.7/uriparser.podspec @@ -0,0 +1,19 @@ +Pod::Spec.new do |s| + s.name = "uriparser" + s.version = "0.7.7" + s.summary = "uriparser is a strictly RFC 3986 compliant URI parsing and handling library written in C." + s.homepage = "http://uriparser.sourceforge.net/" + s.license = { :type => 'MIT', :file => 'uriparser-0.7.7/COPYING' } + + s.authors = { "Weijia Song" => "songweijia@gmail.com", + "Sebastian Pipping" => "webmaster@hartwork.org" } + + s.source = { :http => "http://sourceforge.net/projects/uriparser/files/Sources/0.7.7/uriparser-0.7.7.zip" } + + s.ios.deployment_target = '5.0' + s.osx.deployment_target = '10.7' + + s.source_files = 'uriparser-0.7.7/src/*.{h,c}', 'uriparser-0.7.7/include/uriparser/*.h' + + s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(PODS_ROOT)/uriparser/uriparser-0.7.7/include' } +end From e1422f6fb937b438fee7d6ff2ec4d18ee553a1bb Mon Sep 17 00:00:00 2001 From: "Juan J. Collas" Date: Sun, 23 Dec 2012 07:58:31 -0500 Subject: [PATCH 108/159] a KML library written in C++. --- libkml/1.2/libkml.podspec | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 libkml/1.2/libkml.podspec diff --git a/libkml/1.2/libkml.podspec b/libkml/1.2/libkml.podspec new file mode 100644 index 00000000000000..faa8917329ac75 --- /dev/null +++ b/libkml/1.2/libkml.podspec @@ -0,0 +1,27 @@ +Pod::Spec.new do |s| + s.name = "libkml" + s.version = "1.2" + s.summary = "a KML library written in C++." + + s.homepage = "http://code.google.com/p/libkml" + s.license = { :type => 'MIT', :file => 'COPYING' } + + s.author = 'Google Inc.' + s.source = { :svn => 'http://libkml.googlecode.com/svn', :tag => 'release-1.2' } + + s.compiler_flags = '-Dunix' + + s.header_mappings_dir = 'libkml/src' + + s.ios.deployment_target = '5.0' + s.osx.deployment_target = '10.7' + + s.source_files = FileList['src/kml/**/*.{h,cc}'].exclude(/_test/, /win32/), + 'third_party/boost_1_34_1/**/*.hpp', + FileList['third_party/zlib-1.2.3/**/*.{c,h}'].exclude(/win32/) + + s.dependency 'expat' + s.dependency 'uriparser' + + s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(PODS_ROOT)/libkml/src $(PODS_ROOT)/libkml/third_party/boost_1_34_1 $(PODS_ROOT)/libkml/third_party/zlib-1.2.3 $(PODS_ROOT)/libkml/third_party/zlib-1.2.3/contrib' } +end From 2a7844a54c5b267525470007eccb779a2dfd0f5c Mon Sep 17 00:00:00 2001 From: "Juan J. Collas" Date: Sun, 23 Dec 2012 09:10:13 -0500 Subject: [PATCH 109/159] An object-oriented friendly wrapper library for ZLib and MiniZip, in Objective-C for iOS and OS X. --- objective-zip/0.0.1/objective-zip.podspec | 33 +++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 objective-zip/0.0.1/objective-zip.podspec diff --git a/objective-zip/0.0.1/objective-zip.podspec b/objective-zip/0.0.1/objective-zip.podspec new file mode 100644 index 00000000000000..236d8a99b7f5df --- /dev/null +++ b/objective-zip/0.0.1/objective-zip.podspec @@ -0,0 +1,33 @@ +Pod::Spec.new do |s| + s.name = "objective-zip" + s.version = "0.0.1" + s.summary = "An object-oriented friendly wrapper library for ZLib and MiniZip, in Objective-C for iOS and OS X." + s.homepage = "https://github.com/AgileBits/objective-zip" + + s.license = { :type => 'BSD 2', + :text => <<-LICENSE +Copyright (c) 2009-2012, Flying Dolphin Studio 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. + + Neither the name of Flying Dolphin Studio nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +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.author = { "Gianluca Bertani" => "gianluca@flyingdolphinstudio.com" } + + s.source = { :git => "https://github.com/AgileBits/objective-zip.git", :commit => "036235ac38ad0eb8126a8f6cf3bb537c94068fd8" } + + s.ios.deployment_target = '4.0' + s.osx.deployment_target = '10.6' + + s.source_files = 'Objective-Zip/*.{m,h}', 'MiniZip/*.{h,c}' + + s.library = 'z' + +end From e93400aebf982a19efefd4f558f750a2ada33374 Mon Sep 17 00:00:00 2001 From: "Juan J. Collas" Date: Sun, 23 Dec 2012 09:10:35 -0500 Subject: [PATCH 110/159] Simple KML is a simple & lightweight parsing library for KML written in Objective-C for the iOS platform. --- Simple-KML/0.1.0/Simple-KML.podspec | 31 +++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Simple-KML/0.1.0/Simple-KML.podspec diff --git a/Simple-KML/0.1.0/Simple-KML.podspec b/Simple-KML/0.1.0/Simple-KML.podspec new file mode 100644 index 00000000000000..065bc0b1169eda --- /dev/null +++ b/Simple-KML/0.1.0/Simple-KML.podspec @@ -0,0 +1,31 @@ +Pod::Spec.new do |s| + s.name = "Simple-KML" + s.version = "0.1.0" + s.summary = "Simple KML is a simple & lightweight parsing library for KML written in Objective-C for the iOS platform. " + s.homepage = "https://github.com/mapbox/Simple-KML" + + # Specify the license type. CocoaPods detects automatically the license file if it is named + # `LICENSE*.*', however if the name is different, specify it. + s.license = 'Code Sorcery Workshop, LLC and Development Seed, Inc.' + + s.author = { 'MapBox' => 'ios@mapbox.com' } + + s.source = { :git => "https://github.com/mapbox/Simple-KML.git", :tag => "0.1.0" } + + s.platform = :ios, '5.0' + + s.source_files = 'source/*.{h,m}' + + s.requires_arc = true + + s.framework = 'UIKit' + + # If you need to specify any other build settings, add them to the + # xcconfig hash. + # + # s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' } + + s.dependency 'TouchXML' + s.dependency 'objective-zip' + +end From c17cad788230ecf10283d49ace58733d5081e1ec Mon Sep 17 00:00:00 2001 From: "Juan J. Collas" Date: Sun, 23 Dec 2012 09:39:50 -0500 Subject: [PATCH 111/159] This is an iOS framework for parsing/generating KML files. --- .../0.0.1/iOS-KML-Framework.podspec | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 iOS-KML-Framework/0.0.1/iOS-KML-Framework.podspec diff --git a/iOS-KML-Framework/0.0.1/iOS-KML-Framework.podspec b/iOS-KML-Framework/0.0.1/iOS-KML-Framework.podspec new file mode 100644 index 00000000000000..a6210627efcbd7 --- /dev/null +++ b/iOS-KML-Framework/0.0.1/iOS-KML-Framework.podspec @@ -0,0 +1,24 @@ +# TODO Add TBXML license +Pod::Spec.new do |s| + s.name = "iOS-KML-Framework" + s.version = "0.0.1" + s.summary = "This is an iOS framework for parsing/generating KML files." + s.homepage = "http://kmlframework.com" + + s.license = 'BSD' + + s.author = { "Watanabe Toshinori" => "t@flcl.jp", + "Tom Bradley (TBXML)" => "tom@tbxml.co.uk" + } + + s.source = { :git => "https://github.com/FLCLjp/iOS-KML-Framework.git", :commit => "123c3e7d81a0f2be91c280951d2868ed512b461e" } + + s.platform = :ios, '4.0' + s.source_files = 'KML/*.{h,m}' + + s.framework = 'UIKit' + + s.preserve_paths = 'TBXML-LICENSE' + + s.requires_arc = true +end From dfe895ace4d31ba145c26152daa9511d1a687017 Mon Sep 17 00:00:00 2001 From: Max Desyatov Date: Sun, 23 Dec 2012 17:22:44 +0200 Subject: [PATCH 112/159] Pegged is a tool for generating Objective-C recursive-decent parsers from Parsing Expression Grammars (PEGs). --- pegged/0.0.1/pegged.podspec | 44 +++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 pegged/0.0.1/pegged.podspec diff --git a/pegged/0.0.1/pegged.podspec b/pegged/0.0.1/pegged.podspec new file mode 100644 index 00000000000000..4c93ec2f5f8d76 --- /dev/null +++ b/pegged/0.0.1/pegged.podspec @@ -0,0 +1,44 @@ +Pod::Spec.new do |s| + s.name = "pegged" + s.version = "0.0.1" + s.summary = "Pegged is a tool for generating Objective-C recursive-decent parsers from Parsing Expression Grammars (PEGs)." + s.description = <<-DESC + Pegged generates Objective-C parsers from PEG grammars. The parsers it generates are re-entrant, thread-safe, and do not leak memory: they are suitable for inclusion in other programs. + +Pegged reads the grammar specified in file and will create a class of the same name. A .h and a .m file will then be created in the output directory, which may be specified from the command line and defaults to the directory containing the PEG grammar. The parser class adheres to a simple interface: + + @protocol ParserDataSource; + typedef NSObject ParserDataSource; + @interface Parser : NSObject + { + } + @property (retain) ParserDataSource *dataSource; + - (BOOL) parse; + - (BOOL) parseString:(NSString *)string; + @end + + @protocol ParserDataSource + - (NSString *) nextString; + @end + +The data to be parsed may either be provided via a data source (which responds to a single selector, -nextString) or via the -parseString: selector. +DESC + s.homepage = "https://github.com/explicitcall/pegged" + s.license = { + :type => 'Public domain', + :text => <<-LICENSE + This code, along with the code it generates, is in the public domain + LICENSE + } + s.authors = { "Daniel Parnell" => "me@danielparnell.com", "Matt Diephouse" => "matt@diephouse.com" } + s.source = { :git => "https://github.com/explicitcall/pegged.git", :tag => "0.0.1" } + + s.platform = :osx, '10.8' + s.source_files = 'Source', 'Source/*.{h,m}' + + s.framework = 'Foundation' + + s.requires_arc = true + + s.prefix_header_file = 'Source/pegged_Prefix.pch' +end From 40e2bfe5f07e3c4b192048aea533a244826038ab Mon Sep 17 00:00:00 2001 From: David Brittain Date: Sun, 23 Dec 2012 09:30:30 -0800 Subject: [PATCH 113/159] 1.1.0 release of DBFBProfilePictureView --- .../1.1.0/DBFBProfilePictureView.podspec | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 DBFBProfilePictureView/1.1.0/DBFBProfilePictureView.podspec diff --git a/DBFBProfilePictureView/1.1.0/DBFBProfilePictureView.podspec b/DBFBProfilePictureView/1.1.0/DBFBProfilePictureView.podspec new file mode 100644 index 00000000000000..824fb2238cc0b1 --- /dev/null +++ b/DBFBProfilePictureView/1.1.0/DBFBProfilePictureView.podspec @@ -0,0 +1,15 @@ +Pod::Spec.new do |s| + s.name = 'DBFBProfilePictureView' + s.version = '1.1.0' + s.platform = :ios, '5.0' + s.summary = 'Improved Facebook profile picture view.' + s.homepage = 'https://github.com/combinatorial/DBFBProfilePictureView' + s.license = 'Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)' + s.author = { 'David Brittain' => 'combinatorial@gmail.com' } + s.source = { :git => 'https://github.com/combinatorial/DBFBProfilePictureView.git', :tag => '1.1.0' } + s.requires_arc = true + s.source_files = 'DBFBProfilePictureView' + s.dependency 'AFNetworking', '1.0' + s.dependency 'Facebook-iOS-SDK', '3.1.1' + s.framework = 'QuartzCore' +end From fda84362bc601b709d14d20f6191885b0181c05f Mon Sep 17 00:00:00 2001 From: Jake Heiser Date: Sun, 23 Dec 2012 11:40:43 -0600 Subject: [PATCH 114/159] Added CKRefreshControl --- CKRefreshControl/0.0.1/CKRefreshControl.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 CKRefreshControl/0.0.1/CKRefreshControl.podspec diff --git a/CKRefreshControl/0.0.1/CKRefreshControl.podspec b/CKRefreshControl/0.0.1/CKRefreshControl.podspec new file mode 100644 index 00000000000000..ebf4ee1c3b3881 --- /dev/null +++ b/CKRefreshControl/0.0.1/CKRefreshControl.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = "CKRefreshControl" + s.version = "0.0.1" + s.platform = :ios, '5.0' + s.license = 'MIT' + s.summary = "A pull-to-refresh view for iOS 5, 100% API-compatible with UIRefreshControl in iOS 6." + s.homepage = "https://github.com/instructure/CKRefreshControl" + s.author = { "BJ Homer" => "bjhomer@gmail.com" } + s.source = { :git => "https://github.com/instructure/CKRefreshControl.git", :commit => "1d273ba5a3a60c36ac358bcf28c96ec07bb6d94c" } + s.source_files = 'CKRefreshControl/*.{h,m}' + s.framework = 'QuartzCore' + s.requires_arc = true +end From 57454dcdca59b08bc59fb6a9a5aa05fa9031a528 Mon Sep 17 00:00:00 2001 From: Jeong YunWon Date: Mon, 24 Dec 2012 02:53:51 +0900 Subject: [PATCH 115/159] [Add] libhangul (0.1.0) --- libhangul/0.1.0/libhangul.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 libhangul/0.1.0/libhangul.podspec diff --git a/libhangul/0.1.0/libhangul.podspec b/libhangul/0.1.0/libhangul.podspec new file mode 100644 index 00000000000000..e07a0679726ba5 --- /dev/null +++ b/libhangul/0.1.0/libhangul.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = "libhangul" + s.version = "0.1.0" + s.summary = "libhangul." + s.homepage = "http://code.google.com/p/libhangul/" + s.license = { :type => 'LGPL', :file => 'COPYING' } + s.author = { "choehwanjin" => "choe.hwanjin@gmail.com" } + s.source = { :git => "https://github.com/choehwanjin/libhangul.git", :tag => "libhangul-0.1.0" } + s.source_files = 'hangul/*.c', 'hangul/*.h' + s.resource = 'data/hanja/*.txt' + s.xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS' => 'LIBHANGUL_DEFAULT_HANJA_DIC=\"@loader_path/../Resources/hanja.txt\"' } + +end From 9588063c120c9f8584faa17d284e8655ecdbba0d Mon Sep 17 00:00:00 2001 From: Brian Cooke Date: Sun, 23 Dec 2012 20:04:14 -0800 Subject: [PATCH 116/159] [Fixes] RHPreferences 1.0.0 Include the window's xib as a resource --- RHPreferences/1.0.0/RHPreferences.podspec | 1 + 1 file changed, 1 insertion(+) diff --git a/RHPreferences/1.0.0/RHPreferences.podspec b/RHPreferences/1.0.0/RHPreferences.podspec index 3f3239aacece8b..0f0cd562d3f64c 100644 --- a/RHPreferences/1.0.0/RHPreferences.podspec +++ b/RHPreferences/1.0.0/RHPreferences.podspec @@ -6,6 +6,7 @@ Pod::Spec.new do |s| s.author = 'Richard Heard' s.source = { :git => 'https://github.com/heardrwt/RHPreferences.git', :tag => s.version.to_s} s.source_files = 'RHPreferences/*.{h,m}' + s.resources = 'RHPreferences/*.{xib}' s.prefix_header_file = 'RHPreferences/RHPreferences-Prefix.pch' s.frameworks = 'Cocoa' s.platform = :osx From 75b2080957015c3ef1599f52aefaae2987a0b905 Mon Sep 17 00:00:00 2001 From: Sebastien THIEBAUD Date: Sun, 23 Dec 2012 21:03:36 -0800 Subject: [PATCH 117/159] STTweetLabel 1.1.2 --- STTweetLabel/1.1.2/STTweetLabel.podspec | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 STTweetLabel/1.1.2/STTweetLabel.podspec diff --git a/STTweetLabel/1.1.2/STTweetLabel.podspec b/STTweetLabel/1.1.2/STTweetLabel.podspec new file mode 100755 index 00000000000000..c2f7d303b62a0a --- /dev/null +++ b/STTweetLabel/1.1.2/STTweetLabel.podspec @@ -0,0 +1,17 @@ +Pod::Spec.new do |s| + s.name = "STTweetLabel" + s.version = "1.1.2" + s.summary = "A custom UILabel view controller for iOS with certain words tappable like Twitter." + s.homepage = "https://github.com/SebastienThiebaud/STTweetLabel" + + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { "Sebastien THIEBAUD" => "sthiebaud@icloud.com" } + s.source = { + :git => "https://github.com/SebastienThiebaud/STTweetLabel.git", + :tag => "1.1.2" + } + + s.platform = :ios, '5.0' + s.source_files = 'STTweetLabel/STTweetLabel.{h,m}' + s.requires_arc = true +end \ No newline at end of file From 2739079f8d944a26172be1f41effb3d0c9e63f75 Mon Sep 17 00:00:00 2001 From: Brian Cooke Date: Sun, 23 Dec 2012 21:08:04 -0800 Subject: [PATCH 118/159] [Fixes] PDKeychainBindingsController 0.0.1 Include Security.framework --- .../0.0.1/PDKeychainBindingsController.podspec | 1 + 1 file changed, 1 insertion(+) diff --git a/PDKeychainBindingsController/0.0.1/PDKeychainBindingsController.podspec b/PDKeychainBindingsController/0.0.1/PDKeychainBindingsController.podspec index ff5e44dca9a9b9..7647167d54489a 100644 --- a/PDKeychainBindingsController/0.0.1/PDKeychainBindingsController.podspec +++ b/PDKeychainBindingsController/0.0.1/PDKeychainBindingsController.podspec @@ -7,5 +7,6 @@ Pod::Spec.new do |s| s.author = 'Carl Brown' s.source = { :git => "https://github.com/carlbrown/PDKeychainBindingsController.git", :commit => "78f6debff6" } s.source_files = 'PDKeychainBindingsController' + s.frameworks = 'Security' s.requires_arc = true end From bdc4c73a5a2f63ba544ea1a53e5234af94a64edd Mon Sep 17 00:00:00 2001 From: Jeong YunWon Date: Mon, 24 Dec 2012 15:19:32 +0900 Subject: [PATCH 119/159] [Update] FoundationExtension (0.8.2) --- .../0.8.2/FoundationExtension.podspec | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 FoundationExtension/0.8.2/FoundationExtension.podspec diff --git a/FoundationExtension/0.8.2/FoundationExtension.podspec b/FoundationExtension/0.8.2/FoundationExtension.podspec new file mode 100644 index 00000000000000..af5be9a09deccf --- /dev/null +++ b/FoundationExtension/0.8.2/FoundationExtension.podspec @@ -0,0 +1,41 @@ +Pod::Spec.new do |s| + s.name = "FoundationExtension" + s.version = "0.8.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. + * Many common snippets in a method call. + * Looks like native foundation methods - It follows Apple Coding Guideline and Foundation naming convention. + See document on [Github] (http://youknowone.github.com/FoundationExtension) + + Try FoundationExtension for Foundation extensions. + For iOS, UIKitExtension is available too. + DESC + 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.8.2" } + s.dependency "cdebug", "~> 0.1" + + s.subspec "FoundationExtension" do |ss| + ss.source_files = "FoundationExtension" + ss.xcconfig = { "GCC_PREFIX_HEADER" => "FoundationExtension/FoundationExtension-Prefix.pch" } + end + + s.subspec "CocoaExtension" do |ss| + ss.platform = :osx + ss.source_files = "CocoaExtension" + ss.header_dir = "CocoaExtension" + ss.framework = "Cocoa" + ss.xcconfig = { "GCC_PREFIX_HEADER" => "CocoaExtension/CocoaExtension-Prefix.pch" } + ss.dependency "FoundationExtension/FoundationExtension" + end + + s.subspec "UIKitExtension" do |ss| + ss.platform = :ios + ss.source_files = "UIKitExtension" + ss.header_dir = "UIKitExtension" + ss.xcconfig = { "GCC_PREFIX_HEADER" => "UIKitExtension/UIKitExtension-Prefix.pch" } + ss.dependency "FoundationExtension/FoundationExtension" + end +end From 1a192b4521d8f87fb3a5647bd0f7b5f787a7aad1 Mon Sep 17 00:00:00 2001 From: Nikolay Tymchenko Date: Mon, 24 Dec 2012 17:26:37 +0200 Subject: [PATCH 120/159] Added Google-Diff-Match-Patch podspec --- .../0.0.1/Google-Diff-Match-Patch.podspec | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Google-Diff-Match-Patch/0.0.1/Google-Diff-Match-Patch.podspec diff --git a/Google-Diff-Match-Patch/0.0.1/Google-Diff-Match-Patch.podspec b/Google-Diff-Match-Patch/0.0.1/Google-Diff-Match-Patch.podspec new file mode 100644 index 00000000000000..4f528d9dd8543f --- /dev/null +++ b/Google-Diff-Match-Patch/0.0.1/Google-Diff-Match-Patch.podspec @@ -0,0 +1,18 @@ +Pod::Spec.new do |s| + s.name = "Google-Diff-Match-Patch" + s.version = "0.0.1" + s.summary = "The Diff Match and Patch libraries offer robust algorithms to perform the operations required for synchronizing plain text." + s.homepage = "http://http://code.google.com/p/google-diff-match-patch/" + + s.license = { :type => 'Apache License 2.0', :file => 'COPYING' } + s.authors = { 'Neil Fraser' => 'fraser@google.com', 'Jan Weiß' => 'jan@geheimwerk.de' } + + s.source = { :git => "https://github.com/JanX2/google-diff-match-patch-Objective-C.git", :commit => "6f29026f24f5856c8c53f9081f8a32a7df7af8c2" } + + s.ios.deployment_target = '4.0' + s.osx.deployment_target = '10.6' + + s.source_files = '*.{h,m,c}' + + s.requires_arc = false +end From 931dc9d8a7d89095ba887824cc1bbe5386e4c883 Mon Sep 17 00:00:00 2001 From: "Juan J. Collas" Date: Mon, 24 Dec 2012 12:20:39 -0500 Subject: [PATCH 121/159] AURosetteView is a easy-to-use, clean and lightweight share button primary for social platforms. --- AURosetteView/0.0.1/AURosetteView.podspec | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 AURosetteView/0.0.1/AURosetteView.podspec diff --git a/AURosetteView/0.0.1/AURosetteView.podspec b/AURosetteView/0.0.1/AURosetteView.podspec new file mode 100644 index 00000000000000..8a0cdc65636e79 --- /dev/null +++ b/AURosetteView/0.0.1/AURosetteView.podspec @@ -0,0 +1,15 @@ +Pod::Spec.new do |s| + s.name = "AURosetteView" + s.version = "0.0.1" + s.summary = "AURosetteView is a easy-to-use, clean and lightweight share button primary for social platforms." + s.homepage = "https://github.com/emilwojtaszek/AURosetteView" + s.license = 'MIT' + s.author = { "Emil Wojtaszet" => "emil@appunite.com" } + s.source = { :git => "https://github.com/emilwojtaszek/AURosetteView.git", :commit => "d646090ad9" } + + s.platform = :ios + + s.source_files = 'AURosetteView/RosetteView/*.{h,m}' + s.resources = 'Resources/Bundle.bundle' + +end From 5845932958627f5040f272950d6cb1b5469f878a Mon Sep 17 00:00:00 2001 From: John Tumminaro Date: Mon, 24 Dec 2012 10:06:53 -0800 Subject: [PATCH 122/159] Added latest version of Parse SDK. Bumped Parse SDK to 1.1.20. Signed-off-by: John Tumminaro --- Parse/1.1.20/Parse.podspec | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Parse/1.1.20/Parse.podspec diff --git a/Parse/1.1.20/Parse.podspec b/Parse/1.1.20/Parse.podspec new file mode 100644 index 00000000000000..d57ffd81801b22 --- /dev/null +++ b/Parse/1.1.20/Parse.podspec @@ -0,0 +1,17 @@ +Pod::Spec.new do |s| + s.name = 'Parse' + s.version = '1.1.20' + s.license = 'https://parse.com/about/terms' + s.platform = :ios + s.summary = 'The mobile app platform for developers.' + s.homepage = 'http://parse.com/' + s.author = { 'Parse' => 'support@parse.com' } + s.source = { :git => 'https://github.com/gonecoding/Parse.git', :tag => '1.1.20' } + s.description = 'To integrate after adding this pod, continue with step 8 here: https://parse.com/apps/quickstart' + s.source_files = 'ParseDummy.{m,h}' + s.preserve_paths = 'Parse.framework' + s.frameworks = 'StoreKit', 'AudioToolbox', 'CFNetwork', 'SystemConfiguration', 'MobileCoreServices', 'CoreGraphics', 'Security', 'QuartzCore', 'Parse' + s.weak_frameworks='AdSupport','Social', 'Accounts' + s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/Parse"' } + s.library = 'z', 'sqlite3' +end From 6513148bd1315933e90c10951d3ef49a3e66efa6 Mon Sep 17 00:00:00 2001 From: John Tumminaro Date: Mon, 24 Dec 2012 10:23:00 -0800 Subject: [PATCH 123/159] Bumped Parse version to 1.1.23 and changed Podspec to point to different repo. Signed-off-by: John Tumminaro --- Parse/{1.1.20 => 1.1.23}/Parse.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename Parse/{1.1.20 => 1.1.23}/Parse.podspec (87%) diff --git a/Parse/1.1.20/Parse.podspec b/Parse/1.1.23/Parse.podspec similarity index 87% rename from Parse/1.1.20/Parse.podspec rename to Parse/1.1.23/Parse.podspec index d57ffd81801b22..43935c63fbc872 100644 --- a/Parse/1.1.20/Parse.podspec +++ b/Parse/1.1.23/Parse.podspec @@ -1,12 +1,12 @@ Pod::Spec.new do |s| s.name = 'Parse' - s.version = '1.1.20' + s.version = '1.1.23' s.license = 'https://parse.com/about/terms' s.platform = :ios s.summary = 'The mobile app platform for developers.' s.homepage = 'http://parse.com/' s.author = { 'Parse' => 'support@parse.com' } - s.source = { :git => 'https://github.com/gonecoding/Parse.git', :tag => '1.1.20' } + s.source = { :git => 'https://github.com/smyrgl/Parse.git', :tag => '1.1.23' } s.description = 'To integrate after adding this pod, continue with step 8 here: https://parse.com/apps/quickstart' s.source_files = 'ParseDummy.{m,h}' s.preserve_paths = 'Parse.framework' From 8af0f1611ff3b7ad72690c68ddbcd4bed003231e Mon Sep 17 00:00:00 2001 From: John Tumminaro Date: Mon, 24 Dec 2012 14:44:58 -0800 Subject: [PATCH 124/159] [Fix] Parse (1.1.23) --- Parse/1.1.23/Parse.podspec | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Parse/1.1.23/Parse.podspec b/Parse/1.1.23/Parse.podspec index 43935c63fbc872..85a3da594e9b43 100644 --- a/Parse/1.1.23/Parse.podspec +++ b/Parse/1.1.23/Parse.podspec @@ -1,17 +1,22 @@ Pod::Spec.new do |s| - s.name = 'Parse' - s.version = '1.1.23' - s.license = 'https://parse.com/about/terms' - s.platform = :ios - s.summary = 'The mobile app platform for developers.' - s.homepage = 'http://parse.com/' + s.name = 'Parse' + s.version = '1.1.23' + s.license = { :type => 'Commercial', :text => 'See https://parse.com/about/terms' } + s.platform = :ios, '5.0' + s.summary = 'iOS framework for developing apps using the Parse BaaS.' + s.description = 'To integrate after adding this pod, continue with step 8 here: https://parse.com/apps/quickstart' + s.homepage = 'http://parse.com' s.author = { 'Parse' => 'support@parse.com' } s.source = { :git => 'https://github.com/smyrgl/Parse.git', :tag => '1.1.23' } s.description = 'To integrate after adding this pod, continue with step 8 here: https://parse.com/apps/quickstart' s.source_files = 'ParseDummy.{m,h}' s.preserve_paths = 'Parse.framework' - s.frameworks = 'StoreKit', 'AudioToolbox', 'CFNetwork', 'SystemConfiguration', 'MobileCoreServices', 'CoreGraphics', 'Security', 'QuartzCore', 'Parse' + s.requires_arc = true + s.frameworks = 'StoreKit', 'AudioToolbox', 'CFNetwork', 'SystemConfiguration', 'MobileCoreServices', 'CoreGraphics', 'Security', 'QuartzCore', 'CoreLocation', 'Parse' s.weak_frameworks='AdSupport','Social', 'Accounts' s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/Parse"' } s.library = 'z', 'sqlite3' + end + + From 96fef6404a3fb540c64c9e4f51766c49322fc01f Mon Sep 17 00:00:00 2001 From: KAZUMA Ukyo Date: Tue, 25 Dec 2012 08:07:56 +0900 Subject: [PATCH 125/159] added Overline 0.0.1 --- Overline/0.0.1/Overline.podspec | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Overline/0.0.1/Overline.podspec diff --git a/Overline/0.0.1/Overline.podspec b/Overline/0.0.1/Overline.podspec new file mode 100644 index 00000000000000..fb9338145505cc --- /dev/null +++ b/Overline/0.0.1/Overline.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = "Overline" + s.version = "0.0.1" + s.summary = "Objective-C utilities and shorthands." + s.homepage = "https://github.com/yaakaito/Overline" + s.license = 'MIT (example)' + s.author = { "KAZUMA Ukyo" => "yaakaito@gmail.com" } + s.source = { :git => "https://github.com/yaakaito/Overline.git", :tag => "0.0.1" } + s.source_files = 'Overline', 'Overline/**/*.{h,m}' + s.public_header_files = 'Overline/**/*.h' + s.requires_arc = true +end From 016e609c47cc770faf20c45d7ccebb2b8730f1b8 Mon Sep 17 00:00:00 2001 From: KAZUMA Ukyo Date: Tue, 25 Dec 2012 08:15:42 +0900 Subject: [PATCH 126/159] fixed Overline license --- Overline/0.0.1/Overline.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Overline/0.0.1/Overline.podspec b/Overline/0.0.1/Overline.podspec index fb9338145505cc..56c13d5e620d3f 100644 --- a/Overline/0.0.1/Overline.podspec +++ b/Overline/0.0.1/Overline.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| s.version = "0.0.1" s.summary = "Objective-C utilities and shorthands." s.homepage = "https://github.com/yaakaito/Overline" - s.license = 'MIT (example)' + s.license = 'MIT' s.author = { "KAZUMA Ukyo" => "yaakaito@gmail.com" } s.source = { :git => "https://github.com/yaakaito/Overline.git", :tag => "0.0.1" } s.source_files = 'Overline', 'Overline/**/*.{h,m}' From ca222e4319278d5c33326506dd0af12f87b4654c Mon Sep 17 00:00:00 2001 From: Yuriy Pitomets Date: Tue, 25 Dec 2012 17:58:24 +0200 Subject: [PATCH 127/159] Google+ Platform for iOS. --- .../1.1.0/google-plus-ios-sdk.podspec | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 google-plus-ios-sdk/1.1.0/google-plus-ios-sdk.podspec diff --git a/google-plus-ios-sdk/1.1.0/google-plus-ios-sdk.podspec b/google-plus-ios-sdk/1.1.0/google-plus-ios-sdk.podspec new file mode 100644 index 00000000000000..107262220ba8a9 --- /dev/null +++ b/google-plus-ios-sdk/1.1.0/google-plus-ios-sdk.podspec @@ -0,0 +1,19 @@ +Pod::Spec.new do |s| + s.name = "google-plus-ios-sdk" + s.version = "1.1.0" + s.summary = "Google+ Platform for iOS." + s.description = "Create a more engaging experience and connect with more users by integrating social into your app. Extend your app in new and creative ways using these Google+ platform features." + s.homepage = "https://developers.google.com/+/mobile/ios/" + s.license = { + :type => 'Copyright', + :text => 'Copyright 2012 Google Inc.' + } + s.author = 'Google Inc.' + s.source = { :http => "https://developers.google.com/+/mobile/ios/sdk/google-plus-ios-sdk-1.1.0.zip" } + s.platform = :ios + s.resources = 'google-plus-ios-sdk-1.1.0/Resources/*.png' + s.source_files = 'google-plus-ios-sdk-1.1.0/lib/*.{h}', 'google-plus-ios-sdk-1.1.0/OpenSource/**/*.{h,m}' + s.framework = 'Security', 'SystemConfiguration' + s.requires_arc = false + s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '"$(PODS_ROOT)/google-plus-ios-sdk/google-plus-ios-sdk-1.1.0/lib"' } +end From 53530cc68f2f835d74fcb510ba89b83a2bc6c2ca Mon Sep 17 00:00:00 2001 From: Yuriy Pitomets Date: Tue, 25 Dec 2012 18:07:40 +0200 Subject: [PATCH 128/159] Google+ Platform for iOS. --- .../1.1.0/google-plus-ios-sdk.podspec | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 google-plus-ios-sdk/1.1.0/google-plus-ios-sdk.podspec diff --git a/google-plus-ios-sdk/1.1.0/google-plus-ios-sdk.podspec b/google-plus-ios-sdk/1.1.0/google-plus-ios-sdk.podspec new file mode 100644 index 00000000000000..107262220ba8a9 --- /dev/null +++ b/google-plus-ios-sdk/1.1.0/google-plus-ios-sdk.podspec @@ -0,0 +1,19 @@ +Pod::Spec.new do |s| + s.name = "google-plus-ios-sdk" + s.version = "1.1.0" + s.summary = "Google+ Platform for iOS." + s.description = "Create a more engaging experience and connect with more users by integrating social into your app. Extend your app in new and creative ways using these Google+ platform features." + s.homepage = "https://developers.google.com/+/mobile/ios/" + s.license = { + :type => 'Copyright', + :text => 'Copyright 2012 Google Inc.' + } + s.author = 'Google Inc.' + s.source = { :http => "https://developers.google.com/+/mobile/ios/sdk/google-plus-ios-sdk-1.1.0.zip" } + s.platform = :ios + s.resources = 'google-plus-ios-sdk-1.1.0/Resources/*.png' + s.source_files = 'google-plus-ios-sdk-1.1.0/lib/*.{h}', 'google-plus-ios-sdk-1.1.0/OpenSource/**/*.{h,m}' + s.framework = 'Security', 'SystemConfiguration' + s.requires_arc = false + s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '"$(PODS_ROOT)/google-plus-ios-sdk/google-plus-ios-sdk-1.1.0/lib"' } +end From 2f21bc856451d2fc174ed4a5524f7d2915e038d3 Mon Sep 17 00:00:00 2001 From: Yuriy Pitomets Date: Tue, 25 Dec 2012 20:32:33 +0200 Subject: [PATCH 129/159] preserve_paths added --- .../1.1.0/google-plus-ios-sdk.podspec | 29 ++++++++++--------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/google-plus-ios-sdk/1.1.0/google-plus-ios-sdk.podspec b/google-plus-ios-sdk/1.1.0/google-plus-ios-sdk.podspec index 107262220ba8a9..8fa66328ff4788 100644 --- a/google-plus-ios-sdk/1.1.0/google-plus-ios-sdk.podspec +++ b/google-plus-ios-sdk/1.1.0/google-plus-ios-sdk.podspec @@ -1,19 +1,20 @@ Pod::Spec.new do |s| - s.name = "google-plus-ios-sdk" - s.version = "1.1.0" - s.summary = "Google+ Platform for iOS." - s.description = "Create a more engaging experience and connect with more users by integrating social into your app. Extend your app in new and creative ways using these Google+ platform features." - s.homepage = "https://developers.google.com/+/mobile/ios/" - s.license = { + s.name = "google-plus-ios-sdk" + s.version = "1.1.0" + s.summary = "Google+ Platform for iOS." + s.description = "Create a more engaging experience and connect with more users by integrating social into your app. Extend your app in new and creative ways using these Google+ platform features." + s.homepage = "https://developers.google.com/+/mobile/ios/" + s.license = { :type => 'Copyright', :text => 'Copyright 2012 Google Inc.' } - s.author = 'Google Inc.' - s.source = { :http => "https://developers.google.com/+/mobile/ios/sdk/google-plus-ios-sdk-1.1.0.zip" } - s.platform = :ios - s.resources = 'google-plus-ios-sdk-1.1.0/Resources/*.png' - s.source_files = 'google-plus-ios-sdk-1.1.0/lib/*.{h}', 'google-plus-ios-sdk-1.1.0/OpenSource/**/*.{h,m}' - s.framework = 'Security', 'SystemConfiguration' - s.requires_arc = false - s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '"$(PODS_ROOT)/google-plus-ios-sdk/google-plus-ios-sdk-1.1.0/lib"' } + s.author = 'Google Inc.' + s.source = { :http => "https://developers.google.com/+/mobile/ios/sdk/google-plus-ios-sdk-1.1.0.zip" } + s.platform = :ios + s.resources = 'google-plus-ios-sdk-1.1.0/Resources/*.png' + s.source_files = 'google-plus-ios-sdk-1.1.0/lib/*.{h}', 'google-plus-ios-sdk-1.1.0/OpenSource/**/*.{h,m}' + s.preserve_paths = 'google-plus-ios-sdk-1.1.0/lib/libGooglePlusUniversal.a' + s.framework = 'Security', 'SystemConfiguration' + s.requires_arc = false + s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '"$(PODS_ROOT)/google-plus-ios-sdk/google-plus-ios-sdk-1.1.0/lib"' } end From 871faa5e5015bd256cc651c76cdab2ad29a658b9 Mon Sep 17 00:00:00 2001 From: Yuriy Pitomets Date: Tue, 25 Dec 2012 21:22:29 +0200 Subject: [PATCH 130/159] update library list --- google-plus-ios-sdk/1.1.0/google-plus-ios-sdk.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/google-plus-ios-sdk/1.1.0/google-plus-ios-sdk.podspec b/google-plus-ios-sdk/1.1.0/google-plus-ios-sdk.podspec index 8fa66328ff4788..516c7830c1fa53 100644 --- a/google-plus-ios-sdk/1.1.0/google-plus-ios-sdk.podspec +++ b/google-plus-ios-sdk/1.1.0/google-plus-ios-sdk.podspec @@ -11,9 +11,9 @@ Pod::Spec.new do |s| s.author = 'Google Inc.' s.source = { :http => "https://developers.google.com/+/mobile/ios/sdk/google-plus-ios-sdk-1.1.0.zip" } s.platform = :ios - s.resources = 'google-plus-ios-sdk-1.1.0/Resources/*.png' - s.source_files = 'google-plus-ios-sdk-1.1.0/lib/*.{h}', 'google-plus-ios-sdk-1.1.0/OpenSource/**/*.{h,m}' + s.source_files = 'google-plus-ios-sdk-1.1.0/lib/*.{h}', 'google-plus-ios-sdk-1.1.0/OpenSource/**/*.{h,m}', 'google-plus-ios-sdk-1.1.0/Resources/*.png' s.preserve_paths = 'google-plus-ios-sdk-1.1.0/lib/libGooglePlusUniversal.a' + s.library = 'GooglePlusUniversal' s.framework = 'Security', 'SystemConfiguration' s.requires_arc = false s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '"$(PODS_ROOT)/google-plus-ios-sdk/google-plus-ios-sdk-1.1.0/lib"' } From 6f48006b5c801db98e52c05f588fb21966def06f Mon Sep 17 00:00:00 2001 From: Adar Porat Date: Wed, 26 Dec 2012 00:34:02 -0500 Subject: [PATCH 131/159] iTellAFriend 1.2.0 podspec --- iTellAFriend/1.2.0/iTellAFriend.podspec | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 iTellAFriend/1.2.0/iTellAFriend.podspec diff --git a/iTellAFriend/1.2.0/iTellAFriend.podspec b/iTellAFriend/1.2.0/iTellAFriend.podspec new file mode 100644 index 00000000000000..63bf6b52eb6a78 --- /dev/null +++ b/iTellAFriend/1.2.0/iTellAFriend.podspec @@ -0,0 +1,17 @@ +Pod::Spec.new do |s| + s.name = 'iTellAFriend' + s.version = '1.2.0' + s.license = 'Apache License, Version 2.0' + s.summary = 'iTellAFriend is an iOS toolkit for displaying a preconfigued mail composer' \ + 'with a "Tell a Friend" template in ios apps.' + s.homepage = 'https://github.com/aporat/iTellAFriend' + s.author = { 'Adar Porat' => 'http://github.com/aporat' } + s.source = { :git => 'https://github.com/aporat/iTellAFriend.git', :tag => '1.2.0' } + + s.platform = :ios, '5.0' + s.requires_arc = true + s.source_files = 'src/*.{h,m}' + s.clean_paths = "Classes", "*.{plist,pch,md,m,xcodeproj}", "example" + s.frameworks = 'MessageUI' + +end From daad71a73cb32e6cc5b50de476fe2aca45fd7db1 Mon Sep 17 00:00:00 2001 From: Yuriy Pitomets Date: Wed, 26 Dec 2012 12:45:03 +0200 Subject: [PATCH 132/159] put back resource --- google-plus-ios-sdk/1.1.0/google-plus-ios-sdk.podspec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/google-plus-ios-sdk/1.1.0/google-plus-ios-sdk.podspec b/google-plus-ios-sdk/1.1.0/google-plus-ios-sdk.podspec index 516c7830c1fa53..60e8c609149c4a 100644 --- a/google-plus-ios-sdk/1.1.0/google-plus-ios-sdk.podspec +++ b/google-plus-ios-sdk/1.1.0/google-plus-ios-sdk.podspec @@ -11,7 +11,8 @@ Pod::Spec.new do |s| s.author = 'Google Inc.' s.source = { :http => "https://developers.google.com/+/mobile/ios/sdk/google-plus-ios-sdk-1.1.0.zip" } s.platform = :ios - s.source_files = 'google-plus-ios-sdk-1.1.0/lib/*.{h}', 'google-plus-ios-sdk-1.1.0/OpenSource/**/*.{h,m}', 'google-plus-ios-sdk-1.1.0/Resources/*.png' + s.source_files = 'google-plus-ios-sdk-1.1.0/lib/*.{h}', 'google-plus-ios-sdk-1.1.0/OpenSource/**/*.{h,m}' + s.resource = 'google-plus-ios-sdk-1.1.0/Resources/*.png' s.preserve_paths = 'google-plus-ios-sdk-1.1.0/lib/libGooglePlusUniversal.a' s.library = 'GooglePlusUniversal' s.framework = 'Security', 'SystemConfiguration' From 8144a2afaddcbeb0bb75c8923ef7dcd048f04d0a Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Wed, 26 Dec 2012 08:08:46 -0500 Subject: [PATCH 133/159] [Fix] iTellAFriend (1.2.0) --- iTellAFriend/1.2.0/iTellAFriend.podspec | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/iTellAFriend/1.2.0/iTellAFriend.podspec b/iTellAFriend/1.2.0/iTellAFriend.podspec index 63bf6b52eb6a78..4c473feae1c14a 100644 --- a/iTellAFriend/1.2.0/iTellAFriend.podspec +++ b/iTellAFriend/1.2.0/iTellAFriend.podspec @@ -11,7 +11,6 @@ Pod::Spec.new do |s| s.platform = :ios, '5.0' s.requires_arc = true s.source_files = 'src/*.{h,m}' - s.clean_paths = "Classes", "*.{plist,pch,md,m,xcodeproj}", "example" + s.preserve_paths = "Classes", "*.{plist,pch,md,m,xcodeproj}", "example" s.frameworks = 'MessageUI' - end From 594b437da788bd3cc65660d8535a191ef13bef47 Mon Sep 17 00:00:00 2001 From: James Coleman Date: Wed, 26 Dec 2012 08:59:45 -0500 Subject: [PATCH 134/159] =?UTF-8?q?[Add]=20Lambda-Alert=20(1.0.0)=20[James?= =?UTF-8?q?=20Coleman=20for=20Tom=C3=A1=C5=A1=20Znamen=C3=A1=C4=8Dek]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Lambda-Alert/Lambda-Alert.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Lambda-Alert/Lambda-Alert.podspec diff --git a/Lambda-Alert/Lambda-Alert.podspec b/Lambda-Alert/Lambda-Alert.podspec new file mode 100644 index 00000000000000..772fcd334e65f5 --- /dev/null +++ b/Lambda-Alert/Lambda-Alert.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = 'Lambda-Alert' + s.version = '1.0.0' + s.summary = 'Simple UIAlertView wrapper that uses blocks for button actions' + s.homepage = 'https://github.com/zoul/Lambda-Alert/' + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { 'Tomáš Znamenáček' => 'tomas.znamenacek@gmail.com' } + s.platform = :ios + s.requires_arc = true + s.source = { :git => 'https://github.com/zoul/Lambda-Alert.git', :tag => "1.0.0" } + s.source_files = 'Sources/*.{h,m}' + s.frameworks = 'CoreGraphics' +end From 5361cffa02ff1f555b56ef9a1d10f0716415d0fa Mon Sep 17 00:00:00 2001 From: James Coleman Date: Wed, 26 Dec 2012 09:06:25 -0500 Subject: [PATCH 135/159] =?UTF-8?q?Revert=20"[Add]=20Lambda-Alert=20(1.0.0?= =?UTF-8?q?)=20[James=20Coleman=20for=20Tom=C3=A1=C5=A1=20Znamen=C3=A1?= =?UTF-8?q?=C4=8Dek]"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 594b437da788bd3cc65660d8535a191ef13bef47. --- Lambda-Alert/Lambda-Alert.podspec | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 Lambda-Alert/Lambda-Alert.podspec diff --git a/Lambda-Alert/Lambda-Alert.podspec b/Lambda-Alert/Lambda-Alert.podspec deleted file mode 100644 index 772fcd334e65f5..00000000000000 --- a/Lambda-Alert/Lambda-Alert.podspec +++ /dev/null @@ -1,13 +0,0 @@ -Pod::Spec.new do |s| - s.name = 'Lambda-Alert' - s.version = '1.0.0' - s.summary = 'Simple UIAlertView wrapper that uses blocks for button actions' - s.homepage = 'https://github.com/zoul/Lambda-Alert/' - s.license = { :type => 'MIT', :file => 'LICENSE' } - s.author = { 'Tomáš Znamenáček' => 'tomas.znamenacek@gmail.com' } - s.platform = :ios - s.requires_arc = true - s.source = { :git => 'https://github.com/zoul/Lambda-Alert.git', :tag => "1.0.0" } - s.source_files = 'Sources/*.{h,m}' - s.frameworks = 'CoreGraphics' -end From 95a61e2b92f66eac8ca644af82a70de9c07b5c39 Mon Sep 17 00:00:00 2001 From: James Coleman Date: Wed, 26 Dec 2012 09:07:28 -0500 Subject: [PATCH 136/159] =?UTF-8?q?[Add]=20Lambda-Alert=20(1.0.0)=20[James?= =?UTF-8?q?=20Coleman=20for=20Tom=C3=A1=C5=A1=20Znamen=C3=A1=C4=8Dek]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Lamba-Alert/1.0.0/Lambda-Alert.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Lamba-Alert/1.0.0/Lambda-Alert.podspec diff --git a/Lamba-Alert/1.0.0/Lambda-Alert.podspec b/Lamba-Alert/1.0.0/Lambda-Alert.podspec new file mode 100644 index 00000000000000..caa0d593a5e546 --- /dev/null +++ b/Lamba-Alert/1.0.0/Lambda-Alert.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = 'Lambda-Alert' + s.version = '1.0.0' + s.summary = 'Simple UIAlertView wrapper that uses blocks for button actions.' + s.homepage = 'https://github.com/zoul/Lambda-Alert/' + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { 'Tomáš Znamenáček' => 'tomas.znamenacek@gmail.com' } + s.platform = :ios + s.requires_arc = true + s.source = { :git => 'https://github.com/zoul/Lambda-Alert.git', :tag => "1.0.0" } + s.source_files = 'Sources/*.{h,m}' + s.frameworks = 'CoreGraphics' +end From bd4eca926cea0e5bdeac473f950309c66223c70a Mon Sep 17 00:00:00 2001 From: James Coleman Date: Wed, 26 Dec 2012 09:18:51 -0500 Subject: [PATCH 137/159] Correct path. --- {Lamba-Alert => Lambda-Alert}/1.0.0/Lambda-Alert.podspec | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {Lamba-Alert => Lambda-Alert}/1.0.0/Lambda-Alert.podspec (100%) diff --git a/Lamba-Alert/1.0.0/Lambda-Alert.podspec b/Lambda-Alert/1.0.0/Lambda-Alert.podspec similarity index 100% rename from Lamba-Alert/1.0.0/Lambda-Alert.podspec rename to Lambda-Alert/1.0.0/Lambda-Alert.podspec From b05ae2fa46e048a202637a526f4aa980cf54a372 Mon Sep 17 00:00:00 2001 From: Adam Kirk Date: Wed, 26 Dec 2012 08:44:32 -0700 Subject: [PATCH 138/159] [Update] FamilySearchCocoa (0.8.7) --- .../0.8.7/FamilySearchCocoa.podspec | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 FamilySearchCocoa/0.8.7/FamilySearchCocoa.podspec diff --git a/FamilySearchCocoa/0.8.7/FamilySearchCocoa.podspec b/FamilySearchCocoa/0.8.7/FamilySearchCocoa.podspec new file mode 100644 index 00000000000000..aa6c176942bb30 --- /dev/null +++ b/FamilySearchCocoa/0.8.7/FamilySearchCocoa.podspec @@ -0,0 +1,18 @@ +Pod::Spec.new do |s| + s.name = "FamilySearchCocoa" + s.version = "0.8.7" + s.summary = "An easy to use library for interacting with the FamilySearch.org API on iOS or OS X" + s.description = <<-DESC + You need to get a developer key from https://devnet.familysearch.org/ first. Then you can easily get the current user, add + parents, children, spouses and modify a persons events like birth, death, marriage date, etc. More is coming soon. + DESC + s.homepage = "https://github.com/FamilySearch/FamilySearchCocoa" + s.license = 'BSD' + s.author = { "Adam Kirk" => "akirk@familysearch.org" } + s.source = { :git => "https://github.com/FamilySearch/FamilySearchCocoa.git", :tag => "0.8.7" } + s.source_files = 'FamilySearchCocoa/*.{h,m}' + s.requires_arc = true + s.dependency 'MTPocket' + s.dependency 'MTDates' + s.dependency 'MTJSONUtils' +end From e858dc9ddea95deb75056a35221d4c5ac79a124c Mon Sep 17 00:00:00 2001 From: Roman Stetsenko Date: Wed, 26 Dec 2012 17:51:25 +0200 Subject: [PATCH 139/159] added PaperFold spec v1.1 --- PaperFold/1.1/PaperFold.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 PaperFold/1.1/PaperFold.podspec diff --git a/PaperFold/1.1/PaperFold.podspec b/PaperFold/1.1/PaperFold.podspec new file mode 100644 index 00000000000000..0a269b2d32672e --- /dev/null +++ b/PaperFold/1.1/PaperFold.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = "PaperFold" + s.version = "1.1" + s.summary = "Paper folding animation for iOS." + s.homepage = "https://github.com/honcheng/PaperFold-for-iOS" + s.license = 'MIT' + s.author = { "Muh Hon Cheng" => "honcheng@gmail.com" } + s.source = { :git => "https://github.com/honcheng/PaperFold-for-iOS.git", :tag => "1.1" } + s.platform = :ios, '5.0' + s.source_files = 'PaperFold/PaperFold/PaperFold/*.{h,m}' + s.resource = "PaperFold/PaperFold/PaperFold/PaperFoldResources.bundle" + s.framework = 'QuartzCore' + s.requires_arc = true +end \ No newline at end of file From d3dc00d8a56b82b944f6e38568d933ff600a8925 Mon Sep 17 00:00:00 2001 From: Agassi Yu Date: Thu, 27 Dec 2012 01:58:03 +0800 Subject: [PATCH 140/159] add sina weibo sdk 0.0.1 --- SinaWeibo/0.0.1/SinaWeibo.podspec | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 SinaWeibo/0.0.1/SinaWeibo.podspec diff --git a/SinaWeibo/0.0.1/SinaWeibo.podspec b/SinaWeibo/0.0.1/SinaWeibo.podspec new file mode 100644 index 00000000000000..31d3f70e73a0cc --- /dev/null +++ b/SinaWeibo/0.0.1/SinaWeibo.podspec @@ -0,0 +1,20 @@ +Pod::Spec.new do |s| + s.name = "SinaWeibo" + s.version = "0.0.1" + s.summary = "sina weibo sdk of sso and Oauth2.0" + s.homepage = "https://github.com/mobileresearch/weibo_ios_sdk_sso-oauth" + s.license = 'MIT (example)' + s.license = { + :type => 'Commercial', + :text => <<-LICENSE + Commercial license. + Please get a license from Tencent before use. + LICENSE + } + s.author = { "mobileresearch" => "email@address.com" } + s.source = { :git => "https://github.com/mobileresearch/weibo_ios_sdk_sso-oauth.git", :commit => "b24060e4caa5596a585462525a526f36f63dcd96" } + s.platform = :ios + s.source_files = 'sinaweibo_ios_sdk&demo/sinaweibo_ios_sdk/SinaWeibo/*.{h,m}' + s.resources = "sinaweibo_ios_sdk&demo/sinaweibo_ios_sdk/SinaWeibo/SinaWeibo.bundle" + s.dependency 'JSONKit' +end From b0f317fd9529f4ce21228fc079827e6a10c7a623 Mon Sep 17 00:00:00 2001 From: Arnaud Bellec Date: Wed, 26 Dec 2012 19:08:00 +0100 Subject: [PATCH 141/159] Fixed multiple target warning + fixed include path in ios module --- ZXing/2.0/ZXing.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ZXing/2.0/ZXing.podspec b/ZXing/2.0/ZXing.podspec index 145d8c017325dc..27661e8438dd1e 100644 --- a/ZXing/2.0/ZXing.podspec +++ b/ZXing/2.0/ZXing.podspec @@ -11,7 +11,7 @@ Pod::Spec.new do |s| s.source = { :svn => "http://zxing.googlecode.com/svn/tags/2.0" } # s.source = { :git => "https://github.com/zxing/zxing.git" } - s.source_files = 'cpp/core/src/zxing/**/*.{h,cpp}', 'objc/src/ZXing/*.{h,m,mm}' + s.preserve_paths = 'cpp/core/src/zxing/**/*.{h,cpp}', 'objc/src/ZXing/*.{h,m,mm}' s.compiler_flags = '-IZXing/cpp/core/src/' s.requires_arc = false @@ -26,7 +26,7 @@ Pod::Spec.new do |s| ios.ios.deployment_target = '4.3' ios.source_files = 'iphone/ZXingWidget/Classes/**/*.{h,m,mm}' - ios.compiler_flags = '-IZXing/cpp/core/src/', '-IZXing/iphone/ZXingWidget/Classes/' + ios.compiler_flags = '-IZXing/cpp/core/src/zxing/', '-IZXing/iphone/ZXingWidget/Classes/' # must use xcconfig additional to compiler_flag -I to make this header path also available for the including project ios.xcconfig = { 'HEADER_SEARCH_PATHS' => '${PODS_ROOT}/ZXing/cpp/core/src/ ${PODS_ROOT}/ZXing/iphone/ZXingWidget/Classes/' } From 6cc25444980770a577bfea72347359a74189f4db Mon Sep 17 00:00:00 2001 From: Adam Kirk Date: Wed, 26 Dec 2012 11:27:22 -0700 Subject: [PATCH 142/159] [Update] FamilySearchCocoa (0.9.0) --- .../0.9.0/FamilySearchCocoa.podspec | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 FamilySearchCocoa/0.9.0/FamilySearchCocoa.podspec diff --git a/FamilySearchCocoa/0.9.0/FamilySearchCocoa.podspec b/FamilySearchCocoa/0.9.0/FamilySearchCocoa.podspec new file mode 100644 index 00000000000000..d5a5ce15667bde --- /dev/null +++ b/FamilySearchCocoa/0.9.0/FamilySearchCocoa.podspec @@ -0,0 +1,18 @@ +Pod::Spec.new do |s| + s.name = "FamilySearchCocoa" + s.version = "0.9.0" + s.summary = "An easy to use library for interacting with the FamilySearch.org API on iOS or OS X" + s.description = <<-DESC + You need to get a developer key from https://devnet.familysearch.org/ first. Then you can easily get the current user, add + parents, children, spouses and modify a persons events like birth, death, marriage date, etc. More is coming soon. + DESC + s.homepage = "https://github.com/FamilySearch/FamilySearchCocoa" + s.license = 'BSD' + s.author = { "Adam Kirk" => "akirk@familysearch.org" } + s.source = { :git => "https://github.com/FamilySearch/FamilySearchCocoa.git", :tag => "0.9.0" } + s.source_files = 'FamilySearchCocoa/*.{h,m}' + s.requires_arc = true + s.dependency 'MTPocket' + s.dependency 'MTDates' + s.dependency 'MTJSONUtils' +end From 080b4a878b68d1dd92e9e9f8b321652d4ab037ee Mon Sep 17 00:00:00 2001 From: Alex Billingsley Date: Wed, 26 Dec 2012 12:47:32 -0600 Subject: [PATCH 143/159] [Add] ISRefreshControl (1.0.2) --- .../1.0.2/ISRefreshControl.podspec | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 ISRefreshControl/1.0.2/ISRefreshControl.podspec diff --git a/ISRefreshControl/1.0.2/ISRefreshControl.podspec b/ISRefreshControl/1.0.2/ISRefreshControl.podspec new file mode 100644 index 00000000000000..c131ec73d16eee --- /dev/null +++ b/ISRefreshControl/1.0.2/ISRefreshControl.podspec @@ -0,0 +1,23 @@ +Pod::Spec.new do |s| + s.name = "ISRefreshControl" + s.version = "1.0.2" + s.platform = :ios, '5.0' + s.license = { + :type => 'MIT', + :text => <<-LICENSE + 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.summary = "iOS5-compatible UIRefreshControl." + s.homepage = "https://github.com/ishkawa/ISRefreshControl" + s.author = { "Yosuke Ishikawa" => "ishkawa73@gmail.com" } + s.source = { :git => "https://github.com/ishkawa/ISRefreshControl.git", :tag => "1.0.2" } + s.source_files = 'ISRefreshControl', 'ISRefreshControl/**/*.{h,m}' + s.framework = 'QuartzCore' + s.requires_arc = true +end \ No newline at end of file From 037d055c7ed0d63c6b68cf369b758cd9608d51d9 Mon Sep 17 00:00:00 2001 From: Alex Billingsley Date: Wed, 26 Dec 2012 13:01:45 -0600 Subject: [PATCH 144/159] [Fix] ISRefreshControl (1.0.2) --- ISRefreshControl/1.0.2/ISRefreshControl.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ISRefreshControl/1.0.2/ISRefreshControl.podspec b/ISRefreshControl/1.0.2/ISRefreshControl.podspec index c131ec73d16eee..85923a17171fd8 100644 --- a/ISRefreshControl/1.0.2/ISRefreshControl.podspec +++ b/ISRefreshControl/1.0.2/ISRefreshControl.podspec @@ -17,7 +17,7 @@ Pod::Spec.new do |s| s.homepage = "https://github.com/ishkawa/ISRefreshControl" s.author = { "Yosuke Ishikawa" => "ishkawa73@gmail.com" } s.source = { :git => "https://github.com/ishkawa/ISRefreshControl.git", :tag => "1.0.2" } - s.source_files = 'ISRefreshControl', 'ISRefreshControl/**/*.{h,m}' + s.source_files = 'ISRefreshControl' s.framework = 'QuartzCore' s.requires_arc = true end \ No newline at end of file From 1204b49355d68562d5823a6197f0bd04269474df Mon Sep 17 00:00:00 2001 From: Alex Billingsley Date: Wed, 26 Dec 2012 13:06:57 -0600 Subject: [PATCH 145/159] [Fix] ISRefreshControl (1.0.2) --- ISRefreshControl/1.0.2/ISRefreshControl.podspec | 1 + 1 file changed, 1 insertion(+) diff --git a/ISRefreshControl/1.0.2/ISRefreshControl.podspec b/ISRefreshControl/1.0.2/ISRefreshControl.podspec index 85923a17171fd8..eb26dd5ae4664e 100644 --- a/ISRefreshControl/1.0.2/ISRefreshControl.podspec +++ b/ISRefreshControl/1.0.2/ISRefreshControl.podspec @@ -18,6 +18,7 @@ Pod::Spec.new do |s| s.author = { "Yosuke Ishikawa" => "ishkawa73@gmail.com" } s.source = { :git => "https://github.com/ishkawa/ISRefreshControl.git", :tag => "1.0.2" } s.source_files = 'ISRefreshControl' + s.resources = 'ISRefreshControl/Images/*.png' s.framework = 'QuartzCore' s.requires_arc = true end \ No newline at end of file From b931ab8a5a3d80f2a744a2be38d46d604fc79ba4 Mon Sep 17 00:00:00 2001 From: Zak Date: Wed, 26 Dec 2012 16:07:42 -0600 Subject: [PATCH 146/159] fixed keyframe animation --- FXLabel/1.4.2/FXLabel.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 FXLabel/1.4.2/FXLabel.podspec diff --git a/FXLabel/1.4.2/FXLabel.podspec b/FXLabel/1.4.2/FXLabel.podspec new file mode 100644 index 00000000000000..1a2cd2a2919af2 --- /dev/null +++ b/FXLabel/1.4.2/FXLabel.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = 'FXLabel' + s.version = '1.4.2' + s.license = 'zlib' + s.summary = 'UILabel subclass that supports soft shadows, inner shadow and gradient fill, and which can easily be used in place of any standard UILabel.' + s.description = 'FXLabel improves upon the standard UILabel by providing a subclass that supports soft shadows, inner shadow and gradient fill, and which can easily be used in place of any standard UILabel.' + s.homepage = 'http://charcoaldesign.co.uk/source/cocoa#fxlabel' + s.author = { 'Nick Lockwood' => 'http://charcoaldesign.co.uk/' } + s.source = { :git => 'https://github.com/nicklockwood/FXLabel.git', :tag => '1.4.2' } + s.platform = :ios + s.source_files = 'FXLabel' + s.requires_arc = true +end \ No newline at end of file From c74631eaa74f2e4b302ffb8c576b6dd3efe94f9d Mon Sep 17 00:00:00 2001 From: Blake Watters Date: Wed, 26 Dec 2012 20:35:08 -0500 Subject: [PATCH 147/159] Add RestKit 0.20.0-pre5 --- RestKit/0.20.0pre5/RestKit.podspec | 66 ++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 RestKit/0.20.0pre5/RestKit.podspec diff --git a/RestKit/0.20.0pre5/RestKit.podspec b/RestKit/0.20.0pre5/RestKit.podspec new file mode 100644 index 00000000000000..845e7e12083b3b --- /dev/null +++ b/RestKit/0.20.0pre5/RestKit.podspec @@ -0,0 +1,66 @@ +Pod::Spec.new do |s| + s.name = 'RestKit' + s.version = '0.20.0pre5' + s.summary = 'RestKit is a framework for consuming and modeling RESTful web resources on iOS and OS X.' + s.homepage = 'http://www.restkit.org' + s.author = { 'Blake Watters' => 'blakewatters@gmail.com' } + s.source = { :git => 'https://github.com/RestKit/RestKit.git', :branch => 'development' } + s.license = 'Apache License, Version 2.0' + + # Platform setup + s.requires_arc = true + s.ios.deployment_target = '5.0' + s.osx.deployment_target = '10.7' + + # Exclude optional Search and Testing modules + s.preferred_dependency = 'Core' + + ### Subspecs + + s.subspec 'Core' do |cs| + cs.source_files = 'Code/*.h', 'Vendor/LibComponentLogging/Core', 'Vendor/LibComponentLogging/NSLog' + cs.header_dir = 'RestKit' + + cs.dependency 'RestKit/ObjectMapping' + cs.dependency 'RestKit/Network' + cs.dependency 'RestKit/CoreData' + end + + s.subspec 'ObjectMapping' do |os| + os.header_dir = 'RestKit/ObjectMapping' + os.source_files = 'Code/ObjectMapping' + end + + s.subspec 'Network' do |ns| + ns.header_dir = 'RestKit/Network' + ns.source_files = 'Code/Network' + ns.ios.frameworks = 'CFNetwork', 'Security', 'MobileCoreServices', 'SystemConfiguration' + ns.osx.frameworks = 'CoreServices', 'Security', 'SystemConfiguration' + ns.dependency 'SOCKit' + ns.dependency 'AFNetworking', '1.0.1' + ns.dependency 'RestKit/ObjectMapping' + ns.dependency 'RestKit/Support' + end + + s.subspec 'CoreData' do |cdos| + cdos.header_dir = 'RestKit/CoreData' + cdos.source_files = 'Code/CoreData' + cdos.frameworks = 'CoreData' + end + + s.subspec 'Testing' do |ts| + ts.header_dir = 'RestKit/Testing' + ts.source_files = 'Code/Testing' + end + + s.subspec 'Search' do |ss| + ss.header_dir = 'RestKit/Search' + ss.source_files = 'Code/Search' + ss.dependency 'RestKit/CoreData' + end + + s.subspec 'Support' do |ss| + ss.header_dir = 'RestKit/Support' + ss.source_files = 'Code/Support' + end +end From 3a31cc34ff679a49bbc3ec651f96494314f44253 Mon Sep 17 00:00:00 2001 From: Jacob Jennings Date: Wed, 26 Dec 2012 18:04:46 -0800 Subject: [PATCH 148/159] Update HTStateAwareRasterImageView podspec. --- .../0.0.1/HTStateAwareRasterImageView.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HTStateAwareRasterImageView/0.0.1/HTStateAwareRasterImageView.podspec b/HTStateAwareRasterImageView/0.0.1/HTStateAwareRasterImageView.podspec index a47b2df96ecd91..b90ed06dfbc2aa 100644 --- a/HTStateAwareRasterImageView/0.0.1/HTStateAwareRasterImageView.podspec +++ b/HTStateAwareRasterImageView/0.0.1/HTStateAwareRasterImageView.podspec @@ -6,7 +6,7 @@ Pod::Spec.new do |s| s.homepage = "https://github.com/hoteltonight/HTStateAwareRasterImageView" s.license = 'MIT' s.author = { "Jacob Jennings" => "jacob.r.jennings@gmail.com" } - s.source = { :git => "https://github.com/hoteltonight/HTStateAwareRasterImageView.git", :commit => '493fccf49c5fd24b375b3fbbd73c2870a7e2af4d' } + s.source = { :git => "https://github.com/hoteltonight/HTStateAwareRasterImageView.git", :commit => '48600548ee73fd9588e802186d15dc91dcf3a528' } s.ios.deployment_target = '4.3' s.source_files = 'Classes', '*.{h,m}' s.requires_arc = true From 63ce94a03a49a815e2fc3099f7d1679b13bb98a0 Mon Sep 17 00:00:00 2001 From: Giordano Scalzo Date: Thu, 27 Dec 2012 13:11:29 +0100 Subject: [PATCH 149/159] Add Nanostore 2.2.4 --- NanoStore/2.2.4/NanoStore.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 NanoStore/2.2.4/NanoStore.podspec diff --git a/NanoStore/2.2.4/NanoStore.podspec b/NanoStore/2.2.4/NanoStore.podspec new file mode 100644 index 00000000000000..fddc35734bfc9b --- /dev/null +++ b/NanoStore/2.2.4/NanoStore.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = 'NanoStore' + s.version = '2.2.4' + s.license = 'BSD' + s.summary = 'NanoStore is an open source, lightweight schema-less local key-value document store written in Objective-C for Mac OS X and iOS.' + s.homepage = 'https://github.com/tciuro/NanoStore' + s.authors = { 'Tito Ciuro' => 'tciuro@mac.com' } + s.source = { :git => 'https://github.com/tciuro/NanoStore.git', :tag => '2.2.4' } + s.source_files = 'Classes/**/*.{h,m}' + + s.library = 'sqlite3' + s.requires_arc = true +end From 78bc63fdb8f6d9958e124197eeeb9eb4e79402dd Mon Sep 17 00:00:00 2001 From: Alex Billingsley Date: Thu, 27 Dec 2012 09:21:52 -0500 Subject: [PATCH 150/159] [Add] QuadCurveMenu (0.0.1) --- QuadCurveMenu/0.0.1/QuadCurveMenu.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 QuadCurveMenu/0.0.1/QuadCurveMenu.podspec diff --git a/QuadCurveMenu/0.0.1/QuadCurveMenu.podspec b/QuadCurveMenu/0.0.1/QuadCurveMenu.podspec new file mode 100644 index 00000000000000..0e2a036f1d9e7e --- /dev/null +++ b/QuadCurveMenu/0.0.1/QuadCurveMenu.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = "QuadCurveMenu" + s.version = "0.0.1" + s.summary = "Path 2.0 menu (configurable, extendable, and composable)." + s.homepage = "https://github.com/burtlo/QuadCurveMenu" + s.license = 'MIT' + s.author = { "Franklin Webber" => "franklin.webber@gmail.com" } + s.source = { :git => "https://github.com/burtlo/QuadCurveMenu.git", :commit => "2885084dc1625554f8969a084827acb479f2a756" } + s.platform = :ios + s.source_files = 'AwesomeMenu/QuadCurveMenu/*.{h,m}','AwesomeMenu/AGMedallionView.{h,m}' + s.resources = "AwesomeMenu/Images/*.png" + s.requires_arc = true +end From 2f116011a850dd528048c48cbdedfc1f8d0933d7 Mon Sep 17 00:00:00 2001 From: Ryan Davies Date: Thu, 27 Dec 2012 14:23:01 +0000 Subject: [PATCH 151/159] [Add] ParseKit (0.0.3) --- ParseKit/0.0.3/ParseKit.podspec | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 ParseKit/0.0.3/ParseKit.podspec diff --git a/ParseKit/0.0.3/ParseKit.podspec b/ParseKit/0.0.3/ParseKit.podspec new file mode 100644 index 00000000000000..f7e948e68fb22a --- /dev/null +++ b/ParseKit/0.0.3/ParseKit.podspec @@ -0,0 +1,31 @@ +Pod::Spec.new do |s| + s.name = 'ParseKit' + s.version = '0.0.3' + s.license = 'Apache' + s.summary = 'Objective-C/Cocoa String Tokenizer and Parser toolkit. Supports Grammars.' + s.homepage = 'http://parsekit.com/' + s.author = { 'Todd Ditchendorf' => 'todd.ditchendorf@gmail.com' } + + s.source = { :svn => 'http://parsekit.googlecode.com/svn/trunk/', :revision => '273'} + + s.description = %{ + ParseKit is a Mac OS X Framework written by Todd Ditchendorf in + Objective-C 2.0 and released under the Apache Open Source License + Version 2.0. ParseKit is suitable for use on Mac OS X Leopard, + Snow Leopard or iOS. ParseKit is an Objective-C implementation + of the tools described in Building Parsers with Java by Steven + John Metsker. + + ParseKit includes additional features beyond the + designs from the book and also some changes to match common + Cocoa/Objective-C conventions. These changes are relatively superficial, + however, and Metsker’s book is the best documentation available + for ParseKit. + } + + s.source_files = 'include/**/*.{h,m}', 'src/**/*.{h,m}' + s.ios.frameworks = 'Foundation', 'CoreGraphics' + s.osx.framework = 'Foundation' + s.library = 'icucore' + s.requires_arc = false +end From 4d97d84fa8ed76f540cf609d4cc764195ad80ae1 Mon Sep 17 00:00:00 2001 From: Alex Billingsley Date: Thu, 27 Dec 2012 09:25:33 -0500 Subject: [PATCH 152/159] [Fix] QuadCurveMenu (0.0.1) --- QuadCurveMenu/0.0.1/QuadCurveMenu.podspec | 1 + 1 file changed, 1 insertion(+) diff --git a/QuadCurveMenu/0.0.1/QuadCurveMenu.podspec b/QuadCurveMenu/0.0.1/QuadCurveMenu.podspec index 0e2a036f1d9e7e..6d536a1d8ab060 100644 --- a/QuadCurveMenu/0.0.1/QuadCurveMenu.podspec +++ b/QuadCurveMenu/0.0.1/QuadCurveMenu.podspec @@ -9,5 +9,6 @@ Pod::Spec.new do |s| s.platform = :ios s.source_files = 'AwesomeMenu/QuadCurveMenu/*.{h,m}','AwesomeMenu/AGMedallionView.{h,m}' s.resources = "AwesomeMenu/Images/*.png" + s.framework = 'QuartzCore' s.requires_arc = true end From aa210c940e8a9ab3f120fbc0ef6348dc45d124c8 Mon Sep 17 00:00:00 2001 From: Jawwad Ahmad Date: Thu, 27 Dec 2012 09:26:27 -0500 Subject: [PATCH 153/159] Add Mixpanel 1.0.5 --- Mixpanel/1.0.5/Mixpanel.podspec | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Mixpanel/1.0.5/Mixpanel.podspec diff --git a/Mixpanel/1.0.5/Mixpanel.podspec b/Mixpanel/1.0.5/Mixpanel.podspec new file mode 100644 index 00000000000000..781b007440bc7b --- /dev/null +++ b/Mixpanel/1.0.5/Mixpanel.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = 'Mixpanel' + s.version = '1.0.5' + 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.5' } + s.frameworks = 'CoreTelephony', 'SystemConfiguration' + s.platform = :ios + s.source_files = 'Mixpanel/**/*.{h,m}' +end From de1f08a597fbf3e4e074c36546dad721b27d17b5 Mon Sep 17 00:00:00 2001 From: Arnaud Bellec Date: Thu, 27 Dec 2012 15:40:27 +0100 Subject: [PATCH 154/159] Fixes some ZXing build and include path issues --- ZXing/2.0/ZXing.podspec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ZXing/2.0/ZXing.podspec b/ZXing/2.0/ZXing.podspec index 27661e8438dd1e..cc1df00fa7f247 100644 --- a/ZXing/2.0/ZXing.podspec +++ b/ZXing/2.0/ZXing.podspec @@ -11,8 +11,8 @@ Pod::Spec.new do |s| s.source = { :svn => "http://zxing.googlecode.com/svn/tags/2.0" } # s.source = { :git => "https://github.com/zxing/zxing.git" } - s.preserve_paths = 'cpp/core/src/zxing/**/*.{h,cpp}', 'objc/src/ZXing/*.{h,m,mm}' - s.compiler_flags = '-IZXing/cpp/core/src/' + s.source_files = 'cpp/core/src/zxing/**/*.cpp', 'objc/src/ZXing/*.{m,mm}' + s.compiler_flags = '-IZXing/cpp/core/src/ -IZXing/objc/src/' s.requires_arc = false # workaround for a missing import in objc/src/ZXing/ZXImage.mm @@ -29,7 +29,7 @@ Pod::Spec.new do |s| ios.compiler_flags = '-IZXing/cpp/core/src/zxing/', '-IZXing/iphone/ZXingWidget/Classes/' # must use xcconfig additional to compiler_flag -I to make this header path also available for the including project - ios.xcconfig = { 'HEADER_SEARCH_PATHS' => '${PODS_ROOT}/ZXing/cpp/core/src/ ${PODS_ROOT}/ZXing/iphone/ZXingWidget/Classes/' } + ios.xcconfig = { 'HEADER_SEARCH_PATHS' => '${PODS_ROOT}/ZXing/cpp/core/src/ ${PODS_ROOT}/ZXing/iphone/ZXingWidget/Classes/**' } ios.frameworks = 'AddressBookUI', 'QuartzCore' end end From 80105eb1b3b35ac81dc7a5ea7da4993784d30d4d Mon Sep 17 00:00:00 2001 From: Arnaud Bellec Date: Thu, 27 Dec 2012 16:42:47 +0100 Subject: [PATCH 155/159] ZXing: preserve headers --- ZXing/2.0/ZXing.podspec | 1 + 1 file changed, 1 insertion(+) diff --git a/ZXing/2.0/ZXing.podspec b/ZXing/2.0/ZXing.podspec index cc1df00fa7f247..85edb886d3de9b 100644 --- a/ZXing/2.0/ZXing.podspec +++ b/ZXing/2.0/ZXing.podspec @@ -11,6 +11,7 @@ Pod::Spec.new do |s| s.source = { :svn => "http://zxing.googlecode.com/svn/tags/2.0" } # s.source = { :git => "https://github.com/zxing/zxing.git" } + s.preserve_paths = 'cpp/core/src/zxing/**/*.h', 'objc/src/ZXing/*.h' s.source_files = 'cpp/core/src/zxing/**/*.cpp', 'objc/src/ZXing/*.{m,mm}' s.compiler_flags = '-IZXing/cpp/core/src/ -IZXing/objc/src/' s.requires_arc = false From deca74b0ec79cb9d1e0c71192f52c324be1ed2a7 Mon Sep 17 00:00:00 2001 From: Clay Allsopp Date: Thu, 27 Dec 2012 10:52:37 -0500 Subject: [PATCH 156/159] [Add] ShotBlocker (0.0.1) --- ShotBlocker/0.0.1/ShotBlocker.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 ShotBlocker/0.0.1/ShotBlocker.podspec diff --git a/ShotBlocker/0.0.1/ShotBlocker.podspec b/ShotBlocker/0.0.1/ShotBlocker.podspec new file mode 100644 index 00000000000000..3051cb9869589f --- /dev/null +++ b/ShotBlocker/0.0.1/ShotBlocker.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = "ShotBlocker" + s.version = "0.0.1" + s.summary = "Detecting iOS screenshots ala Snapchat and Facebook Poke." + s.homepage = "https://github.com/clayallsopp/shotblocker" + s.author = { "Clay Allsopp" => "clay.allsopp@gmail.com" } + s.source = { :git => "https://github.com/clayallsopp/ShotBlocker.git", :tag => "0.0.1" } + s.platform = :ios, '5.0' + s.source_files = 'ShotBlocker/*.{h,m}' + s.frameworks = 'AssetsLibrary' + s.requires_arc = true + s.license = { :type => 'MIT', :file => 'LICENSE' } +end \ No newline at end of file From ff7b0e9c1c6e553b1703dc5c947d344600a4c43d Mon Sep 17 00:00:00 2001 From: Clay Allsopp Date: Thu, 27 Dec 2012 11:04:32 -0500 Subject: [PATCH 157/159] 0.0.2 --- ShotBlocker/{0.0.1 => 0.0.2}/ShotBlocker.podspec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename ShotBlocker/{0.0.1 => 0.0.2}/ShotBlocker.podspec (88%) diff --git a/ShotBlocker/0.0.1/ShotBlocker.podspec b/ShotBlocker/0.0.2/ShotBlocker.podspec similarity index 88% rename from ShotBlocker/0.0.1/ShotBlocker.podspec rename to ShotBlocker/0.0.2/ShotBlocker.podspec index 3051cb9869589f..cfdcb9948255b8 100644 --- a/ShotBlocker/0.0.1/ShotBlocker.podspec +++ b/ShotBlocker/0.0.2/ShotBlocker.podspec @@ -1,13 +1,13 @@ Pod::Spec.new do |s| s.name = "ShotBlocker" - s.version = "0.0.1" + s.version = "0.0.2" s.summary = "Detecting iOS screenshots ala Snapchat and Facebook Poke." s.homepage = "https://github.com/clayallsopp/shotblocker" s.author = { "Clay Allsopp" => "clay.allsopp@gmail.com" } - s.source = { :git => "https://github.com/clayallsopp/ShotBlocker.git", :tag => "0.0.1" } + s.source = { :git => "https://github.com/clayallsopp/ShotBlocker.git", :tag => "0.0.2" } s.platform = :ios, '5.0' s.source_files = 'ShotBlocker/*.{h,m}' s.frameworks = 'AssetsLibrary' s.requires_arc = true s.license = { :type => 'MIT', :file => 'LICENSE' } -end \ No newline at end of file +end From 7d64e9b8bb76f434b0fff246308af32deb914234 Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Thu, 27 Dec 2012 11:58:20 -0500 Subject: [PATCH 158/159] [Update] KSLabel (0.1.1) --- KSLabel/0.1.1/KSLabel.podspec | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 KSLabel/0.1.1/KSLabel.podspec diff --git a/KSLabel/0.1.1/KSLabel.podspec b/KSLabel/0.1.1/KSLabel.podspec new file mode 100644 index 00000000000000..120a2133cdb737 --- /dev/null +++ b/KSLabel/0.1.1/KSLabel.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = 'KSLabel' + s.version = '0.1.1' + 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 => s.version.to_s } + s.platform = :osx + s.source_files = '*.{h,m}' + s.requires_arc = true +end From 923fea6d2ff5896989e1075f38de8f3e59a07371 Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Thu, 27 Dec 2012 12:25:02 -0500 Subject: [PATCH 159/159] [Update] KSLabel (0.1.2) --- KSLabel/0.1.2/KSLabel.podspec | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 KSLabel/0.1.2/KSLabel.podspec diff --git a/KSLabel/0.1.2/KSLabel.podspec b/KSLabel/0.1.2/KSLabel.podspec new file mode 100644 index 00000000000000..0deeeb6d798c3c --- /dev/null +++ b/KSLabel/0.1.2/KSLabel.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = 'KSLabel' + s.version = '0.1.2' + 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 => s.version.to_s } + s.platform = :osx + s.source_files = '*.{h,m}' + s.requires_arc = true +end