class Verifly::Applicator::Quoter

Quoter is used when there is no other way to apply applicatable. @example

Applicator.call(true, binding_, *context) # => true

Public Instance Methods

call(*) click to toggle source

@return applicable without changes

# File lib/verifly/applicator.rb, line 194
def call(*)
  applicable
end
source() click to toggle source

@return [String] quoted value's inspect

# File lib/verifly/applicator.rb, line 203
def source
  applicable.inpsect
end
source_location(*) click to toggle source

No source location available @return [nil]

# File lib/verifly/applicator.rb, line 200
def source_location(*); end