forked from thiagorossener/TRCurrencyTextField
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTRCurrencyTextField.podspec
More file actions
22 lines (19 loc) · 877 Bytes
/
TRCurrencyTextField.podspec
File metadata and controls
22 lines (19 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "TRCurrencyTextField"
s.version = "0.1.0"
s.summary = "iOS text field to input formatted currency value"
s.description = <<-DESC
The goal of the component is to make easy to input currency formatted text based on currency code, country code or locale.
DESC
s.homepage = "https://github.com/thiagoross/TRCurrencyTextField"
s.license = 'MIT'
s.author = { "Thiago Rossener" => "thiago@rossener.com" }
s.source = { :git => "https://github.com/thiagoross/TRCurrencyTextField.git", :tag => "v0.1.0" }
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'TRCurrencyTextField' => ['Pod/Assets/*.png']
}
s.frameworks = 'UIKit', 'Foundation'
end