class Launch::Environment::Env
- Launch::Environment::Env
- Reference
- Object
Defined in:
launch/environment/env.crConstant Summary
-
LAUNCH_ENV =
"LAUNCH_ENV"
Constructors
Instance Method Summary
- #==(env2 : String | Symbol)
- #in?(env_list : Array(String))
-
#in?(*env_list : Object)
Returns
true
ifself
is included in the collection argument. - #to_s(io)
Macro Summary
Constructor Detail
Instance Method Detail
Description copied from class Object
Returns true
if self
is included in the collection argument.
10.in?(0..100) # => true
10.in?({0, 1, 10}) # => true
10.in?(0, 1, 10) # => true
10.in?(:foo, :bar) # => false