-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
63 lines (45 loc) · 1.27 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
60
61
62
63
# frozen_string_literal: true
# ruby=ruby-3.1.2
# ruby-gemset=triviacrack-web
source "https://rubygems.org"
ruby "3.1.2"
gem "rails", "7.0.8.1"
gem "thin", "1.8.1"
gem "pg", "1.4.1"
gem "good_job", "~> 3.4"
gem "sass-rails", "6.0.0"
gem "uglifier", "4.2.0"
gem "devise", "4.8.1"
gem "jbuilder", "2.11.5"
gem "jquery-rails", "4.5.0"
gem "turbolinks", "5.2.1"
gem "pundit", "2.2.0"
gem "semantic-ui-sass", "2.4.4.0"
gem "triviacrack", "0.8.0"
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
gem "sdoc", "2.4.0", group: :doc
group :development do
gem "web-console", "4.2.0"
end
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem "debug"
gem "factory_bot", "6.2.1", require: false
gem "faker", "2.21.0", require: false
gem "fuubar", "2.5.1"
gem "rails-controller-testing"
gem "rspec-activejob", "0.6.1", require: false
gem "rspec-its", "1.3.0", require: false
gem "rspec-rails", "5.1.2"
gem "shoulda-matchers", "5.1.0"
gem "simplecov", "0.21.2"
gem "letter_opener_web", "2.0.0"
gem "annotate"
gem "solargraph"
gem "solargraph-rails"
gem "rubocop"
gem "rubocop-rails", require: false
gem "rubocop-performance", require: false
gem "rubocop-rspec", require: false
end