From a4342f8bdb7c8208862c64a22fc1cb84c2943a7d Mon Sep 17 00:00:00 2001 From: Igor Alexandrov Date: Fri, 10 Feb 2023 12:08:48 +0400 Subject: [PATCH] binarylogic/authlogic Ruby gem --- lib/ruby/authlogic.rb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 lib/ruby/authlogic.rb diff --git a/lib/ruby/authlogic.rb b/lib/ruby/authlogic.rb new file mode 100644 index 0000000..aa6b869 --- /dev/null +++ b/lib/ruby/authlogic.rb @@ -0,0 +1,15 @@ +# frozen_string_literal: true + +class Authlogic < Curated::RubyGem + package 'authlogic' + homepage 'https://github.com/binarylogic/authlogic' + category Category::Authentication + + pros "We've been usi Authlogic for since 2010 and always had a great experience with it" + pros 'It is easy to use and provides a simple, clean API for handling authentication.' + pros 'It is flexible and customizable, allowing developers to modify the behavior of the authentication process to meet their specific needs.' + pros 'It is well documented and has an active community of developers contributing to its development, making it a reliable and well-supported solution for authentication.' + + cons 'There is no built-in support for 2FA (two-factor authentication).' + cons 'You need two implement all authentication logic yourself. Requires a lot of boilerplate code.' +end