Skip to content

Instantly share code, notes, and snippets.

@Fivell
Forked from varyonic/gist:542c37648de91a02402a
Last active August 29, 2015 14:08
Show Gist options
  • Save Fivell/c753eca34d93565fc34c to your computer and use it in GitHub Desktop.
Save Fivell/c753eca34d93565fc34c to your computer and use it in GitHub Desktop.
module ActiveAdmin
module Views
class ActiveAdminForm
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
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment