forked from vadymmarkov/Fakery
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFakery.podspec
More file actions
executable file
·29 lines (27 loc) · 797 Bytes
/
Fakery.podspec
File metadata and controls
executable file
·29 lines (27 loc) · 797 Bytes
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
Pod::Spec.new do |s|
s.name = "Fakery"
s.version = "1.0.0"
s.summary = "Swift fake data generator"
s.homepage = "https://github.com/vadymmarkov/Fakery"
s.license = {
:type => 'MIT',
:file => 'LICENSE.md'
}
s.author = {
"Vadym Markov" => "markov.vadym@gmail.com"
}
s.source = {
:git => "https://github.com/vadymmarkov/Fakery.git",
:tag => s.version.to_s
}
s.social_media_url = 'https://twitter.com/vadymmarkov'
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.requires_arc = true
s.resource_bundles = {
'Faker' => ['Resources/Locales/*.{json}']
}
s.source_files = 'Source/**/*'
s.dependency 'SwiftyJSON', '~> 2.3.0'
s.frameworks = 'Foundation'
end