lib/fluxo/config.rb in fluxo-0.1.0 vs lib/fluxo/config.rb in fluxo-0.2.0
- old
+ new
@@ -15,19 +15,19 @@
# When set to true, the result of a truthy operation will be wrapped in a Success.
attr_accessor :wrap_truthy_result
# When set to true, the operation will not validate the transient_attributes defition during the flow step execution.
- attr_accessor :sloppy_transient_attributes
+ attr_accessor :strict_transient_attributes
# When set to true, the operation will not validate attributes definition before calling the operation.
- attr_accessor :sloppy_attributes
+ attr_accessor :strict_attributes
def initialize
@error_handlers = []
@wrap_falsey_result = false
@wrap_truthy_result = false
- @sloppy_transient_attributes = false
- @sloppy_attributes = false
+ @strict_transient_attributes = true
+ @strict_attributes = true
end
end
end