class Early::Error
Error
is raised when an environment variable is missing.
Attributes
variable[R]
Public Class Methods
new(variable)
click to toggle source
Calls superclass method
# File lib/early.rb, line 69 def initialize(variable) @variable = variable super("Variable ENV[#{variable.name.inspect}] is missing") end