Skip to content
Snippets Groups Projects
Verified Commit 0a3f4dfc authored by Rémy Coutable's avatar Rémy Coutable
Browse files

Don't require stackprof in Gemfile


Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent 932a6e69
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -355,7 +355,7 @@ group :development, :test do
 
gem 'activerecord_sane_schema_dumper', '0.2'
 
gem 'stackprof', '~> 0.2.10'
gem 'stackprof', '~> 0.2.10', require: false
end
 
group :test do
Loading
Loading
#!/usr/bin/env ruby
 
require 'bundler/setup'
require 'stackprof'
$:.unshift 'spec'
require 'rails_helper'
Loading
Loading
@@ -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}")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment