Revert "Remove bundler binstubs"

This reverts commit 7209d10aaf12875ce05bf21db967b27e7594ac38.

  It appears rails now depends on this for various aspects :-(
This commit is contained in:
Thibault Jouan 2015-04-30 12:18:43 +00:00
parent 2ff2521bf1
commit 9ff1c049c5
3 changed files with 14 additions and 0 deletions

4
bin/bundle Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env ruby
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
load Gem.bin_path('bundler', 'bundle')

5
bin/rails Executable file
View File

@ -0,0 +1,5 @@
#!/usr/bin/env ruby
APP_PATH = File.expand_path('../../config/application', __FILE__)
require_relative '../config/boot'
require 'rails/commands'

5
bin/rake Executable file
View File

@ -0,0 +1,5 @@
#!/usr/bin/env ruby
require_relative '../config/boot'
require 'rake'
Rake.application.run