forked from pepicrft/PPiAwesomeButton
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPPiAwesomeButton.podspec
More file actions
20 lines (20 loc) · 1004 Bytes
/
Copy pathPPiAwesomeButton.podspec
File metadata and controls
20 lines (20 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'PPiAwesomeButton'
s.version = '1.4.4'
s.platform = :ios, '6.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' => 'pepibumur@gmail.com' }
s.source = { :git => 'https://github.com/pepibumur/PPiAwesomeButton.git', :tag => '1.4.4' }
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.dependency 'FontAwesome+iOS'
s.source_files = 'Control/*.{h,m}'
s.resources = "Control/*.ttf"
s.exclude_files = 'PPiAwesomeButton-Demo'
s.framework = 'QuartzCore'
s.public_header_files = 'Control/*.h'
end