Skip to content

Instantly share code, notes, and snippets.

@ahoward
Created February 22, 2012 23:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahoward/1888250 to your computer and use it in GitHub Desktop.
Save ahoward/1888250 to your computer and use it in GitHub Desktop.
database-less models in your controllers/views
# sometimes you want a non-db backed model in rails. you can put this in
# lib/model.rb and then:
#
# file: app/models/signup.rb
#
# class Signup < Model
# validates_presence_of :email
# end
#
class Model
include ActiveModel::Validations
include ActiveModel::Conversion
extend ActiveModel::Naming
def model_name
self < Model ? self.name.gsub('Model::', '') : super
end
def initialize(attributes = {})
unless attributes.blank?
attributes.each{|name, value| send("#{ name }=", value)}
end
end
def persisted?
false
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment