Rakefile 440 B

123456789101112131415
  1. # Add your own tasks in files placed in lib/tasks ending in .rake,
  2. # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
  3. require File.expand_path("../config/application", __FILE__)
  4. Actioncenter::Application.load_tasks
  5. if %w(development test).include? Rails.env
  6. require "rubocop/rake_task"
  7. RuboCop::RakeTask.new
  8. task(:default).clear
  9. task default: [:sass_lint, :rubocop, :spec, :cucumber]
  10. end