Last active
December 16, 2015 06:59
-
-
Save klaaspieter/5395449 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 = 'CountryPicker' | |
s.version = '1.0.1' | |
s.license = { :file => 'LICENCE.md' } | |
s.homepage = 'https://github.com/nicklockwood/CountryPicker' | |
s.authors = { 'Nick Lockwood' => '[email protected]' } | |
s.summary = 'CountryPicker is a custom UIPickerView subclass that provides an iOS control allowing a user to select a country from a list..' | |
s.source = { :git => 'https://github.com/nicklockwood/CountryPicker.git', :tag => '1.0.1' } | |
s.source_files = 'CountryPicker/*.{h,m}' | |
s.resources = ['CountryPicker/Countries.plist', 'Flags/*.png'] | |
s.requires_arc = false | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment