-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from Sundea/feature/cocoapod
Podspec was added.
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Pod::Spec.new do |spec| | ||
spec.name = "QuizTrain" | ||
spec.version = "2.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 = "10.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/venmo/QuizTrain.git", :tag => spec.version } | ||
|
||
spec.source_files = "QuizTrain", "QuizTrain/**/*.{swift}" | ||
spec.exclude_files = "QuizTrain/Exclude" | ||
|
||
end |