-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathSwiftCassowary.podspec
33 lines (20 loc) · 1.04 KB
/
SwiftCassowary.podspec
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
Pod::Spec.new do |s|
s.name = "SwiftCassowary"
s.version = "0.1-beta"
s.summary = "Swift implement of constraint solving algorithm"
s.description = <<-DESC
Cassowary is a swift implement of constraint solving algorithm Cassowary which forms the core of the OS X and iOS Autolayout .
* This library is heavily inspired by this c++ implement rhea
DESC
s.homepage = "https://github.com/nangege/Cassowary"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { "TangNan" => "[email protected]" }
s.swift_version = "4.2"
s.ios.deployment_target = "8.0"
s.module_name = "Cassowary"
#s.source = { :git => "[email protected]:nangege/Cassowary.git", :tag => s.version }
s.source = { :git => "https://github.com/nangege/Cassowary.git", :tag => '0.1-beta' }
s.source_files = ["Cassowary/Sources/*.swift", "Cassowary/Cassowary.h"]
s.public_header_files = ["Cassowary/Cassowary.h"]
s.requires_arc = true
end