116
117
118
119
120
|
# File 'lib/eye/dsl/opts.rb', line 116
def set_environment(value)
raise Eye::Dsl::Error, "environment should be a hash, but not #{value.inspect}" unless value.is_a?(Hash)
@config[:environment] ||= {}
@config[:environment].merge!(value)
end
|