Skip to content

struct Athena::Framework::Parameters
inherits Struct #

Encompasses parameters related to the Athena::Framework component.

For a higher level introduction to using parameters, see the external documentation.

Constructors#

.configure : self#

This method should be overridden in order to customize the parameters for the Athena::Framework component. See the external documentation for more details.

# Returns an `ATH::Parameters` instance with customized parameter values.
def ATH::Parameters.configure
  new(
    base_uri: "https://myapp.com",
  )
end
View source

.new(base_uri : URI | String | Nil = nil)#

View source

Methods#

#base_uri : URI | ::Nil#

Returns an optional URI instance for use within ART::Generator::Interface#generate.

View source