Last active
August 29, 2015 14:08
-
-
Save Fivell/ce63d12952666d48d457 to your computer and use it in GitHub Desktop.
DeprecatedFormBufferSubstitute lib/active_admin/views/components/active_admin_form.rb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class DeprecatedFormBufferSubstitute | |
| def initialize(form) | |
| @form = form | |
| end | |
| def << (value) | |
| @form.text_node value.html_safe | |
| end | |
| end | |
| def form_buffers | |
| warn "DEPRECATION WARNING: 'form_buffers' is no longer needed." | |
| @form_buffers ||= [DeprecatedFormBufferSubstitute.new(self)] | |
| end | |
| end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment