Skip to content

Commit

Permalink
Add CGOperators
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnSundell committed Jul 14, 2017
0 parents commit adf4b45
Show file tree
Hide file tree
Showing 16 changed files with 1,699 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.DS_Store
.build/
build/
DerivedData/
xcuserdata/
19 changes: 19 additions & 0 deletions CGOperators.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Pod::Spec.new do |s|
s.name = "CGOperators"
s.version = "1.0"
s.summary = "Easily manipulate CGPoints, CGSizes and CGVectors using math operators"
s.description = <<-DESC
A small Swift framework that enables you to easily manipulate Core Graphic's vector types (CGPoint, CGSize and CGVector) using math operators.
DESC
s.homepage = "https://github.com/JohnSundell/CGOperators"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "John Sundell" => "john@sundell.co" }
s.social_media_url = ""
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/JohnSundell/CGOperators.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*"
s.frameworks = "Foundation"
end
Loading

0 comments on commit adf4b45

Please sign in to comment.