|
10 | 10 | # User management and login workflow. |
11 | 11 | gem "devise", '>= 4.7.1' |
12 | 12 | # Postgres database adapter. |
13 | | -gem "pg", "~> 1.5.9" |
| 13 | +gem "pg", "~> 1.6.2" |
14 | 14 | # Web server. |
15 | 15 | gem "puma" |
16 | 16 | # Rails web framework. |
@@ -94,6 +94,8 @@ gem "flipper-ui" |
94 | 94 | gem "geocoder" |
95 | 95 | # Generate .ics calendars for use with Google Calendar |
96 | 96 | gem 'icalendar', require: false |
| 97 | +# Offers functionality for date reocccurances |
| 98 | +gem "ice_cube" |
97 | 99 | # JSON Web Token encoding / decoding (e.g. for links in e-mails) |
98 | 100 | gem "jwt" |
99 | 101 | # Use Newrelic for logs and APM |
@@ -149,16 +151,16 @@ group :development, :test do |
149 | 151 | # Debugger which supports rdbg and Shopify Ruby LSP VSCode extension |
150 | 152 | gem "debug", ">= 1.0.0" |
151 | 153 | # RSpec behavioral testing framework for Rails. |
152 | | - gem "rspec-rails", "~> 8.0.0" |
| 154 | + gem "rspec-rails", "~> 8.0.2" |
153 | 155 | # Static analysis / linter. |
154 | 156 | gem "rubocop" |
155 | 157 | # Rails add-on for static analysis. |
156 | 158 | gem 'rubocop-performance' |
157 | | - gem "rubocop-rails", "~> 2.25.1" |
| 159 | + gem "rubocop-rails", "~> 2.33.4" |
158 | 160 | # More concise test ("should") matchers |
159 | 161 | gem "shoulda-matchers", "~> 6.5" |
160 | 162 | # Default rules for Rubocop. |
161 | | - gem "standard", "~> 1.50" |
| 163 | + gem "standard", "~> 1.52" |
162 | 164 | gem "standard-rails" |
163 | 165 | gem "standard-performance" |
164 | 166 | # Erb linter. |
@@ -206,7 +208,7 @@ group :test do |
206 | 208 | # Show code coverage. |
207 | 209 | gem 'simplecov' |
208 | 210 | # Mock HTTP requests and ensure they are not called during tests. |
209 | | - gem "webmock", "~> 3.25" |
| 211 | + gem "webmock", "~> 3.26" |
210 | 212 | # Interface capybara to chrome headless |
211 | 213 | gem "cuprite" |
212 | 214 | # Read PDF files for tests |
|
0 commit comments