diff --git a/QuizTrain.podspec b/QuizTrain.podspec new file mode 100644 index 0000000..56ba1a9 --- /dev/null +++ b/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 \ No newline at end of file