-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnmbr.podspec
41 lines (32 loc) · 1.49 KB
/
nmbr.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#
# Be sure to run `pod lib lint nmbr.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 https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'nmbr'
s.version = '0.1.0'
s.summary = 'A number formatter specifically for rounding large numbers'
s.description = <<-DESC
A locale-aware number formatter to deal with shorter versions of large numbers.
i.e. 1,000,000 would be either "1M" or "1 million" in en_GB.
Deals with other locales grouping of digits (i.e. Japan groups by 4, and India groups by 3 then 2)
DESC
s.homepage = 'https://github.com/deanWombourne/nmbr'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'deanWombourne' => '[email protected]' }
s.source = { :git => 'https://github.com/deanWombourne/nmbr.git', :tag => "v"+s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.swift_versions = [ '4.0', '4.2', '5.0' ]
s.ios.deployment_target = '9.0'
s.source_files = 'nmbr/Classes/**/*'
s.resource_bundles = {
'nmbr' => ['nmbr/Assets/**/*.stringsdict']
}
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 2.3'
end