Implementation of the null object pattern in Ruby.
# File lib/spruz/null.rb, line 12 def inspect 'NULL' end
# File lib/spruz/null.rb, line 4 def method_missing(*) self end
# File lib/spruz/null.rb, line 8 def to_s '' end