-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
58 lines (41 loc) · 1.41 KB
/
Copy pathGemfile
File metadata and controls
58 lines (41 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
source "https://rubygems.org"
ruby file: '.ruby-version'
# Specify your gem's dependencies in eval_engine.gemspec.
gemspec
gem "rails", "~> 8.1"
gem "puma"
gem "sqlite3"
gem "propshaft"
# Omakase Ruby styling [https://github.com/rails/rubocop-rails-omakase/]
gem "rubocop-rails-omakase", require: false
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[ mri windows ], require: "debug/prelude"
# Static analysis for security vulnerabilities [https://brakemanscanner.org/]
gem "brakeman", require: false
# Omakase Ruby styling [https://github.com/rails/rubocop-rails-omakase/]
gem "rubocop-rails-omakase", require: false
# Tests
gem "rspec-rails", "~> 8.0"
gem "rspec-expectations"
# Debugging
gem "pry", "~> 0.15.2"
# Code formatting
gem "syntax_tree", "~> 6.2"
# Security auditing
gem "bundler-audit", "~> 0.9.2"
end
group :development do
# Use console on exceptions pages [https://github.com/rails/web-console]
gem "web-console"
gem "solargraph", "~> 0.58.3"
end
group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem "capybara"
gem "selenium-webdriver"
gem "factory_bot_rails", "~> 6.4"
gem "database_cleaner-active_record", "~> 2.2"
end
# Start debugger with binding.b [https://github.com/ruby/debug]
# gem "debug", ">= 1.0.0"