-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathApplyStyleKit.podspec
More file actions
17 lines (17 loc) · 945 Bytes
/
ApplyStyleKit.podspec
File metadata and controls
17 lines (17 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "ApplyStyleKit"
s.version = "0.3.1"
s.summary = "You can apply design style comfortably, using Swifty Method Chain."
s.description = <<-DESC
ApplyStyleKit is a library that applies styles to UIKit using Swifty Method Chain.
Normally, when applying styles to UIView etc.,
it is necessary to write propertyName and equal operator many times.
With ApplyStyleKit, you can comfortably apply style to your code.
DESC
s.homepage = "https://github.com/shindyu/ApplyStyleKit"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "shindyu" => "shindyu.dev@gmail.com" }
s.source = { :git => "https://github.com/shindyu/ApplyStyleKit.git", :tag => "#{s.version}" }
s.source_files = "ApplyStyleKit/**/*.swift"
s.platform = :ios, "9.0"
end