diff options
| author | mo khan <mo@mokhan.ca> | 2013-07-25 21:26:02 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2013-07-25 21:26:02 -0600 |
| commit | 926258eeccf0dba069f6eb318a225f62231a6166 (patch) | |
| tree | 5eb368b28229d59c003b483a6336cb2769ae4927 /bin | |
| parent | e51b50a4348e0e6513aa01cdfbf5d5894c440f17 (diff) | |
start to upgrade to rails 4
Diffstat (limited to 'bin')
| -rw-r--r-- | bin/bundle | 3 | ||||
| -rw-r--r-- | bin/rails | 4 | ||||
| -rw-r--r-- | bin/rake | 4 |
3 files changed, 11 insertions, 0 deletions
diff --git a/bin/bundle b/bin/bundle new file mode 100644 index 00000000..66e9889e --- /dev/null +++ b/bin/bundle @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) +load Gem.bin_path('bundler', 'bundle') diff --git a/bin/rails b/bin/rails new file mode 100644 index 00000000..728cd85a --- /dev/null +++ b/bin/rails @@ -0,0 +1,4 @@ +#!/usr/bin/env ruby +APP_PATH = File.expand_path('../../config/application', __FILE__) +require_relative '../config/boot' +require 'rails/commands' diff --git a/bin/rake b/bin/rake new file mode 100644 index 00000000..17240489 --- /dev/null +++ b/bin/rake @@ -0,0 +1,4 @@ +#!/usr/bin/env ruby +require_relative '../config/boot' +require 'rake' +Rake.application.run |
