diff --git a/Gemfile b/Gemfile index c07249f..9364a6e 100644 --- a/Gemfile +++ b/Gemfile @@ -2,7 +2,7 @@ source "https://rubygems.org" -gem "pry-byebug", platform: :mri +gem "debug", platform: :mri gem "sqlite3" gemspec diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 920739a..c7bf1cc 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,9 +1,10 @@ # frozen_string_literal: true begin - require "pry-byebug" + require "debug" unless ENV["CI"] rescue LoadError end + ENV["RAILS_ENV"] = "test" RSpec.configure do |config|