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
19 changes: 5 additions & 14 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,17 @@ gem 'rails', '>= 7.0'
group :development, :test do
gem 'byebug'
gem 'database_cleaner-active_record', '~> 2.1'
gem 'factory_bot_rails', '~> 6.0'
gem 'rspec', '~> 3.1'
gem 'rspec-rails'
gem 'sqlite3', '~> 2.7'
gem 'mcp', '~> 0.1.0' # Official MCP Ruby SDK for migration

Choose a reason for hiding this comment

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

high

Consider adding a comment explaining why mcp gem is included in the development, test group. This clarifies its purpose for developers. Also, it is unusual to have a gem that is required for production to be included in the development group. This is a high severity issue because it will likely break the gem in production.

gem 'simplecov', '~> 0.22'
gem 'sprockets-rails' # Required for Rails 7+
gem 'timecop', '~> 0.9.8'
gem 'webmock', '~> 3.19'
end

group :development do
gem 'redcarpet' # For YARD markdown support
gem 'rubocop', '~> 1.77'
gem 'yard'
gem 'rubocop', '~> 1.7'
gem 'rubocop-rails', '~> 2.32'
gem 'rubocop-rspec'
gem 'yard'
end

group :development, :test do
gem 'simplecov', '~> 0.22'
# For testing the gem in a Rails app
gem 'sprockets-rails' # Required for Rails 7+

# Official MCP Ruby SDK for migration
gem 'mcp', '~> 0.1.0'
Loading
Loading