“Native” environment type renamed to “Prefix”.
parent
0378d43224
commit
52e4bce548
|
@ -102,7 +102,7 @@ end
|
||||||
|
|
||||||
class Environment
|
class Environment
|
||||||
enum Type
|
enum Type
|
||||||
Native
|
Prefix
|
||||||
RootFileSystem
|
RootFileSystem
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -110,7 +110,7 @@ class Environment
|
||||||
name: String,
|
name: String,
|
||||||
type: {
|
type: {
|
||||||
type: Type,
|
type: Type,
|
||||||
default: Type::Native
|
default: Type::Prefix
|
||||||
},
|
},
|
||||||
domain_name: {
|
domain_name: {
|
||||||
type: String?,
|
type: String?,
|
||||||
|
@ -120,7 +120,7 @@ class Environment
|
||||||
|
|
||||||
def initialize()
|
def initialize()
|
||||||
@name = "root"
|
@name = "root"
|
||||||
@type = Type::Native
|
@type = Type::Prefix
|
||||||
end
|
end
|
||||||
|
|
||||||
class_getter root = Environment.new
|
class_getter root = Environment.new
|
||||||
|
|
Loading…
Reference in New Issue