mirror of
https://github.com/DatabaseCleaner/database_cleaner
synced 2023-03-27 23:22:03 -04:00
add byebug for debugging.
This commit is contained in:
parent
557cfb8660
commit
a750956708
4 changed files with 6 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -15,3 +15,4 @@ tmp/*
|
|||
.ruby-version
|
||||
.vagrant
|
||||
.idea/
|
||||
.byebug_history
|
||||
|
|
1
Gemfile
1
Gemfile
|
@ -1,2 +1,3 @@
|
|||
gemspec
|
||||
|
||||
gem "byebug"
|
||||
|
|
|
@ -32,6 +32,7 @@ GEM
|
|||
bson_ext (1.12.5)
|
||||
bson (~> 1.12.5)
|
||||
builder (2.1.2)
|
||||
byebug (10.0.2)
|
||||
coderay (1.1.2)
|
||||
couch_potato (1.3.0)
|
||||
activemodel
|
||||
|
@ -244,6 +245,7 @@ DEPENDENCIES
|
|||
activerecord-mysql2-adapter
|
||||
bson_ext
|
||||
bundler
|
||||
byebug
|
||||
couch_potato
|
||||
cucumber
|
||||
database_cleaner!
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
require "bundler/setup"
|
||||
require 'database_cleaner'
|
||||
require "database_cleaner"
|
||||
require "byebug"
|
||||
|
||||
RSpec.configure do |config|
|
||||
# These two settings work together to allow you to limit a spec run
|
||||
|
|
Loading…
Reference in a new issue