Rails uses bin folder we forgot to create it when upgrading
This commit is contained in:
parent
3e30b10591
commit
c35036c091
3 changed files with 11 additions and 0 deletions
3
bin/bundle
Normal file
3
bin/bundle
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/usr/bin/env ruby
|
||||
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
|
||||
load Gem.bin_path('bundler', 'bundle')
|
4
bin/rails
Normal file
4
bin/rails
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env ruby
|
||||
APP_PATH = File.expand_path('../../config/application', __FILE__)
|
||||
require_relative '../config/boot'
|
||||
require 'rails/commands'
|
4
bin/rake
Normal file
4
bin/rake
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env ruby
|
||||
require_relative '../config/boot'
|
||||
require 'rake'
|
||||
Rake.application.run
|
Loading…
Reference in a new issue