Skip to content

Commit 72799c9

Browse files
committed
test: add byebug for test/dev debugging
1 parent 0fbd66f commit 72799c9

File tree

4 files changed

+5
-0
lines changed

4 files changed

+5
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@
99

1010
# rspec failure tracking
1111
.rspec_status
12+
.byebug_history

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ source "https://rubygems.org"
55
# Specify your gem's dependencies in openssl-signature_algorithm.gemspec
66
gemspec
77

8+
gem "byebug", "~> 11.0"
89
gem "rake", "~> 12.0"
910
gem "rspec", "~> 3.0"
1011
gem "rubocop", "~> 0.79.0"

Gemfile.lock

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ GEM
77
remote: https://rubygems.org/
88
specs:
99
ast (2.4.0)
10+
byebug (11.1.1)
1011
diff-lcs (1.3)
1112
jaro_winkler (1.5.4)
1213
parallel (1.19.1)
@@ -41,6 +42,7 @@ PLATFORMS
4142
ruby
4243

4344
DEPENDENCIES
45+
byebug (~> 11.0)
4446
openssl-signature_algorithm!
4547
rake (~> 12.0)
4648
rspec (~> 3.0)

spec/spec_helper.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
require "bundler/setup"
44
require "openssl/signature_algorithm"
5+
require "byebug"
56

67
RSpec.configure do |config|
78
# Enable flags like --only-failures and --next-failure

0 commit comments

Comments
 (0)