-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEPIMoney.podspec
35 lines (28 loc) · 972 Bytes
/
EPIMoney.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
Pod::Spec.new do |s|
s.name = "EPIMoney"
s.version = "0.0.1"
s.summary = "EPIMoney is a simple component to work with currency and your corresponding amount."
s.description = <<-DESC
If you have to work with amount of money, currency based on locale... EPIMoney is for you. More info in advance !!!
DESC
s.homepage = "https://github.com/ernestopino/EPIMoney.git"
s.license = {
:type => "MIT",
:file => "LICENSE"
}
s.author = {
"Ernesto Pino" => "ernesto.pino@epinom.com"
}
s.source = {
:git => "https://github.com/ernestopino/EPIMoney.git",
:tag => "0.0.1"
}
s.social_media_url = 'https://twitter.com/ernestopino'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'EPIMoney' => ['Pod/Assets/*.png']
}
s.requires_arc = true
end