Skip to content

Instantly share code, notes, and snippets.

@alex-cellcity
Created April 9, 2013 08:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alex-cellcity/5344025 to your computer and use it in GitHub Desktop.
Save alex-cellcity/5344025 to your computer and use it in GitHub Desktop.
PrettyKit with ARC & iOS 6+
Pod::Spec.new do |s|
s.name = 'PrettyKit'
s.version = '0.3.0'
s.license = 'MIT'
s.summary = 'PrettyKit for iOS is a small set of new widgets and UIKit subclasses that gives you a deeper UIKit customization.'
s.homepage = 'http://github.com/vicpenap/PrettyKit'
s.author = { 'Victor Pena' => 'contact@victorpena.es' }
s.source = { :git => 'https://github.com/jessesquires/PrettyKit.git',
:branch => 'arc' }
s.description = 'PrettyKit for iOS is a small set of new widgets and UIKit subclasses that gives you a deeper UIKit customization. You will be able to change their background color, add gradients, shadows, etc.'
s.platform = :ios
s.source_files = 'PrettyKit', 'PrettyKit/Cells'
s.frameworks = 'UIKit', 'QuartzCore', 'CoreGraphics'
s.requires_arc = true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment