Commit 242cf70a0d1f1522b85b2f66af056c1963aa8352

Authored by Dmitriy Zaporozhets
2 parents 0f834d11 c35036c0

Merge pull request #6334 from jvanbaarsen/scripts-to-bin

Rails uses bin folder we forgot to create it when upgrading
Showing 3 changed files with 11 additions and 0 deletions   Show diff stats
bin/bundle 0 → 100644
... ... @@ -0,0 +1,3 @@
  1 +#!/usr/bin/env ruby
  2 +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
  3 +load Gem.bin_path('bundler', 'bundle')
... ...
bin/rails 0 → 100644
... ... @@ -0,0 +1,4 @@
  1 +#!/usr/bin/env ruby
  2 +APP_PATH = File.expand_path('../../config/application', __FILE__)
  3 +require_relative '../config/boot'
  4 +require 'rails/commands'
... ...
bin/rake 0 → 100644
... ... @@ -0,0 +1,4 @@
  1 +#!/usr/bin/env ruby
  2 +require_relative '../config/boot'
  3 +require 'rake'
  4 +Rake.application.run
... ...