-
Notifications
You must be signed in to change notification settings - Fork 91
/
Repeat.podspec
20 lines (20 loc) · 913 Bytes
/
Repeat.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "Repeat"
s.version = "0.6.0"
s.summary = "Modern NSTimer alternative in Swift"
s.description = <<-DESC
Repeat is a modern alternative to NSTimer; no strong references, multiple observers, reusable instances with start/stop/pause support in swifty syntax.
DESC
s.homepage = "https://github.com/malcommac/Repeat"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Daniele Margutti" => "[email protected]" }
s.social_media_url = "http://twitter.com/danielemargutti"
s.ios.deployment_target = "12.2"
s.osx.deployment_target = "10.14.4"
s.tvos.deployment_target = "12.2"
s.watchos.deployment_target = "5.2"
s.source = { :git => "https://github.com/malcommac/Repeat.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*"
s.frameworks = "Foundation"
s.swift_version = '5.0'
end