-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathBooleanPath.podspec
More file actions
19 lines (19 loc) · 913 Bytes
/
Copy pathBooleanPath.podspec
File metadata and controls
19 lines (19 loc) · 913 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |spec|
spec.name = "BooleanPath"
spec.version = "1.0"
spec.summary = "Add boolean operations to NSBezierPath like the pathfinder of Adobe Illustrator."
spec.description = <<-DESC
This is a rewrite of VectorBoolean written by Leslie Titze's.
BooleanPath is written by Swift for macOS.
DESC
spec.homepage = "https://github.com/Kyome22/BooleanPath"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Takuto Nakamura" => "kyomesuke@icloud.com" }
spec.social_media_url = "https://twitter.com/Kyomesuke3"
spec.osx.deployment_target = '10.10'
spec.source = { :git => "https://github.com/Kyome22/BooleanPath.git", :tag => "#{spec.version}" }
spec.frameworks = 'Foundation', 'Cocoa', 'QuartzCore'
spec.source_files = "BooleanPath/**/*.swift"
spec.swift_version = "4.2"
spec.requires_arc = true
end