-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathConstrictor.podspec
More file actions
20 lines (15 loc) · 727 Bytes
/
Constrictor.podspec
File metadata and controls
20 lines (15 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.swift_version = "5.0"
s.name = "Constrictor"
s.version = "6.0.2"
s.summary = "🐍 Constrict your layout in Swift"
s.description = "Constrict your Auto Layout code with Constrictor, your chainable sugar."
s.homepage = "https://github.com/pedrommcarrasco/Constrictor"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = "Pedro Carrasco"
s.social_media_url = "http://twitter.com/pedrommcarrasco"
s.platform = :ios, "10.0"
s.source = { :git => "https://github.com/pedrommcarrasco/Constrictor.git", :tag => s.version.to_s }
s.source_files = "Constrictor/Constrictor/**/*"
s.exclude_files = "Constrictor/Constrictor/*.plist"
end