Skip to content
Open
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
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ source 'https://rubygems.org'

gem 'bormashino', '~> 0.3.0'
gem 'fablicop', '>= 1.10.0', require: false
gem 'guard'
gem 'guard', '>= 2.18.1'

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Consider using a pessimistic version constraint to avoid accidentally pulling in future major versions with breaking changes. Using ~> 2.18.1 is equivalent to >= 2.18.1 and < 3.0.0. This allows non-breaking minor and patch updates but prevents updates to a new major version (e.g., 3.0.0) which might contain breaking changes. This approach is consistent with how bormashino is specified in this file.

gem 'guard', '~> 2.18.1'

gem 'guard-rake', git: 'https://github.com/rubyist/guard-rake.git', ref: '3138496c512753bcbc83d13af08b7b5ad0538ee7'
gem 'guard-rspec', require: false
gem 'guard-rubocop'
Expand Down
24 changes: 14 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,16 @@ GEM
rubocop (>= 1.14, < 1.55)
rubocop-rails
rubocop-rspec (>= 1.15.1)
ffi (1.15.5)
formatador (1.1.0)
guard (2.18.0)
ffi (1.16.3)
formatador (1.1.1)
guard (2.19.1)
formatador (>= 0.2.4)
listen (>= 2.7, < 4.0)
logger (~> 1.6)
lumberjack (>= 1.0.12, < 2.0)
nenv (~> 0.1)
notiffany (~> 0.0)
ostruct (~> 0.6)
pry (>= 0.13.0)
shellany (~> 0.0)
thor (>= 0.18.1)
Expand All @@ -57,11 +59,12 @@ GEM
json (2.6.3)
json_pure (2.7.2)
language_server-protocol (3.17.0.3)
listen (3.8.0)
listen (3.9.0)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
lumberjack (1.2.8)
method_source (1.0.0)
logger (1.7.0)
lumberjack (1.3.2)
method_source (1.1.0)
minitest (5.19.0)
mustermann (3.0.1)
ruby2_keywords (~> 0.0.1)
Expand All @@ -70,11 +73,12 @@ GEM
nenv (~> 0.1)
shellany (~> 0.0)
os (1.1.4)
ostruct (0.6.3)
parallel (1.23.0)
parser (3.2.2.3)
ast (~> 2.4.1)
racc
pry (0.14.2)
pry (0.15.2)
coderay (~> 1.1)
method_source (~> 1.0)
racc (1.7.1)
Expand All @@ -87,7 +91,7 @@ GEM
rainbow (3.1.1)
rake (13.0.6)
rb-fsevent (0.11.2)
rb-inotify (0.10.1)
rb-inotify (0.11.1)
ffi (~> 1.0)
regexp_parser (2.8.1)
rexml (3.3.9)
Expand Down Expand Up @@ -138,7 +142,7 @@ GEM
rack-protection (= 4.0.0)
rack-session (>= 2.0.0, < 3)
tilt (~> 2.0)
thor (1.2.1)
thor (1.4.0)
tilt (2.4.0)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
Expand All @@ -151,7 +155,7 @@ PLATFORMS
DEPENDENCIES
bormashino (~> 0.3.0)
fablicop (>= 1.10.0)
guard
guard (>= 2.18.1)
guard-rake!
guard-rspec
guard-rubocop
Expand Down