fix rubocop new 2.2 syntax issues
This commit is contained in:
parent
719b73b880
commit
ee209cc936
3 changed files with 8 additions and 8 deletions
|
@ -152,7 +152,7 @@ module CommitsHelper
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
class: "commit-#{options[:source]}-link has_tooltip",
|
class: "commit-#{options[:source]}-link has_tooltip",
|
||||||
data: { :'original-title' => sanitize(source_email) }
|
data: { 'original-title': sanitize(source_email) }
|
||||||
}
|
}
|
||||||
|
|
||||||
if user.nil?
|
if user.nil?
|
||||||
|
|
|
@ -40,7 +40,7 @@ module ProjectsHelper
|
||||||
link_to(author_html, user_path(author), class: "author_link").html_safe
|
link_to(author_html, user_path(author), class: "author_link").html_safe
|
||||||
else
|
else
|
||||||
title = opts[:title].sub(":name", sanitize(author.name))
|
title = opts[:title].sub(":name", sanitize(author.name))
|
||||||
link_to(author_html, user_path(author), class: "author_link has_tooltip", data: { :'original-title' => title, container: 'body' } ).html_safe
|
link_to(author_html, user_path(author), class: "author_link has_tooltip", data: { 'original-title': title, container: 'body' } ).html_safe
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -37,7 +37,7 @@ describe CaseSensitivity, models: true do
|
||||||
with(%q{LOWER("foo"."bar") = LOWER(:value)}, value: 'bar').
|
with(%q{LOWER("foo"."bar") = LOWER(:value)}, value: 'bar').
|
||||||
and_return(criteria)
|
and_return(criteria)
|
||||||
|
|
||||||
expect(model.iwhere(:'foo.bar' => 'bar')).to eq(criteria)
|
expect(model.iwhere('foo.bar': 'bar')).to eq(criteria)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -87,8 +87,8 @@ describe CaseSensitivity, models: true do
|
||||||
with(%q{LOWER("foo"."baz") = LOWER(:value)}, value: 'baz').
|
with(%q{LOWER("foo"."baz") = LOWER(:value)}, value: 'baz').
|
||||||
and_return(final)
|
and_return(final)
|
||||||
|
|
||||||
got = model.iwhere(:'foo.bar' => 'bar',
|
got = model.iwhere('foo.bar': 'bar',
|
||||||
:'foo.baz' => 'baz')
|
'foo.baz': 'baz')
|
||||||
|
|
||||||
expect(got).to eq(final)
|
expect(got).to eq(final)
|
||||||
end
|
end
|
||||||
|
@ -127,7 +127,7 @@ describe CaseSensitivity, models: true do
|
||||||
with(%q{`foo`.`bar` = :value}, value: 'bar').
|
with(%q{`foo`.`bar` = :value}, value: 'bar').
|
||||||
and_return(criteria)
|
and_return(criteria)
|
||||||
|
|
||||||
expect(model.iwhere(:'foo.bar' => 'bar')).
|
expect(model.iwhere('foo.bar': 'bar')).
|
||||||
to eq(criteria)
|
to eq(criteria)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -178,8 +178,8 @@ describe CaseSensitivity, models: true do
|
||||||
with(%q{`foo`.`baz` = :value}, value: 'baz').
|
with(%q{`foo`.`baz` = :value}, value: 'baz').
|
||||||
and_return(final)
|
and_return(final)
|
||||||
|
|
||||||
got = model.iwhere(:'foo.bar' => 'bar',
|
got = model.iwhere('foo.bar': 'bar',
|
||||||
:'foo.baz' => 'baz')
|
'foo.baz': 'baz')
|
||||||
|
|
||||||
expect(got).to eq(final)
|
expect(got).to eq(final)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue