Skip to content

Commit

Permalink
Use require: false on CLI/console tool gems in Gemfile (mastodon#33830
Browse files Browse the repository at this point in the history
)
  • Loading branch information
mjankowski authored Feb 4, 2025
1 parent 7453910 commit 3b1ba46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ group :development do
gem 'rubocop-rspec_rails', require: false

# Annotates modules with schema
gem 'annotaterb', '~> 4.13'
gem 'annotaterb', '~> 4.13', require: false

# Enhanced error message pages for development
gem 'better_errors', '~> 2.9'
Expand All @@ -197,7 +197,7 @@ end

group :development, :test do
# Interactive Debugging tools
gem 'debug', '~> 1.8'
gem 'debug', '~> 1.8', require: false

# Generate fake data values
gem 'faker', '~> 3.2'
Expand All @@ -209,7 +209,7 @@ group :development, :test do
gem 'memory_profiler', require: false
gem 'ruby-prof', require: false
gem 'stackprof', require: false
gem 'test-prof'
gem 'test-prof', require: false

# RSpec runner for rails
gem 'rspec-rails', '~> 7.0'
Expand Down

0 comments on commit 3b1ba46

Please sign in to comment.