From 3d33dc2211a27c8930145e3c5ecffa902d5fe6b4 Mon Sep 17 00:00:00 2001 From: Tejas Bubane Date: Mon, 8 Jul 2019 16:49:07 +0530 Subject: [PATCH] Add section for hash syntax of enums Closes https://github.com/rubocop-hq/rails-style-guide/issues/144 Ref: https://github.com/rubocop-hq/rubocop-rails/issues/78 --- README.adoc | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.adoc b/README.adoc index c9080ffc..c29c85ea 100644 --- a/README.adoc +++ b/README.adoc @@ -385,6 +385,24 @@ class Transaction < ActiveRecord::Base end ---- +=== Enums [[enums]] + +Prefer hash syntax over arrays for `enums`. + +[source,ruby] +---- +class Transaction < ActiveRecord::Base + # bad - implicit values - ordering in array matters + enum type: %i[credit debit] + + # good - explicit values - ordering does not matter + enum type: { + credit: 0, + debit: 1, + } +end +---- + === Macro Style Methods [[macro-style-methods]] Group macro-style methods (`has_many`, `validates`, etc) in the beginning of the class definition.