Skip to content

Commit

Permalink
add parentheses to method definitions with arguments
Browse files Browse the repository at this point in the history
to keep it uniform with the rest of the repo
  • Loading branch information
aweiksnar committed Sep 27, 2013
1 parent 65bf5e7 commit 8e2cc95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/rack/cascade.rb
Expand Up @@ -38,12 +38,12 @@ def call(env)
result
end

def add app
def add(app)
@has_app[app] = true
@apps << app
end

def include? app
def include?(app)
@has_app.include? app
end

Expand Down

0 comments on commit 8e2cc95

Please sign in to comment.