forked from ActionKit/ActionKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathActionKit.podspec
More file actions
15 lines (15 loc) · 965 Bytes
/
ActionKit.podspec
File metadata and controls
15 lines (15 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = "ActionKit"
s.version = "1.2.0"
s.summary = "ActionKit is a easy to use framework that wraps the target-action design paradigm into a closure design."
s.description = <<-DESC
ActionKit is a experimental, light-weight, easy to use framework that wraps the target-action design paradigm into a less verbose, cleaner format. It shortens target-action method calls by removing the target and replacing the selector with a closure.
DESC
s.homepage = "https://github.com/ActionKit/ActionKit"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Benjamin Hendricks" => "https://github.com/coolbnjmn", "Kev Choi" => "https://github.com/thisiskevinchoi" }
s.source = { :git => "https://github.com/ActionKit/ActionKit.git", :tag => s.version.to_s }
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'ActionKit/*'
end