9 lines
282 B
Ruby
Executable file
9 lines
282 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
# frozen_string_literal: true
|
|
|
|
$LOAD_PATH.unshift(File.expand_path('../commands', __dir__))
|
|
APP_PATH = File.expand_path('../config/application', __dir__)
|
|
require_relative "../config/boot"
|
|
require_relative '../lib/generators/overrides'
|
|
|
|
require "rails/commands"
|