forked from venmo/QuizTrain
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathQuizTrain.podspec
25 lines (19 loc) · 920 Bytes
/
QuizTrain.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 |spec|
spec.name = "QuizTrain"
spec.version = "3.0.0"
spec.summary = "QuizTrain is a framework created at Venmo allowing you to interact with TestRail's API using Swift."
spec.homepage = "https://github.com/venmo/QuizTrain"
spec.license = "MIT"
spec.author = { "Venmo" => "Venmo" }
# Or just: spec.author = "Venmo"
# spec.authors = { "Venmo" => "" }
# spec.social_media_url = "https://twitter.com/Venmo"
spec.ios.deployment_target = "11.0"
spec.osx.deployment_target = "10.12"
spec.watchos.deployment_target = "3.0"
spec.tvos.deployment_target = "10.0"
spec.swift_version = '5.0'
spec.source = { :git => "https://github.com/nsriva/QuizTrain.git", :tag => spec.version }
spec.source_files = "Sources/QuizTrain", "Sources/QuizTrain/**/*.{swift}"
spec.exclude_files = "Sources/QuizTrain/Exclude"
end