module Rakeman

Constants

VERSION

Public Instance Methods

configuration() click to toggle source
# File lib/rakeman.rb, line 23
def configuration
  ::Rakeman::Configuration.instance
end
configure() { |configuration| ... } click to toggle source
# File lib/rakeman.rb, line 9
def configure
  yield(configuration)
end
method_missing(method_name, *arguments, &block) click to toggle source
Calls superclass method
# File lib/rakeman.rb, line 13
def method_missing(method_name, *arguments, &block)
  return super unless configuration.respond_to?(method_name)

  configuration.public_send(method_name, *arguments, &block)
end
respond_to_missing?(method_name, include_private = false) click to toggle source
Calls superclass method
# File lib/rakeman.rb, line 19
def respond_to_missing?(method_name, include_private = false)
  configuration.respond_to?(method_name) || super
end