Skip to content

Instantly share code, notes, and snippets.

@melihbuyuk
Last active August 29, 2015 13:55
Show Gist options
  • Save melihbuyuk/8735811 to your computer and use it in GitHub Desktop.
Save melihbuyuk/8735811 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = "grabKit"
s.version = "1.6"
s.summary = "Drop-in iOS component to easily import photos from Facebook, FlickR, Instagram, Picasa, and more."
s.description = <<-DESC
GrabKit allows you to retrieve photos from :
* Facebook
* FlickR
* Picasa
* Instagram
* iPhone/iPad
* ... and more to come.
DESC
s.homepage = "https://github.com/pierrotsmnrd/grabKit"
s.screenshots = "https://github.com/pierrotsmnrd/grabKit/blob/master/doc/demo.gif"
s.license = { :type => 'MIT', :file => 'LICENSE.txt' }
s.author = { "Pierre-Olivier Simonard" => "[email protected]" }
s.source = { :git => "https://github.com/melihbuyuk/grabKit.git", :tag => "v1.6" }
s.platform = :ios, '6.0'
s.requires_arc = true
s.source_files = 'grabKit/grabKit/**/*.{h,m}'
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
s.resources = 'grabKit/grabKit/**/*.{xib,png}'
s.dependency 'Facebook-iOS-SDK', '~> 3.15'
s.dependency 'ISO8601DateFormatter', '~> 0.6'
s.dependency 'MBProgressHUD', '~> 0.6'
s.dependency 'NVUIGradientButton', '~> 1.3.0'
s.dependency 'objectiveflickr', '~> 2.0.2'
s.dependency 'NZCircularImageView', '~> 0.0.2'
s.dependency 'UIActivityIndicator-for-SDWebImage', '~> 1.0.3'
s.dependency 'ALAssetsLibrary-CustomPhotoAlbum', '~> 1.1.4'
s.ios.frameworks = 'Accounts', 'AdSupport', 'MapKit', 'AssetsLibrary', 'CFNetwork', 'QuartzCore', 'Security', 'Social', 'SystemConfiguration'
s.subspec 'GData' do |gdata|
gdata.dependency 'GData', '~> 0.0.1'
gdata.requires_arc = false
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment