Skip to content

Instantly share code, notes, and snippets.

@elithecho
Last active January 29, 2019 10:39
Show Gist options
  • Save elithecho/c9178730f4e8660d0cd3c06d8ae2b1d8 to your computer and use it in GitHub Desktop.
Save elithecho/c9178730f4e8660d0cd3c06d8ae2b1d8 to your computer and use it in GitHub Desktop.
BaseForm
class BaseForm
include ActiveModel::Model
include ActiveModel::Validations
def initialize(params={})
super(params)
end
end
class ProfileForm < BaseForm
def initialize(user, params={})
@user = user
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment