-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftyStyle.podspec
More file actions
22 lines (16 loc) · 826 Bytes
/
SwiftyStyle.podspec
File metadata and controls
22 lines (16 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "SwiftyStyle"
s.version = "0.0.1"
s.summary = "A pod to make styling dynamic, consistent, and easy."
s.description = <<-DESC
A pod to make styling dynamic, consistent, and easy. Define your app's commonly used styles in one place and set them on your views and controls easily.
DESC
s.homepage = "https://github.com/ldstreet/SwiftyStyle"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "ldstreet" => "ldstreet@me.com" }
s.platform = :ios, "10.3"
s.swift_version = "4.0"
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.0' }
s.source = { :git => "https://github.com/ldstreet/SwiftyStyle.git", :tag => "#{s.version}" }
s.source_files = "SwiftyStyle/**/*.swift"
end