has_draft icon indicating copy to clipboard operation
has_draft copied to clipboard

Allows for your ActiveRecord models to have "drafts" which are stored in a separate duplicate table that can be edited without affecting the "live" copy.

Results 7 has_draft issues
Sort by recently updated
recently updated
newest added

Bumps [activesupport](https://github.com/rails/rails) from 4.0.3 to 6.0.6.1. Release notes Sourced from activesupport's releases. v6.0.6.1 Active Support No changes. Active Model No changes. Active Record Make sanitize_as_sql_comment more strict Though this method...

dependencies

Bumps [activerecord](https://github.com/rails/rails) from 4.0.3 to 6.0.6.1. Release notes Sourced from activerecord's releases. v6.0.6.1 Active Support No changes. Active Model No changes. Active Record Make sanitize_as_sql_comment more strict Though this method...

dependencies

Bumps [tzinfo](https://github.com/tzinfo/tzinfo) from 0.3.54 to 1.2.10. Release notes Sourced from tzinfo's releases. v1.2.10 Fixed a relative path traversal bug that could cause arbitrary files to be loaded with require when...

dependencies

Bumps [i18n](https://github.com/ruby-i18n/i18n) from 0.6.5 to 0.9.5. Release notes Sourced from i18n's releases. v0.9.5 #404 reported a regression in 0.9.3, which wasn't fixed by 0.9.4. #408 fixes this issue. Thanks @​wjordan!...

dependencies

Updates the requirements on [rake](https://github.com/ruby/rake) to permit the latest version. Changelog *Sourced from [rake's changelog](https://github.com/ruby/rake/blob/master/History.rdoc).* > === 13.0.1 > > ==== Bug fixes > > * Fixed bug: Reenabled task...

dependencies

Let's say you have an Article, and inside an article you have many Steps (think of a how-to wikihow article) I was able to make a draft for the article,...

I see there's the ability to extend the draft class, but in order for the draft class to be "functional," it'd be nice if it inherited the original class' attributes...