-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathGemfile
More file actions
37 lines (26 loc) · 955 Bytes
/
Copy pathGemfile
File metadata and controls
37 lines (26 loc) · 955 Bytes
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
source "https://rubygems.org"
# Specify your gem's dependencies in actiontext-lexical.gemspec.
gemspec
if ENV["USE_RAILS_WITHOUT_ACTION_TEXT_ADAPTER"] == "true"
gem "rails", "~> 8.1.0"
# Rails 8.1.3.1's ActiveSupport::JSON.decode hands JSON.parse its options as a
# positional hash, which json 3.0 rejects, so parsing JSON request parameters
# and reading the flash raise. The fix (rails/rails#58601) is on 8-1-stable but
# unreleased; drop this pin once a Rails 8.1 release includes it.
gem "json", "< 3"
else
gem "rails", github: "rails/rails", branch: "main"
end
gem "puma", "~> 7.0"
gem "sqlite3", "~> 2.0"
gem "propshaft", "~> 1.0"
gem "rubocop-rails-omakase", "~> 1.0", require: false
gem "importmap-rails", "~> 2.0"
gem "image_processing", "~> 1.0"
gem "turbo-rails", "~> 2.0"
gem "stimulus-rails", "~> 1.0"
gem "rack-cors"
gem "foreman"
gem "capybara", "~> 3.0"
gem "selenium-webdriver", "~> 4.0"
gem "cuprite", "~> 0.17"