Sha256: 18f79aa361b76c7d073b98eb985b7d3c452c464273f228b909117733984260af
Contents?: true
Size: 899 Bytes
Versions: 17
Compression:
Stored size: 899 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] prepare_for_ci = %w[node_package dummy_apps] if ENV["USE_COVERALLS"] == "TRUE" require "coveralls/rake/task" Coveralls::RakeTask.new tasks << "coveralls:push" end if File.basename(ENV["BUNDLE_GEMFILE"] || "") == "Gemfile.rails32" tasks = %w[run_rspec:gem_rails32 run_rspec:dummy_no_webpacker] prepare_for_ci = %w[node_package dummy_apps:dummy_no_webpacker] 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: prepare_for_ci desc "Runs prepare_for_ci and tasks" task ci: [:prepare_for_ci, *tasks]
Version data entries
17 entries across 17 versions & 1 rubygems