-
Notifications
You must be signed in to change notification settings - Fork 2
/
DVB.podspec
22 lines (19 loc) · 847 Bytes
/
DVB.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "DVB"
s.version = "2.3.0"
s.summary = "Query Dresden's public transport system for current bus- and tramstop data"
s.description = <<-DESC
Query Dresden's public transport system for current bus- and tramstop data in Swift.
DESC
s.homepage = "https://github.com/kiliankoe/DVB"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Kilian Koeltzsch" => "[email protected]" }
s.social_media_url = "https://twitter.com/kiliankoe"
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/kiliankoe/DVB.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*"
s.frameworks = "Foundation"
end