Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generate boolean method like ActiveRecord::Enum #51

Open
james-em opened this issue May 11, 2022 · 0 comments
Open

Generate boolean method like ActiveRecord::Enum #51

james-em opened this issue May 11, 2022 · 0 comments

Comments

@james-em
Copy link

james-em commented May 11, 2022

class Conversation < ActiveRecord::Base
  enum :status, [ :active, :archived ]
end

conversation.new(status: :active)
conversation.active? # => true

Syntax is shorter than

user.sex?(:male)    # => true
user.sex?(:Male)    # => true
user.sex?('Male')   # => true

Special note: In case of method overlap, ActiveRecord::Enum let's you define suffix or prefix.

enum :status, [ :active, :archived ], prefix: true

conversation.status_active? # => true

Valid values are for prefix/suffix

true, false(default), string
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant