-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathGemfile
More file actions
58 lines (43 loc) · 1.49 KB
/
Copy pathGemfile
File metadata and controls
58 lines (43 loc) · 1.49 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
# frozen_string_literal: true
source "https://rubygems.org"
# Specify your gem's dependencies in action_mcp.gemspec.
gemspec
gem "falcon"
gem "puma"
# Omakase Ruby styling [https://github.com/rails/rubocop-rails-omakase/]
gem "rubocop", require: false
gem "rubocop-rails-omakase", require: false
# Start debugger with binding.b [https://github.com/ruby/debug]
gem "debug", ">= 1.0.0"
gem "rails_app_version"
# Support testing against Rails edge/development branch
if ENV["RAILS_VERSION"] == "dev"
gem "railties", github: "rails/rails", branch: "main"
else
gem "railties", ENV.fetch("RAILS_VERSION", ">= 8.0.4")
end
gem "simplecov", require: false
gem "solid_cache"
gem "solid_queue"
# Authentication for dummy app
gem "bcrypt", "~> 3.1.7"
gem "jwt"
gem "warden"
# Database adapters for testing
gem "pg"
gem "sqlite3", "~> 2.0"
# gem "redis"
gem "faraday" # used by the client
gem "webmock", group: :test # for testing HTTP requests
gem "database_cleaner-active_record", group: :test
gem "minitest", ">= 5.25", group: :test
gem "minitest-mock", group: :test # Separate gem in Ruby 4.0+
gem "minitest-reporters", group: :test
gem "maxitest", group: :test
# Optional: Schema validation for structured content
gem "json_schemer", ">= 2.4", group: [ :development, :test ]
# File system watching for development
gem "listen", group: :development
gem "rails_lens", require: false, group: :development
gem "rubocop-minitest", "~> 0.38.1", group: :development
gem "rubocop-rake", "~> 0.7.1", group: :development