Skip to content

Commit

Permalink
Merge pull request #14 from Sundea/feature/cocoapod
Browse files Browse the repository at this point in the history
Podspec was added.
  • Loading branch information
dgallagher-venmo committed Jul 2, 2019
2 parents 9a55052 + 82e5f0d commit a1d6f40
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions QuizTrain.podspec
@@ -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

0 comments on commit a1d6f40

Please sign in to comment.