No commit activity in last 3 years
No release in over 3 years
Provide the bang and predicate methods for Active Record
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.15

Runtime

>= 5.0
 Project Readme

StatefulFieldFor

Build Status Gem Version License: MIT

Provide the bang and predicate methods for Active Record.

Installation

Add this line to your application's Gemfile:

gem "stateful_field_for"

And then execute:

$ bundle

Or install it yourself as:

$ gem install stateful_field_for

Usage

class Picture < ApplicationRecord
+  stateful_field_for :hidden_at, scope: true do
+    enable  :hide, to: :hidden
+    disable :show, to: :visible, initial: true
+  end
end

Then you can use the bang and predicate methods:

picture = Picture.create

picture.show!
picture.hidden?  # false
picture.visible? # true

picture.hide!
picture.hidden?  # true
picture.visible? # false

License

The gem is available as open source under the terms of the MIT License.