diff options
author | Yorick Peterse <yorickpeterse@gmail.com> | 2017-07-03 16:01:41 +0200 |
---|---|---|
committer | Yorick Peterse <yorickpeterse@gmail.com> | 2017-07-06 12:01:36 +0200 |
commit | e1a3bf30b6ea04f2c658729f65a0eb09847dd341 (patch) | |
tree | 9c418de69fba8187717aa16979e102212417c634 /app/models/service.rb | |
parent | 6f1e00ea36bdcc39da955f7aa2add6a21432d190 (diff) | |
download | gitlab-ce-e1a3bf30b6ea04f2c658729f65a0eb09847dd341.tar.gz |
Rename ActiverecordSerialize cop
This cop has been renamed to ActiveRecordSerialize to match the way
"ActiveRecord" is usually written.
Diffstat (limited to 'app/models/service.rb')
-rw-r--r-- | app/models/service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/service.rb b/app/models/service.rb index 6a0b0a5c522..60fa81b18c4 100644 --- a/app/models/service.rb +++ b/app/models/service.rb @@ -2,7 +2,7 @@ # and implement a set of methods class Service < ActiveRecord::Base include Sortable - serialize :properties, JSON # rubocop:disable Cop/ActiverecordSerialize + serialize :properties, JSON # rubocop:disable Cop/ActiveRecordSerialize default_value_for :active, false default_value_for :push_events, true |