1
1
source 'https://rubygems.org'
2
2
ruby '2.7.2'
3
3
4
- gem 'rails' , '5.2.8.1 '
4
+ gem 'rails' , '6.1.7.4 '
5
5
# Reduces boot times through caching; required in config/boot.rb
6
- gem 'bootsnap' , '>= 1.1.0 ' , require : false
6
+ gem 'bootsnap' , '>= 1.4.4 ' , require : false
7
7
8
8
gem 'acts-as-taggable-on'
9
9
gem 'carrierwave'
@@ -18,23 +18,27 @@ gem 'haml'
18
18
gem 'high_voltage'
19
19
gem 'jquery-rails'
20
20
gem 'jquery-ui-rails'
21
- # Use ActiveStorage variant
22
- gem 'mini_magick'
21
+
22
+ # Use Active Storage variant
23
+ gem 'image_processing' , '~> 1.2'
23
24
gem 'nokogiri'
24
25
gem 'omniauth'
25
26
gem 'omniauth-github'
26
27
gem 'omniauth-rails_csrf_protection'
27
28
gem 'pg'
28
29
gem 'pickadate-rails'
29
30
gem 'premailer-rails'
30
- gem 'puma'
31
+ gem 'puma' , '~> 5.0'
31
32
gem 'pundit'
32
33
gem 'rails4-autocomplete'
33
34
gem 'rolify'
34
- gem 'sassc-rails'
35
+ gem 'sass-rails' , '>= 6'
36
+ # Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
37
+ gem 'webpacker' , '~> 5.0'
35
38
gem 'simple_form'
36
- gem 'turbolinks'
37
- gem 'terser' , '~> 1.1'
39
+
40
+ gem 'terser'
41
+
38
42
gem 'will_paginate'
39
43
gem 'sprockets-rails'
40
44
@@ -50,18 +54,22 @@ gem 'stripe'
50
54
51
55
gem 'rails-html-sanitizer' , '~> 1.4.4'
52
56
53
- gem 'jbuilder'
57
+ # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
58
+ gem 'turbolinks' , '~> 5'
59
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
60
+ gem 'jbuilder' , '~> 2.7'
54
61
gem 'public_activity'
55
62
56
63
group :development do
57
64
gem 'better_errors'
58
65
gem 'letter_opener'
59
- # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
60
- gem 'web-console' , '>= 3.3.0'
61
- gem 'listen' , '>= 3.0.5' , '< 3.2'
66
+ gem 'web-console' , '>= 4.1.0'
67
+ # Display performance information such as SQL time and flame graphs for each request in your browser.
68
+ # Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
69
+ gem 'rack-mini-profiler' , '~> 2.0'
70
+ gem 'listen' , '~> 3.3'
62
71
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
63
72
gem 'spring'
64
- gem 'spring-watcher-listen' , '~> 2.0.0'
65
73
end
66
74
67
75
group :development , :test do
@@ -81,7 +89,7 @@ group :development, :test do
81
89
end
82
90
83
91
group :test do
84
- gem 'capybara'
92
+ gem 'capybara' , '>= 3.26'
85
93
gem 'database_cleaner'
86
94
gem 'shoulda-matchers' , '~> 4.5'
87
95
gem 'webdrivers'
0 commit comments