Skip to content
Open
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
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ group :development do
# Replaces the old lib/debug.rb and provides more features.
gem 'debug', '>= 1.0.0'
# module documentation
gem 'octokit'
gem 'octokit', '>= 5.0.0'
# memory profiling
gem 'memory_profiler'
# cpu profiling
Expand All @@ -35,7 +35,7 @@ group :development, :test do
gem 'rake'
# Define `rake spec`. Must be in development AND test so that its available by default as a rake test when the
# environment is development
gem 'rspec-rails'
gem 'rspec-rails', '>= 7.0.2'
gem 'rspec-rerun'
# Required during CI as well local development
gem 'rubocop'
Expand All @@ -44,7 +44,7 @@ end
group :test do
# automatically include factories from spec/factories
gem 'test-prof'
gem 'factory_bot_rails'
gem 'factory_bot_rails', '>= 6.5.0'

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Bundler/OrderedGems: Gems should be sorted in an alphabetical order within their section of the Gemfile. Gem factory_bot_rails should appear before test-prof.

# Make rspec output shorter and more useful
gem 'fivemat'
# rspec formatter for acceptance tests
Expand Down
Loading