Skip to content

Instantly share code, notes, and snippets.

@sibsfinx
Created June 17, 2013 14:30
Show Gist options
  • Save sibsfinx/5797313 to your computer and use it in GitHub Desktop.
Save sibsfinx/5797313 to your computer and use it in GitHub Desktop.
class FormObjectBase < Hashie::Dash
extend ActiveModel::Naming
def persisted?; false; end
def to_key; nil; end
end
# Пример модели
class UserOrganizationForm < FormObjectBase
property :username
property :orgname
property :orgsite
end
# Пример использования в форме
simple_form UserOrganizationForm.new, :url => root_url do |f|
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment