Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pry-byebug in test #31

Merged
merged 1 commit into from
Apr 26, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ gemspec
gem 'rake'
group :development, :test do
gem 'minitest'
gem "pry-byebug"
end
10 changes: 10 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,17 @@ PATH
GEM
remote: https://rubygems.org/
specs:
byebug (10.0.2)
coderay (1.1.2)
ffi (1.9.18)
method_source (0.9.0)
minitest (5.10.2)
pry (0.11.3)
coderay (~> 1.1.0)
method_source (~> 0.9.0)
pry-byebug (3.6.0)
byebug (~> 10.0)
pry (~> 0.10)
rake (10.3.2)

PLATFORMS
Expand All @@ -17,6 +26,7 @@ PLATFORMS
DEPENDENCIES
btcruby!
minitest
pry-byebug
rake

BUNDLED WITH
Expand Down
1 change: 1 addition & 0 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
require 'minitest/spec'
require 'minitest/autorun'
require 'pry-byebug'

require_relative '../lib/btcruby'
require_relative '../lib/btcruby/extensions'
Expand Down