Created
April 9, 2013 08:33
-
-
Save alex-cellcity/5344025 to your computer and use it in GitHub Desktop.
PrettyKit with ARC & iOS 6+
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' => '[email protected]' } | |
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