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