module Usable class ModExtender attr_reader :name attr_accessor :copy, :mod, :config def initialize(mod, config = OpenStruct.new) @mod = mod @name = mod.name @copy = has_spec? ? mod.const_get(:UsableSpec).dup : mod.dup @config = config end # @note Destructive def call override copy end def override unwanted = config.only ? copy.instance_methods - Array(config.only) : [] unwanted.each do |method_name| copy.send :remove_method, method_name end end def has_spec? mod.const_defined?(:UsableSpec) end end end