diff options
| author | mo khan <mo@mokhan.ca> | 2013-12-17 15:11:14 -0700 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2013-12-17 15:11:14 -0700 |
| commit | 49dc2e3174a9111c1902ab7988d952987aa8cfeb (patch) | |
| tree | d2ac31efd9ba7bbbc94764212a42c17a55466479 /bin | |
| parent | e22f43b8686a3ec07c0c252b591ee394e8a2e7e2 (diff) | |
create rails app.
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/bundle | 3 | ||||
| -rwxr-xr-x | bin/rails | 4 | ||||
| -rwxr-xr-x | bin/rake | 4 |
3 files changed, 11 insertions, 0 deletions
diff --git a/bin/bundle b/bin/bundle new file mode 100755 index 0000000..66e9889 --- /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 100755 index 0000000..728cd85 --- /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 100755 index 0000000..1724048 --- /dev/null +++ b/bin/rake @@ -0,0 +1,4 @@ +#!/usr/bin/env ruby +require_relative '../config/boot' +require 'rake' +Rake.application.run |
