-
Notifications
You must be signed in to change notification settings - Fork 3
/
Routes.podspec
18 lines (18 loc) · 934 Bytes
/
Routes.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |spec|
spec.name = "Routes"
spec.version = "0.0.1"
spec.summary = "pure-Swift based URL routing for iOS"
spec.homepage = "https://github.com/min/Routes"
spec.license = "MIT (example)"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Min Kim" => "[email protected]" }
spec.social_media_url = "https://twitter.com/meenster"
spec.ios.deployment_target = "9.0"
spec.tvos.deployment_target = "9.0"
spec.watchos.deployment_target = "2.0"
spec.swift_version = '4.2'
spec.source = { :git => "https://github.com/min/Routes.git", :tag => "#{spec.version}" }
spec.source_files = "Routes/**/*.swift"
spec.requires_arc = true
spec.module_name = "Routes"
end