Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Enumerable#find{} instead of #select{}[0] #21

Merged
merged 1 commit into from
Jul 16, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/api_taster/route.rb
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ def grouped_routes
end

def find(id)
routes.select { |r| r[:id] == id.to_i }[0]
routes.find { |r| r[:id] == id.to_i }
end

def find_by_verb_and_path(verb, path)
routes.select do |r|
routes.find do |r|
r[:path].to_s == path &&
r[:verb].to_s.downcase == verb.to_s.downcase
end[0]
end
end

def params_for(route)
Expand Down