lib/receptacle.rb in receptacle-1.0.0 vs lib/receptacle.rb in receptacle-2.0.0

- old
+ new

@@ -1,14 +1,7 @@ # frozen_string_literal: true require "receptacle/version" -require "receptacle/interface_methods" -require "receptacle/method_delegation" +require "receptacle/repo" module Receptacle - module Repo - def self.included(base) - base.extend(InterfaceMethods) - base.extend(MethodDelegation) - end - end end