enum

Fluxion::ToolchainKind

Inherits Enum < Comparable < Value < Object

Upstream toolchain installers that ship their own bootstrap script.

Constants

Rustup = 0
Juliaup = 1
Sdkman = 2
Generic = 3

Class methods

from_config?(value : String | Nil) : self | Nil
Source

Instance methods

config_name

The config spelling is uppercase for this kind, unlike every other enum, matching kind: RUSTUP in the documented schema.

Source
generic?

Returns true if this enum value equals Generic

Source
juliaup?

Returns true if this enum value equals Juliaup

Source
rustup?

Returns true if this enum value equals Rustup

Source
sdkman?

Returns true if this enum value equals Sdkman

Source
to_s(io : IO) : Nil

Appends a String representation of this enum member to the given io.

See also: to_s.

Source