Skip to content

Commit 811ba40

Browse files
authored
byebug -> debug (rails#76)
* `byebug` -> `debug` * Fix the groupings. There's no grouping needed since this Gemfile won't be run in a production environment.
1 parent 081b965 commit 811ba40

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
33
gemspec
44

55
gem "sqlite3"
6-
gem "byebug"
6+
gem "debug", ">= 1.0.0"

Gemfile.lock

+9-2
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,19 @@ GEM
6767
tzinfo (~> 2.0)
6868
zeitwerk (~> 2.3)
6969
builder (3.2.4)
70-
byebug (11.1.3)
7170
concurrent-ruby (1.1.9)
7271
crass (1.0.6)
72+
debug (1.1.0)
73+
irb
74+
reline (>= 0.2.7)
7375
erubi (1.10.0)
7476
globalid (0.5.2)
7577
activesupport (>= 5.0)
7678
i18n (1.8.10)
7779
concurrent-ruby (~> 1.0)
80+
io-console (0.5.9)
81+
irb (1.3.7)
82+
reline (>= 0.2.7)
7883
loofah (2.12.0)
7984
crass (~> 1.0.2)
8085
nokogiri (>= 1.5.9)
@@ -120,6 +125,8 @@ GEM
120125
rake (>= 0.13)
121126
thor (~> 1.0)
122127
rake (13.0.6)
128+
reline (0.2.7)
129+
io-console (~> 0.5)
123130
sprockets (4.0.2)
124131
concurrent-ruby (~> 1.0)
125132
rack (> 1, < 3)
@@ -140,7 +147,7 @@ PLATFORMS
140147
ruby
141148

142149
DEPENDENCIES
143-
byebug
150+
debug (>= 1.0.0)
144151
sqlite3
145152
tailwindcss-rails!
146153

test/test_helper.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
require "rails"
55
require "rails/test_help"
6-
require "byebug"
6+
require "debug"
77
require_relative "../lib/tailwindcss-rails"
88

99
require "rails/test_unit/reporter"

0 commit comments

Comments
 (0)