lib/socrates/adapters/adapter.rb in socrates-0.1.25 vs lib/socrates/adapters/adapter.rb in socrates-0.1.26

- old
+ new

@@ -2,13 +2,11 @@ module Socrates module Adapters module Adapter # Many of the methods in the Adapter module serve as an interface for Adapter implementations to - # implement. We want to serve as an example, even if we don't provide implementations here. Therefor, - # we're disabling this cop to avoid its warnings. - # rubocop:disable Lint/UnusedMethodArgument + # implement. We want to serve as an example, even if we don't provide implementations here. def client_id_from(context: nil, user: nil) raise NotImplementedError end @@ -57,10 +55,8 @@ end def lookup_email(*) raise NotImplementedError end - - # rubocop:enable Lint/UnusedMethodArgument end end end