forked from vadymmarkov/Fashion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Fashion.podspec
29 lines (24 loc) · 982 Bytes
/
Fashion.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
Pod::Spec.new do |s|
s.name = "Fashion"
s.summary = "Fashion accessories and beauty tools to share and reuse UI styles in a Swifty way"
s.version = "4.2.0"
s.homepage = "https://github.com/vadymmarkov/Fashion"
s.license = 'MIT'
s.author = { "Vadym Markov" => "[email protected]" }
s.source = {
:git => "https://github.com/vadymmarkov/Fashion.git",
:tag => s.version.to_s
}
s.social_media_url = 'https://twitter.com/vadymmarkov'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.ios.source_files = 'Sources/{iOS,Shared}/**/*'
s.osx.source_files = 'Sources/{Mac,Shared}/**/*'
s.tvos.source_files = 'Sources/{iOS,tvOS,Shared}/**/*'
s.ios.frameworks = 'UIKit', 'Foundation'
s.tvos.frameworks = 'UIKit', 'Foundation'
s.osx.frameworks = 'Cocoa', 'Foundation'
s.swift_versions = ['5.0']
end