-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathCGRectExtensions.podspec
More file actions
21 lines (16 loc) · 942 Bytes
/
CGRectExtensions.podspec
File metadata and controls
21 lines (16 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "CGRectExtensions"
s.version = "2.0"
s.summary = "A collection of `CGRect`, `CGPoint` and `CGSize` convenience functions for Swift on OS X and iOS.."
s.description = <<-DESC
The goal is to provide clear functions for the most commonly used rect operations, even if the code savings are minimal. The reason is that function names communicate the programmer's intent more clearly than setting properties with ad-hoc calculations.
DESC
s.homepage = "https://github.com/nschum/SwiftCGRectExtensions"
s.license = "MIT"
s.author = { "Nikolaj Schumacher" => "me@nschum.de" }
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.source = { :git => "https://github.com/nschum/SwiftCGRectExtensions.git", :tag => "2.0" }
s.source_files = "CGRectExtensions/*.swift"
s.frameworks = ["Foundation"]
end