Files
JBChartView/FormatterKit/1.1.1/FormatterKit.podspec
T
Mattt Thompson 6faa335783 Update FormatterKit/1.1.1/FormatterKit.podspec
Removing PCH import statements to workaround CocoaPods issue in header search paths when importing AddressBookUI.
2012-12-05 18:23:47 -08:00

44 lines
1.6 KiB
Ruby

Pod::Spec.new do |s|
s.name = 'FormatterKit'
s.version = '1.1.1'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = '`stringWithFormat:` for the sophisticated hacker set.'
s.homepage = 'https://github.com/mattt/FormatterKit'
s.author = { 'Mattt Thompson' => 'm@mattt.me' }
s.source = { :git => 'https://github.com/mattt/FormatterKit.git', :tag => '1.1.1' }
s.description = "FormatterKit is a collection of well-crafted NSFormatter subclasses for things like units of information, distance, and relative time intervals. Each formatter abstracts away the complex business logic of their respective domain, so that you can focus on the more important aspects of your application."
s.requires_arc = true
s.subspec 'AddressFormatter' do |ss|
ss.source_files = 'FormatterKit/TTTAddressFormatter.{h,m}'
ss.frameworks = 'AddressBook'
end
s.subspec 'ArrayFormatter' do |ss|
ss.source_files = 'FormatterKit/TTTArrayFormatter.{h,m}'
end
s.subspec 'LocationFormatter' do |ss|
ss.source_files = 'FormatterKit/TTTLocationFormatter.{h,m}'
ss.frameworks = 'CoreLocation'
end
s.subspec 'OrdinalNumberFormatter' do |ss|
ss.source_files = 'FormatterKit/TTTOrdinalNumberFormatter.{h,m}'
end
s.subspec 'TimeIntervalFormatter' do |ss|
ss.source_files = 'FormatterKit/TTTTimeIntervalFormatter.{h,m}'
end
s.subspec 'UnitOfInformationFormatter' do |ss|
ss.source_files = 'FormatterKit/TTTUnitOfInformationFormatter.{h,m}'
end
s.subspec 'URLRequestFormatter' do |ss|
ss.source_files = 'FormatterKit/TTTURLRequestFormatter.{h,m}'
end
end