Commit 00b8969c1a56dc9408cf53c1c0e299f9451f11d4
1 parent
262db103
Exists in
master
and in
1 other branch
Rubocop: fix ambiguous splat operator
Fixes: $ rubocop --lint --only AmbiguousOperator
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/models/user.rb
@@ -3,7 +3,7 @@ class User | @@ -3,7 +3,7 @@ class User | ||
3 | include Mongoid::Document | 3 | include Mongoid::Document |
4 | include Mongoid::Timestamps | 4 | include Mongoid::Timestamps |
5 | 5 | ||
6 | - devise *Errbit::Config.devise_modules | 6 | + devise(*Errbit::Config.devise_modules) |
7 | 7 | ||
8 | field :email | 8 | field :email |
9 | field :github_login | 9 | field :github_login |