Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorBenjamin Neff <benjamin@coding4coffee.ch>2017-08-27 23:20:38 +0300
committerBenjamin Neff <benjamin@coding4coffee.ch>2017-09-17 20:34:05 +0300
commit1d2394571c48a0da5c785a75e1870502c9adf55d (patch)
tree4e35993df87e5e0ed585bc89bda5aefc44ec14f6 /script
parent84d553555e2b77239feff85b3d48dab307d0e4ab (diff)
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
Diffstat (limited to 'script')
-rwxr-xr-xscript/cucumber10
-rwxr-xr-xscript/rails6
2 files changed, 0 insertions, 16 deletions
diff --git a/script/cucumber b/script/cucumber
deleted file mode 100755
index 7fa5c9208..000000000
--- a/script/cucumber
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/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
diff --git a/script/rails b/script/rails
deleted file mode 100755
index f8da2cffd..000000000
--- a/script/rails
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/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'