Skip to content

Commit 5d47977

Browse files
committed
Add the debug gem
1 parent a1de2da commit 5d47977

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed

Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ gem "rake", "~> 13.0"
66
gem "minitest", "~> 5.16"
77
gem "standard", "~> 1.3"
88
gem "gosu", "~> 1.4.6"
9+
gem "debug", ">= 1.0.0"

Gemfile.lock

+15
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,14 @@ GEM
22
remote: https://rubygems.org/
33
specs:
44
ast (2.4.2)
5+
debug (1.9.2)
6+
irb (~> 1.10)
7+
reline (>= 0.3.8)
58
gosu (1.4.6)
9+
io-console (0.7.2)
10+
irb (1.13.1)
11+
rdoc (>= 4.0.0)
12+
reline (>= 0.4.2)
613
json (2.7.2)
714
language_server-protocol (3.17.0.3)
815
lint_roller (1.1.0)
@@ -11,10 +18,16 @@ GEM
1118
parser (3.3.1.0)
1219
ast (~> 2.4.1)
1320
racc
21+
psych (5.1.2)
22+
stringio
1423
racc (1.7.3)
1524
rainbow (3.1.1)
1625
rake (13.2.1)
26+
rdoc (6.6.3.1)
27+
psych (>= 4.0.0)
1728
regexp_parser (2.9.0)
29+
reline (0.5.5)
30+
io-console (~> 0.5)
1831
rexml (3.2.6)
1932
rubocop (1.62.1)
2033
json (~> 2.3)
@@ -45,13 +58,15 @@ GEM
4558
standard-performance (1.3.1)
4659
lint_roller (~> 1.1)
4760
rubocop-performance (~> 1.20.2)
61+
stringio (3.1.0)
4862
unicode-display_width (2.5.0)
4963

5064
PLATFORMS
5165
arm64-darwin-23
5266
ruby
5367

5468
DEPENDENCIES
69+
debug (>= 1.0.0)
5570
gosu (~> 1.4.6)
5671
minitest (~> 5.16)
5772
rake (~> 13.0)

test/test_helper.rb

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
$LOAD_PATH.unshift File.expand_path("../lib", __dir__)
44
require "wave_function_collapse"
5+
require "debug"
56
require "minitest/autorun"
67

78
Minitest::Test.send(:include, WaveFunctionCollapse)

0 commit comments

Comments
 (0)