Sha256: 2d345046750d33df09760d3f58319db977711397f5c04c1b639b6d3bf5bd6517
Contents?: true
Size: 1.59 KB
Versions: 4
Compression:
Stored size: 1.59 KB
Contents
module Coveralls require "thor" class CommandLine < Thor desc "push", "Runs your test suite and pushes the coverage results to Coveralls." def push return unless ensure_can_run_locally! ENV["COVERALLS_RUN_LOCALLY"] = "true" exec "bundle exec rake" ENV["COVERALLS_RUN_LOCALLY"] = nil end desc "report", "Runs your test suite locally and displays coverage statistics." def report ENV["COVERALLS_NOISY"] = "true" exec "bundle exec rake" ENV["COVERALLS_NOISY"] = nil end desc "open", "View this repository on Coveralls." def open open_token_based_url "https://coveralls.io/repos/%@" end desc "service", "View this repository on your CI service's website." def service open_token_based_url "https://coveralls.io/repos/%@/service" end desc "last", "View the last build for this repository on Coveralls." def last open_token_based_url "https://coveralls.io/repos/%@/last_build" end private def open_token_based_url url config = Coveralls::Configuration.configuration if config[:repo_token] url = url.gsub("%@", config[:repo_token]) `open #{url}` else puts "No repo_token configured." end end def ensure_can_run_locally! config = Coveralls::Configuration.configuration if config[:repo_token].nil? puts "Coveralls cannot run locally because no repo_secret_token is set in .coveralls.yml".red puts "Please try again when you get your act together.".red return false end true end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
coveralls-0.5.6 | lib/coveralls/command.rb |
coveralls-0.5.5 | lib/coveralls/command.rb |
coveralls-0.5.4 | lib/coveralls/command.rb |
coveralls-0.5.3 | lib/coveralls/command.rb |