Unverified Commit 1d239457 authored by Benjamin Neff's avatar Benjamin Neff
Browse files

Remove unused scripts

They were added a long time ago and they talk about rails 3 ... we have
rails 5 now and scripts in the bin folder, so I think we can remove
them.

closes #7596
parent 84d55355
Loading
Loading
Loading
Loading

script/cucumber

deleted100755 → 0
+0 −10
Original line number Diff line number Diff line
#!/usr/bin/env ruby

vendored_cucumber_bin = Dir["#{File.dirname(__FILE__)}/../vendor/{gems,plugins}/cucumber*/bin/cucumber"].first
if vendored_cucumber_bin
  load File.expand_path(vendored_cucumber_bin)
else
  require 'rubygems' unless ENV['NO_RUBYGEMS']
  require 'cucumber'
  load Cucumber::BINARY
end

script/rails

deleted100755 → 0
+0 −6
Original line number Diff line number Diff line
#!/usr/bin/env ruby
# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.

APP_PATH = File.expand_path('../../config/application',  __FILE__)
require File.expand_path('../../config/boot',  __FILE__)
require 'rails/commands'