generated from AlchemyCMS/alchemy-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
52 lines (41 loc) · 1.34 KB
/
Gemfile
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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "~> #{`cat .ruby-version`.chomp.tr("ruby-", "")}"
gem "alchemy_cms", "~> 6.1"
gem "alchemy-devise", "~> 6.1"
gem "alchemy_i18n", "~> 3.1"
gem "alchemy_cloudinary", "~> 2.0"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "~> 7.0.0"
# Use postgresql as the database for Active Record
gem "pg", "~> 1.0"
# Use Puma as the app server
gem "puma", "~> 5.0"
# Use SCSS for stylesheets
gem "sassc-rails", "~> 2.1"
# Use Uglifier as compressor for JavaScript assets
gem "uglifier", ">= 1.3.0"
gem "zurb-foundation", "~> 4.3.2"
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", ">= 1.1.0", require: false
# Reset the demo
gem "database_cleaner", "~> 2.0", require: false
gem "dotenv-rails", "~> 2.7"
# K8s health checks
gem "health_bit", "~> 0.2"
group :development, :test do
gem "pry-rails"
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem "web-console", ">= 3.3.0"
gem "listen", ">= 3.0.5"
end
group :production do
gem "lograge", "~> 0.10"
# Necessary to compile assets without database connection
gem "activerecord-nulldb-adapter"
gem "redis", "~> 5.0"
end
gem "sentry-raven", "~> 2.9"
gem "newrelic_rpm", "~> 8.0"