-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathTrickery.podspec
More file actions
21 lines (17 loc) · 853 Bytes
/
Trickery.podspec
File metadata and controls
21 lines (17 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'Trickery'
s.version = '1.0.0'
s.license = { :type => 'CUSTOM', :file => 'LICENSE' }
s.homepage = 'https://github.com/justeattakeaway/Genything'
s.authors = { 'SkipTheDishes Restaurant Services Inc.' => 'nicolas.richard@justeattakeaway.com' }
s.summary = 'Trick yourself with this fake data.'
s.source = { :git => 'https://github.com/justeattakeaway/Genything.git', :tag => '1.0.0' }
s.ios.deployment_target = '11.0'
s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '5.0'
s.osx.deployment_target = '10.14'
s.swift_version = '5.0'
s.source_files = ["Sources/Trickery/**/*.{swift,h,m,c}"]
s.resource_bundle = { 'Trickery' => 'Sources/Trickery/Resources/**/*.{json}' }
s.dependency 'Genything', '1.0.0'
end