afbc0ca8e5
Notice that test is not a regular rake task you can enhance, but a hard-coded rails command.
12 lines
264 B
Ruby
Executable File
12 lines
264 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
APP_PATH = File.expand_path("../config/application", __dir__)
|
|
|
|
require_relative "../lib/fizzy"
|
|
Fizzy.configure_bundle
|
|
|
|
require_relative "../config/boot"
|
|
|
|
require "rails/commands"
|
|
|
|
Fizzy::Saas.append_test_paths if Fizzy.saas? && Rails.env.test?
|