Skip to content

Commit

Permalink
Merge pull request CocoaPods#6353 from PrideChung/master
Browse files Browse the repository at this point in the history
Update to 2.1.3.
  • Loading branch information
keith committed Dec 21, 2013
2 parents d1a216e + 70b54d9 commit 7b4bf0b
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions FontAwesomeKit/2.1.3/FontAwesomeKit.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
Pod::Spec.new do |s|
s.name = "FontAwesomeKit"
s.version = "2.1.3"
s.summary = "Icon font library for iOS. Currently supports Font-Awesome, Foundation icons, Zocial, and ionicons"
s.homepage = "https://github.com/PrideChung/FontAwesomeKit"
s.screenshots = "http://i.minus.com/i3vNn0fTwcJeI.png", "http://i.minus.com/ivKqhOLJLVvmJ.png"
s.license = 'MIT'
s.author = { "Pride Chung" => "[email protected]" }
s.source = { :git => "https://github.com/PrideChung/FontAwesomeKit.git", :tag => '2.1.3' }
s.platform = :ios, '6.0'
s.ios.frameworks = 'UIKit', 'CoreText'
s.source_files = 'FontAwesomeKit/FontAwesomeKit.h'
s.requires_arc = true

s.subspec 'Core' do |ss|
ss.source_files = 'FontAwesomeKit/FAKIcon.{h,m}'
end

s.subspec 'FontAwesome' do |ss|
ss.dependency 'FontAwesomeKit/Core'
ss.source_files = 'FontAwesomeKit/FAKFontAwesome.{h,m}'
ss.resource = 'FontAwesomeKit/FontAwesome.otf'
end

s.subspec 'FoundationIcons' do |ss|
ss.dependency 'FontAwesomeKit/Core'
ss.source_files = 'FontAwesomeKit/FAKFoundationIcons.{h,m}'
ss.resource = 'FontAwesomeKit/foundation-icons.ttf'
end

s.subspec 'Zocial' do |ss|
ss.dependency 'FontAwesomeKit/Core'
ss.source_files = 'FontAwesomeKit/FAKZocial.{h,m}'
ss.resource = 'FontAwesomeKit/zocial-regular-webfont.ttf'
end

s.subspec 'IonIcons' do |ss|
ss.dependency 'FontAwesomeKit/Core'
ss.source_files = 'FontAwesomeKit/FAKIonIcons.{h,m}'
ss.resource = 'FontAwesomeKit/ionicons.ttf'
end
end

0 comments on commit 7b4bf0b

Please sign in to comment.