Don't require stackprof in Gemfile
Signed-off-by: Rémy Coutable <remy@rymai.me>
This commit is contained in:
parent
932a6e69b8
commit
0a3f4dfc82
2 changed files with 3 additions and 2 deletions
2
Gemfile
2
Gemfile
|
@ -355,7 +355,7 @@ group :development, :test do
|
||||||
|
|
||||||
gem 'activerecord_sane_schema_dumper', '0.2'
|
gem 'activerecord_sane_schema_dumper', '0.2'
|
||||||
|
|
||||||
gem 'stackprof', '~> 0.2.10'
|
gem 'stackprof', '~> 0.2.10', require: false
|
||||||
end
|
end
|
||||||
|
|
||||||
group :test do
|
group :test do
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#!/usr/bin/env ruby
|
#!/usr/bin/env ruby
|
||||||
|
|
||||||
|
require 'bundler/setup'
|
||||||
require 'stackprof'
|
require 'stackprof'
|
||||||
$:.unshift 'spec'
|
$:.unshift 'spec'
|
||||||
require 'rails_helper'
|
require 'rails_helper'
|
||||||
|
@ -13,4 +14,4 @@ StackProf.run(mode: :wall, out: output_file, interval: interval) do
|
||||||
RSpec::Core::Runner.run(ARGV, $stderr, $stdout)
|
RSpec::Core::Runner.run(ARGV, $stderr, $stdout)
|
||||||
end
|
end
|
||||||
|
|
||||||
system("stackprof #{output_file} --text --limit #{limit}")
|
system("bundle exec stackprof #{output_file} --text --limit #{limit}")
|
||||||
|
|
Loading…
Reference in a new issue