rails/railties/exe/rails
Xavier Noria e6ab70c439 applies new string literal convention to the rest of the project
The current code base is not uniform. After some discussion,
we have chosen to go with double quotes by default.
2016-08-06 19:28:46 +02:00

10 lines
212 B
Ruby
Executable File

#!/usr/bin/env ruby
git_path = File.expand_path("../../../.git", __FILE__)
if File.exist?(git_path)
railties_path = File.expand_path("../../lib", __FILE__)
$:.unshift(railties_path)
end
require "rails/cli"