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
·30 lines (25 loc) · 788 Bytes
/
Copy pathFakery.podspec
File metadata and controls
executable file
·30 lines (25 loc) · 788 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
30
Pod::Spec.new do |s|
s.name = "Fakery"
s.version = "5.1.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.9"
s.tvos.deployment_target = "9.0"
s.requires_arc = true
s.resources = 'Sources/Fakery/Resources/Locales/*.{json}'
s.source_files = 'Sources/**/*.{swift}'
s.frameworks = 'Foundation'
end