Jakie są ograniczenia dotyczące nazw metod w Ruby?

Na przykład znalazłem nazwę metodybundler? w poniższym fragmencie i nie wiem, czy? znak jest wyspecjalizowanym słowem kluczowym lub tylko częścią nazwy metody.

<code># This is a predicate useful for the doc:guides task of applications.
def bundler?
  # Note that rake sets the cwd to the one that contains the Rakefile
  # being executed.
  File.exists?('Gemfile')
end
</code>

questionAnswers(5)

yourAnswerToTheQuestion