Method: Verbal#anything

Defined in:
lib/verbal.rb

#anythingObject

Matches any character any number of times.

Examples:

Match the entire string.

Verbal.new do
  anything
end


98
99
100
# File 'lib/verbal.rb', line 98

def anything
  append '(?:.*)'
end