diff options
| author | erdgeist <erdgeist@erdgeist.org> | 2026-07-24 13:11:51 +0200 |
|---|---|---|
| committer | erdgeist <erdgeist@erdgeist.org> | 2026-07-24 13:11:51 +0200 |
| commit | 02e1aefa24cdd0339995d14431713822f4bf4718 (patch) | |
| tree | a622727150214f8e9dab165ae48803180c38403d /Gemfile | |
| parent | 38920de3910705dac42af2370da7b3ba504577a9 (diff) | |
Add TOTP enrollment and verification to User, witnessed in the action log
Diffstat (limited to 'Gemfile')
| -rw-r--r-- | Gemfile | 8 |
1 files changed, 7 insertions, 1 deletions
| @@ -38,7 +38,7 @@ gem 'rails_icons' | |||
| 38 | gem 'globalize', '~> 7.0' # translated model attributes (Page title/abstract/body) | 38 | gem 'globalize', '~> 7.0' # translated model attributes (Page title/abstract/body) |
| 39 | gem 'acts_as_list' # page revision ordering | 39 | gem 'acts_as_list' # page revision ordering |
| 40 | gem 'will_paginate', '~> 3.0' | 40 | gem 'will_paginate', '~> 3.0' |
| 41 | gem 'bcrypt', '~> 3.1' | 41 | |
| 42 | 42 | ||
| 43 | # Pinned to git until a release widens the activerecord < 8.1 ceiling. | 43 | # Pinned to git until a release widens the activerecord < 8.1 ceiling. |
| 44 | # Both gems work correctly on Rails 8.1; the gemspec constraint is overly conservative. | 44 | # Both gems work correctly on Rails 8.1; the gemspec constraint is overly conservative. |
| @@ -47,6 +47,12 @@ gem 'acts-as-taggable-on', | |||
| 47 | git: 'https://github.com/mbleigh/acts-as-taggable-on.git', | 47 | git: 'https://github.com/mbleigh/acts-as-taggable-on.git', |
| 48 | branch: 'master' | 48 | branch: 'master' |
| 49 | 49 | ||
| 50 | # ── Auth and sessions ───────────────────────────────────────────────────────── | ||
| 51 | |||
| 52 | gem "rotp", ">= 6.3.0" | ||
| 53 | gem "rqrcode", "~> 3.1.0" | ||
| 54 | gem 'bcrypt', '~> 3.1' | ||
| 55 | |||
| 50 | # ── XML / parsing / diffing ─────────────────────────────────────────────────── | 56 | # ── XML / parsing / diffing ─────────────────────────────────────────────────── |
| 51 | 57 | ||
| 52 | gem 'libxml-ruby', '~> 5.0', require: 'xml' # body link rewriting in Page model | 58 | gem 'libxml-ruby', '~> 5.0', require: 'xml' # body link rewriting in Page model |
