Skip to content

Instantly share code, notes, and snippets.

@Fivell
Last active August 29, 2015 14:08
Show Gist options
  • Select an option

  • Save Fivell/ce63d12952666d48d457 to your computer and use it in GitHub Desktop.

Select an option

Save Fivell/ce63d12952666d48d457 to your computer and use it in GitHub Desktop.
DeprecatedFormBufferSubstitute lib/active_admin/views/components/active_admin_form.rb
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