DEV: Automatically install omniauth-openid if missing

omniauth-openid will soon be removed from core (context at https://meta.discourse.org/t/-/113249)
This commit is contained in:
David Taylor 2020-02-07 17:02:23 +00:00
parent 240578fd2b
commit d42688821a
1 changed files with 7 additions and 0 deletions

View File

@ -5,6 +5,13 @@
# version: 2.0.1
# author: J. de Faye, tgxworld
# omniauth-openid is not included in core since v2.4.0.beta10
unless defined? OmniAuth::Strategies::OpenID
gem 'ruby-openid', '2.9.2', require: false
gem 'rack-openid', '1.3.1', require: false
gem 'omniauth-openid', '1.0.1'
end
gem 'omniauth-steam', '1.0.6'
register_svg_icon "fab-steam" if respond_to?(:register_svg_icon)