Sha256: 05afd44d5825646fdf78bbfdab17952480ebb24d595aa4bb4cd7ab3a7386c66b
Contents?: true
Size: 445 Bytes
Versions: 46
Compression:
Stored size: 445 Bytes
Contents
module Liquidscript module Compiler class Base # Responds to all methods with `nil`. class Blank # Respond to all methods, with `nil`. # # @return [nil] def method_missing(*_, &block) nil end # Tells Ruby that we respond to all methods. # # @return [true] def respond_to_missing?(_, __) true end end end end end
Version data entries
46 entries across 46 versions & 1 rubygems