Skip to content

Instantly share code, notes, and snippets.

@beaucollins
Created March 11, 2010 18:41
Show Gist options
  • Save beaucollins/329495 to your computer and use it in GitHub Desktop.
Save beaucollins/329495 to your computer and use it in GitHub Desktop.
available_methods = ['one', 'two', 'three']
filtered_methods = available_methods.find_all do |method|
method != 'one'
end
p filtered_methods
# => ['two', 'three']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment