Sha256: 485a8bdc9610684260b8a2ec612b64a1e02c621bb47017beb61c2cd21b04c4d5
Contents?: true
Size: 672 Bytes
Versions: 16
Compression:
Stored size: 672 Bytes
Contents
# frozen_string_literal: true # 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"] desc "Prepare for ci, including node_package, dummy app, and generator examples" task prepare_for_ci: %w[node_package dummy_apps examples] desc "Runs prepare_for_ci and tasks" task ci: [:prepare_for_ci, *tasks]
Version data entries
16 entries across 16 versions & 1 rubygems