-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRQVisual.podspec
More file actions
19 lines (17 loc) · 808 Bytes
/
RQVisual.podspec
File metadata and controls
19 lines (17 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.platform = :ios, "8.0"
s.name = "RQVisual"
s.version = "1.0.2"
s.summary = "A tool for laying out views in code."
s.description = <<-DESC
Visual is a tool for laying out views in code using a visual
style formats similar to those used by NSLayoutConstraint.
DESC
s.homepage = "http://github.com/rqueue/RQVisual"
s.license = "MIT"
s.author = { "Ryan Quan" => "ryanhquan@gmail.com" }
s.source = { :git => "http://github.com/rqueue/RQVisual.git", :tag => "1.0.2" }
s.source_files = "RQVisual", "RQVisual/**/*.{h,m}"
s.requires_arc = true
s.documentation_url = "http://github.com/rqueue/RQVisual"
end