From 52e4bce548604fcbbb0467a34824f0c83ce41bc9 Mon Sep 17 00:00:00 2001 From: Luka Vandervelden Date: Sun, 9 Jun 2019 13:50:49 +0200 Subject: [PATCH] =?UTF-8?q?=E2=80=9CNative=E2=80=9D=20environment=20type?= =?UTF-8?q?=20renamed=20to=20=E2=80=9CPrefix=E2=80=9D.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main.cr | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.cr b/src/main.cr index 1a638b0..0d4b4f4 100644 --- a/src/main.cr +++ b/src/main.cr @@ -102,7 +102,7 @@ end class Environment enum Type - Native + Prefix RootFileSystem end @@ -110,7 +110,7 @@ class Environment name: String, type: { type: Type, - default: Type::Native + default: Type::Prefix }, domain_name: { type: String?, @@ -120,7 +120,7 @@ class Environment def initialize() @name = "root" - @type = Type::Native + @type = Type::Prefix end class_getter root = Environment.new