Skip to content

Instantly share code, notes, and snippets.

@fukaoi
Created June 21, 2018 09:03
Show Gist options
  • Select an option

  • Save fukaoi/371e84041cc08fac1befed47ca9ea268 to your computer and use it in GitHub Desktop.

Select an option

Save fukaoi/371e84041cc08fac1befed47ca9ea268 to your computer and use it in GitHub Desktop.
crystal-envのrequire代替手段
### これだとMacro?生成ができないのか、 ``` undefined constant Crystal::Env```
### [NG]
require "env"
### 代替手段
### [OK]
require "env/core"
Crystal::Env.default("development")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment