2018-11-09 00:29:00 +00:00
|
|
|
#!/usr/bin/env ruby
|
2019-07-30 21:29:24 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-02-08 16:55:22 +00:00
|
|
|
$LOAD_PATH.unshift(File.expand_path('../commands', __dir__))
|
2019-02-01 17:54:16 +00:00
|
|
|
APP_PATH = File.expand_path('../config/application', __dir__)
|
2021-01-05 21:56:13 +00:00
|
|
|
require_relative "../config/boot"
|
2020-05-01 18:51:46 +00:00
|
|
|
require_relative '../lib/generators/overrides'
|
2021-02-08 16:55:22 +00:00
|
|
|
|
2021-01-05 21:56:13 +00:00
|
|
|
require "rails/commands"
|