module WhatsonFreeEvents
Typical free community happenings in Australian towns — sausage sizzles, fetes, BBQs.
Constants
- PATTERN
- SEARCH_TERMS
Public Instance Methods
Source
# File lib/whatson_free_events.rb, line 34 def matches?(text) text.to_s.match?(PATTERN) end
Source
# File lib/whatson_free_events.rb, line 38 def search_clause SEARCH_TERMS.map { |term| %("#{term}") }.join(" OR ") end