BlankAttributes

Blankable attributes for the ActiveRecord model.

Installation

Add this line to your application's Gemfile:

gem 'blank_attributes'

And then execute:

$ bundle

Or install it yourself as:

$ gem install blank_attributes

Usage

class User < ActiveRecord::Base
  blank_attributes :name, :email
end

And use it:

user = User.new(name: '', email: ' ', token: ' ')
user.valid?
user.name # => nil
user.email # => nil
user.token # => " "

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/blank_attributes.

License

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