-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
59 lines (48 loc) · 1.08 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
53
54
55
56
57
58
59
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '3.0.5'
gem 'rails', '~> 6.0.0'
### backend
gem 'bootsnap'
gem 'devise', '~> 4.7.1'
gem 'jbuilder', '~> 2.7'
gem 'pg', '~> 1.4.3'
gem 'rails_admin', '~> 2.0.0.beta'
### assets
gem 'coffee-rails', '~> 5.0'
gem 'jquery-rails'
gem 'sass-rails', '~> 6.0'
gem 'sprockets', '~> 3.7' # asset compile fails and I don't care why
gem 'turbolinks'
gem 'uglifier', '>= 1.3.0'
### Frontend stuff
gem 'cocoon', '~> 1.2'
gem 'haml-rails', '~> 2.0'
gem 'simple_form', '~> 5.1.0'
group :development, :test do
gem 'pry-rails'
gem 'rspec-rails'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'listen'
gem 'rubocop'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'rubocop-rspec'
gem 'spring'
end
group :test do
gem 'factory_bot_rails', '~> 6.1'
gem 'faker'
gem 'rails-dom-testing'
gem 'rspec-collection_matchers'
gem 'shoulda-matchers'
gem 'simplecov'
end
### analysis
gem 'sentry-raven', '~> 3.0'
### Deployment
gem 'rails_12factor', group: :production # For Deployment to heroku
gem 'rake'