You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gem"tzinfo-data",'~> 1.2025.2',platforms: %i[windowsjruby]# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
27
28
28
29
group:development,:testdo
29
-
gem"brakeman",require: false# Static analysis for security vulnerabilities [https://brakemanscanner.org/]
30
-
gem"debug",platforms: %i[mriwindows],require: "debug/prelude"# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
31
-
gem"dotenv"# Loads environment variables from '.env'
32
-
gem"factory_bot_rails"# Provides fixtures replacement for easier test object creation
33
-
gem"faker"# Generates fake data for testing
34
-
gem"letter_opener"# Opens sent emails in the browser for easy debugging during development
35
-
gem"rack-cors"# Handles Cross-Origin Resource Sharing (CORS) for secure API requests
36
-
gem"rspec-rails"# Testing framework for Rails applications, providing tools for writing and running tests
37
-
gem"rubocop"# Rubocop Ruby on Rails Style
38
-
gem"rubocop-rails",require: false# A Rubocop extension focused on enforcing Rails best practices and coding conventions.
39
-
gem"rubocop-rspec_rails",require: false# A Rubocop extension focused code style checking for Rails-related RSpec files.
40
-
gem"shoulda-matchers"# Provides simple and clean one-liner tests for Rails models, controllers, and other components.
30
+
gem"brakeman",require: false# Static analysis for security vulnerabilities [https://brakemanscanner.org/]
31
+
gem"debug",platforms: %i[mriwindows],require: "debug/prelude"# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
32
+
gem"dotenv"# Loads environment variables from '.env'
33
+
gem"factory_bot_rails"# Provides fixtures replacement for easier test object creation
34
+
gem"faker"# Generates fake data for testing
35
+
gem"letter_opener"# Opens sent emails in the browser for easy debugging during development
36
+
gem"rack-cors"# Handles Cross-Origin Resource Sharing (CORS) for secure API requests
37
+
gem"rspec-rails"# Testing framework for Rails applications, providing tools for writing and running tests
38
+
gem"rubocop",require: false# A Ruby static code analyzer and formatter, based on the community Ruby style guide.
39
+
gem"rubocop-rails",require: false# A Rubocop extension focused on enforcing Rails best practices and coding conventions.
40
+
gem"rubocop-rspec_rails",require: false# A Rubocop extension focused code style checking for Rails-related RSpec files.
41
+
gem"shoulda-matchers"# Provides simple and clean one-liner tests for Rails models, controllers, and other components.
41
42
end
42
43
43
44
group:developmentdo
44
-
gem"web-console"# Use console on exceptions pages [https://github.com/rails/web-console]
45
+
gem"web-console"# Use console on exceptions pages [https://github.com/rails/web-console]
0 commit comments