-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathGoya.podspec
More file actions
36 lines (27 loc) · 1.16 KB
/
Goya.podspec
File metadata and controls
36 lines (27 loc) · 1.16 KB
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
36
Pod::Spec.new do |spec|
spec.name = "Goya"
spec.version = "2.0.0"
spec.summary = "An easy way to set styles to any UIResponder from the Interface Builder. Written in Swift"
spec.description = <<-DESC
Customize the appearance and any other property of any UIResponder (views, view controllers, labels, buttons)
just by setting a style string in the Interface Builder.
DESC
spec.homepage = "https://github.com/ManueGE/Goya/"
spec.license = "MIT"
spec.author = "Manuel García-Estañ"
spec.social_media_url = "http://twitter.com/ManueGE"
spec.platform = :ios, "8.0"
spec.source = { :git => "https://github.com/ManueGE/Goya.git", :tag => "#{spec.version}" }
spec.requires_arc = true
spec.framework = "UIKit"
# Subspecs
spec.default_subspec = 'Inspectable'
spec.subspec 'Lite' do |lite|
lite.source_files = "goya/goya/lite/*.{swift}"
end
spec.subspec 'Inspectable' do |inspectable|
inspectable.dependency "Goya/Lite"
inspectable.source_files = "goya/goya/inspectable/*.{swift}"
end
spec.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.0' }
end