blob: 79af4db6b676f81ab60d90ef7815dd0e647b47ee (
plain) (
tree)
|
|
#!/usr/bin/env ruby
# frozen_string_literal: true
git_path = File.expand_path("../../.git", __dir__)
if File.exist?(git_path)
railties_path = File.expand_path("../lib", __dir__)
$:.unshift(railties_path)
end
require "rails/cli"
|