mirror of
https://github.com/samsonjs/simple_oauth.git
synced 2026-04-27 14:57:45 +00:00
Use _ to indicate that block argument is unused
This commit is contained in:
parent
65a3bdcde8
commit
e40b445be1
1 changed files with 1 additions and 1 deletions
|
|
@ -77,7 +77,7 @@ module SimpleOAuth
|
||||||
private
|
private
|
||||||
|
|
||||||
def normalized_attributes
|
def normalized_attributes
|
||||||
signed_attributes.sort_by { |k, v| k.to_s }.collect { |k, v| %(#{k}="#{self.class.escape(v)}") }.join(', ')
|
signed_attributes.sort_by { |k, _| k.to_s }.collect { |k, v| %(#{k}="#{self.class.escape(v)}") }.join(', ')
|
||||||
end
|
end
|
||||||
|
|
||||||
def attributes
|
def attributes
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue