summaryrefslogtreecommitdiff
path: root/bin/rails
diff options
context:
space:
mode:
authorJeroen van Baarsen <jeroenvanbaarsen@gmail.com>2014-02-16 11:22:03 +0100
committerJeroen van Baarsen <jeroenvanbaarsen@gmail.com>2014-02-16 11:22:03 +0100
commit99dc9c6fc9880519dddf2cb2557b984792843848 (patch)
tree71cf43cba263420f42b4d4aeaa25a865787745ce /bin/rails
parent4bbb3d5510d5396eca034a9a8593952b16b15ab5 (diff)
downloadgitlab-ce-99dc9c6fc9880519dddf2cb2557b984792843848.tar.gz
Inserted spring in the binstubs
Now possible to run: `bin/rails` `bin/rspec` `bin/spinach` `bin/rake`
Diffstat (limited to 'bin/rails')
-rw-r--r--bin/rails4
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/rails b/bin/rails
index 728cd85aa58..7feb6a30e69 100644
--- a/bin/rails
+++ b/bin/rails
@@ -1,4 +1,8 @@
#!/usr/bin/env ruby
+begin
+ load File.expand_path("../spring", __FILE__)
+rescue LoadError
+end
APP_PATH = File.expand_path('../../config/application', __FILE__)
require_relative '../config/boot'
require 'rails/commands'