-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathManuscript.podspec
More file actions
24 lines (21 loc) · 1019 Bytes
/
Copy pathManuscript.podspec
File metadata and controls
24 lines (21 loc) · 1019 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "Manuscript"
s.version = "3.0.3"
s.summary = "AutoLayoutKit in pure Swift."
s.description = <<-DESC
It's like AutoLayoutKit but written in Swift. For pure Swift projects. And it's super simple.
* concise, simple and convenient API
* raw AutoLayout power
* no black magic involved
* fully documented
* completely unit-tested
DESC
s.homepage = "https://github.com/floriankrueger/Manuscript"
s.license = 'MIT'
s.author = { "Florian Krüger" => "florian.krueger@projectserver.org" }
s.source = { :git => "https://github.com/floriankrueger/Manuscript.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/xcuze'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Sources/**/*.{h,swift}'
end