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

Version Path
react_on_rails-6.7.2 Rakefile
react_on_rails-6.7.1 Rakefile
react_on_rails-6.6.0 Rakefile
react_on_rails-6.6.0.alpha.1 Rakefile
react_on_rails-6.5.1 Rakefile
react_on_rails-6.5.0 Rakefile
react_on_rails-6.4.2 Rakefile
react_on_rails-6.5.0.beta.1 Rakefile
react_on_rails-6.4.1 Rakefile
react_on_rails-6.4.0 Rakefile
react_on_rails-6.3.5 Rakefile