Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions Format.podspec
Original file line number Diff line number Diff line change
@@ -1,21 +1,7 @@
#
# Be sure to run `pod lib lint PhoneNumberKit.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#

Pod::Spec.new do |s|
s.name = "Format"
s.version = "0.5.0"
s.summary = "A Swift formatter kit."

# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
A Swift formatting framework. Simple formatting syntax for decimal numbers, currency, mass, addresses, ordinal numbers and hexadecimal colors.
DESC
Expand All @@ -31,8 +17,22 @@ Pod::Spec.new do |s|
s.requires_arc = true

s.source_files = "Format"

# s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'MapKit', 'AddressBook', 'CoreLocation', 'Contacts'
# s.dependency 'AFNetworking', '~> 2.3'


## Subspec for Each formatter type
s.subspec 'Number' do |ss|
ss.requires_arc = true
ss.source_files = "Format/Number"
end

s.subspec 'Color' do |ss|
ss.requires_arc = true
ss.source_files = "Format/Color"
end

s.subspec 'Address' do |ss|
ss.requires_arc = true
ss.source_files = "Format/Address"
end
end
122 changes: 62 additions & 60 deletions Format.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.