forked from rails/rails-contributors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
39 lines (31 loc) · 846 Bytes
/
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
ruby '3.2.1'
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem 'rails', '~> 7.1.0'
gem 'sprockets-rails'
gem 'rack', '< 3.0'
gem 'pg'
gem 'puma', '~> 5.6'
gem 'rugged', '1.7.2'
gem 'unf'
gem 'turbolinks', '~> 5'
gem 'actionpack-page_caching', '1.2.4'
gem 'sass-rails', '~> 6.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 5.0.0'
group :development do
gem 'web-console', '>= 3.3.0'
end
group :test do
gem 'rails-controller-testing'
end
group :deployment do
gem 'capistrano', '~> 3.19', require: false
gem 'capistrano-rails', '~> 1.6', require: false
gem 'capistrano-rvm', '0.1.2', require: false
gem 'capistrano3-puma', '~> 5.2', require: false
gem 'rbnacl', '>= 3.2', '< 8.0'
gem 'rbnacl-libsodium'
gem 'bcrypt_pbkdf', '>= 1.0', '< 2.0'
gem 'ed25519'
end