Sha256: 3c5d924950043c9c62289c56c999801cad5285583fa2d456694dbbe0b8c73128

Contents?: true

Size: 737 Bytes

Versions: 1

Compression:

Stored size: 737 Bytes

Contents

#!/usr/bin/env rake
# frozen_string_literal: true

begin
  require "bundler/setup"
rescue LoadError
  puts "You must `gem install bundler` and `bundle install` to run rake tasks"
end

APP_RAKEFILE = File.expand_path("spec/dummy/Rakefile", __dir__)
load "rails/tasks/engine.rake"

Bundler::GemHelper.install_tasks

Dir[File.join(File.dirname(__FILE__), "tasks/**/*.rake")].each { |f| load f }

require "rspec/core"
require "rspec/core/rake_task"

RSpec::Core::RakeTask.new(spec: "app:db:test:prepare")
task default: :spec

task :all do
  system("brakeman --no-pager && rake && rubocop --auto-correct && rails_best_practices")
end

system("cd ./spec/dummy; RAILS_ENV=test rails db:environment:set; cd ../..") if Rails::VERSION::MAJOR >= 5

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sail-3.2.4 Rakefile