Sha256: a5599a8112a915ace21251a24ba68e97e658c107ca01ccb6c4db4d3d3dec7997

Contents?: true

Size: 697 Bytes

Versions: 26

Compression:

Stored size: 697 Bytes

Contents

# frozen_string_literal: true

# Rake will automatically load any *.rake files inside of the "rakelib" folder
# See rakelib/

tasks = %w[lint run_rspec]
prepare_for_ci = %w[node_package dummy_apps]

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: prepare_for_ci

desc "Runs prepare_for_ci and tasks"
task ci: [:prepare_for_ci, *tasks]

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
react_on_rails-12.5.2 Rakefile
react_on_rails-12.5.1 Rakefile
react_on_rails-12.5.0 Rakefile
react_on_rails-12.4.0 Rakefile
react_on_rails-12.4.0.rc.0 Rakefile
react_on_rails-12.3.0 Rakefile