Commit 4131c39a authored by Rémy Coutable's avatar Rémy Coutable

Merge branch 'blackst0ne-rails5-update-bin-rspec' into 'master'

[Rails5] Allow using `RAILS5` env with rspec

See merge request gitlab-org/gitlab-ce!18140
parents e3e461fb 126b7c0f
#!/usr/bin/env ruby
# Remove these two lines below when upgraded to rails 5.0.
# Allow run `rspec` command as `RAILS5=1 rspec ...` instead of `BUNDLE_GEMFILE=Gemfile.rails5 rspec ...`
gemfile = %w[1 true].include?(ENV["RAILS5"]) ? "Gemfile.rails5" : "Gemfile"
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../#{gemfile}", __dir__)
begin
load File.expand_path('../spring', __FILE__)
rescue LoadError => e
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment