forked from pepicrft/PPiAwesomeButton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPPiAwesomeButton.podspec
19 lines (19 loc) · 978 Bytes
/
PPiAwesomeButton.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'PPiAwesomeButton'
s.version = '1.5.2'
s.platform = :ios, '7.0'
s.license = 'MIT'
s.summary = 'UIButton category with Flat Design and extra methods to set Title+Icon from FontAwesome font'
s.homepage = 'https://github.com/pepibumur/PPiAwesomeButton'
s.author = { 'Pedro Piñera' => '[email protected]' }
s.source = { :git => 'https://github.com/pepibumur/PPiAwesomeButton.git', :tag => '1.5.2' }
s.description = <<-DESC
PPiAwesomeButton is a new category for UIButton that implements a new flat design and extra methods to set not only the title, also Icon from FontAwesome font using external library. Moreover you'll be able to setup UIColor background for different UIButton states.
DESC
s.requires_arc = true
s.ios.dependency 'FontAwesome+iOS'
s.source_files = 'Control/*.{h,m}'
s.exclude_files = 'PPiAwesomeButton-Demo'
s.framework = 'QuartzCore'
s.public_header_files = 'Control/*.h'
end