mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-09 04:36:11 +10:00
Prevents output like this:
Array values in the parameter are deprecated. Please use a String or nil.
An Array was passed in from bin/rspec:3:in `load'
10 lines
213 B
Ruby
Executable File
10 lines
213 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
begin
|
|
load File.expand_path('../spring', __FILE__)
|
|
rescue LoadError => e
|
|
raise unless e.message.include?('spring')
|
|
end
|
|
require_relative '../config/boot'
|
|
require 'rake'
|
|
Rake.application.run
|