diff options
author | Rémy Coutable <remy@rymai.me> | 2017-08-09 10:10:33 +0200 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2017-08-09 10:10:33 +0200 |
commit | 0a3f4dfc8232a0314f2dce9b686a16070b6281cf (patch) | |
tree | 49602add22bdbb60656dace7d79582cfa623877f /bin | |
parent | 932a6e69b882334dd7e8fdf158ebbab4c620a2b5 (diff) | |
download | gitlab-ce-0a3f4dfc8232a0314f2dce9b686a16070b6281cf.tar.gz |
Don't require stackprof in Gemfile
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/rspec-stackprof | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/rspec-stackprof b/bin/rspec-stackprof index df79feb201d..810863ea4a0 100755 --- a/bin/rspec-stackprof +++ b/bin/rspec-stackprof @@ -1,5 +1,6 @@ #!/usr/bin/env ruby +require 'bundler/setup' require 'stackprof' $:.unshift 'spec' require 'rails_helper' @@ -13,4 +14,4 @@ StackProf.run(mode: :wall, out: output_file, interval: interval) do RSpec::Core::Runner.run(ARGV, $stderr, $stdout) end -system("stackprof #{output_file} --text --limit #{limit}") +system("bundle exec stackprof #{output_file} --text --limit #{limit}") |