-
Notifications
You must be signed in to change notification settings - Fork 1
/
Tracer.podspec
25 lines (18 loc) · 971 Bytes
/
Tracer.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Pod::Spec.new do |s|
s.name = "Tracer"
s.version = "0.1.0"
s.summary = "Tracer can track a user's drawing relative to some expected path."
s.description = <<-DESC
Tracer accepts an expected path that the user
attempts to follow. It shows a different color when
the user strays too far away from the path.
DESC
s.homepage = "https://github.com/jamiely/Tracer"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Jamie Ly" => "[email protected]" }
s.social_media_url = "http://twitter.com/jamiely"
s.platform = :ios
s.ios.deployment_target = "11.0"
s.source = { :git => "https://github.com/jamiely/Tracer.git", :tag => "#{s.version}"}
s.source_files = "Sources/**/*.swift"
end