Sha256: a0c630ceb929a89a607c3570ccdd59b1178ebd7132328bbc59c1ad914c354050
Contents?: true
Size: 428 Bytes
Versions: 11
Compression:
Stored size: 428 Bytes
Contents
# Rake will automatically load any *.rake files inside of the "rakelib" folder # See rakelib/ tasks = %w(run_rspec lint) if ENV["USE_COVERALLS"] == "TRUE" require "coveralls/rake/task" Coveralls::RakeTask.new tasks << "coveralls:push" end desc "Run all tests and linting" task default: tasks desc "All actions but no examples. Good for local developer run." task all_but_examples: ["run_rspec:all_but_examples", "lint"]
Version data entries
11 entries across 11 versions & 1 rubygems