diff --git a/EGOCache/0.0.1/EGOCache.podspec b/EGOCache/0.0.1/EGOCache.podspec new file mode 100644 index 00000000000000..7b6f49364d5767 --- /dev/null +++ b/EGOCache/0.0.1/EGOCache.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = 'EGOCache' + s.version = '0.0.1' + s.license = 'MIT' + s.summary = 'Fast Caching for Objective-C (iPhone & Mac Compatible).' + s.homepage = 'https://github.com/enormego/EGOCache' + s.author = 'enormego' + s.source = { :git => 'https://github.com/enormego/EGOCache.git', + :commit => '9e2ad2a9a167d5f3a1885252a3f2ec43b4f718c5' } + + s.source_files = '*.{h,m}' +end diff --git a/GBImageView/0.5/GBImageView.podspec b/GBImageView/0.5/GBImageView.podspec new file mode 100644 index 00000000000000..944957dd5a83c0 --- /dev/null +++ b/GBImageView/0.5/GBImageView.podspec @@ -0,0 +1,16 @@ +Pod::Spec.new do |s| + s.name = 'GBImageView' + s.version = '0.5' + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.summary = "Replacement of NSImageView that supports animations, asynchronous request and a conveniente internal cache system." + s.description = "GBImageView is a replacement of NSImageView for Mac OS X that supports animations, asynchronous request to fetch an image from an NSURL and a conveniente internal cache system." + s.homepage = 'https://github.com/gbasile/GBImageView' + s.author = { 'Giuseppe Basile' => 'rosanero@gmail.com' } + s.source = { :git => 'https://github.com/gbasile/GBImageView.git', :tag => '0.5' } + s.requires_arc = true + s.osx.deployment_target = '10.6' + s.source_files = '*.{h,m}' + + s.dependency 'EGOCache', '0.0.1' + s.frameworks = 'QuartzCore', 'IOKit' +end