def some_method(format, language)
  raise Error unless %w(wiki xml).include?(format.to_s)
  raise Error unless %w(de en).include?(language.to_s)
...

Ruby Check for bounds

by Fu86, July 19, 2011 02:35, 2 refactorings, tagged with ruby, method, params, bounding

I need to check the given i...

Ee0505bbd355292778077fb662c88f13 Talk