Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added GBImageView #2467

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions EGOCache/0.0.1/EGOCache.podspec
Original file line number Diff line number Diff line change
@@ -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
16 changes: 16 additions & 0 deletions GBImageView/0.5/GBImageView.podspec
Original file line number Diff line number Diff line change
@@ -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' => '[email protected]' }
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