-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathGemfile
More file actions
34 lines (27 loc) · 708 Bytes
/
Gemfile
File metadata and controls
34 lines (27 loc) · 708 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
source 'https://rubygems.org'
ruby "3.1.4"
gem 'rails', '~> 5'
gem 'sassc-rails'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
# Needed after Ruby upgrade to 3.1.4
# gem 'bigdecimal', '1.3.0'
# gem 'globalid', '1.1.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'puma'
gem 'sqlite3', '1.6.3', group: :development
group :development, :test do
gem 'web-console', '~> 2.0'
gem 'spring'
end
group :production do
gem 'pg', '~> 0.20' # the latest pg gem does not play nicely with Heroku...
gem 'rails_12factor'
end
gem 'rack-cors', require: 'rack/cors'
gem 'rails_api_auth'
gem 'nokogiri', '>= 1.10.4'
gem 'sprockets', '~> 3.7.2'