class Object

Constants

BasicObject

Public Instance Methods

confect(tool, *options)

Alias for configure.

Alias for: configure
confection(tool, *options)

Alias for config.

Alias for: config
config(tool, *options) click to toggle source

Confection’s primary use method, lookups a configuration given the tool and profile.

To select all profiles for a given tool, use ‘’*‘`.

@return [Confection::Controller] config controller

# File lib/confection.rb, line 28
def config(tool, *options)
  Confection.controller(self, tool, *options)
end
Also aliased as: confection
configure(tool, *options) click to toggle source
# File lib/confection.rb, line 40
def configure(tool, *options)
  controller = Confection.controller(self, tool, *options)
  controller.configure
end
Also aliased as: confect