class SmartCore::Schema::Checker::Reconciler::Matcher::Options
@api private @since 0.3.0
Public Class Methods
build_from(reconciler)
click to toggle source
@param reconciler [SmartCore::Schema::Checker::Reconciler] @return [SmartCore::Schema::Checker::Reconciler::Matcher::Options]
@api private @since 0.3.0
# File lib/smart_core/schema/checker/reconciler/matcher/options.rb, line 12 def build_from(reconciler) new(reconciler.__strict?) end
new(is_strict_schema)
click to toggle source
@param is_strict_schema [Boolean] @return [void]
@api private @since 0.3.0
# File lib/smart_core/schema/checker/reconciler/matcher/options.rb, line 22 def initialize(is_strict_schema) @is_strict_schema = is_strict_schema end
Public Instance Methods
strict_schema?()
click to toggle source
@return [Boolean]
@api private @since 0.3.0
# File lib/smart_core/schema/checker/reconciler/matcher/options.rb, line 30 def strict_schema? @is_strict_schema end