Skip to content

Instantly share code, notes, and snippets.

@y00rb
Created July 5, 2014 15:35
Show Gist options
  • Save y00rb/a8f61d3ec27a097b2b16 to your computer and use it in GitHub Desktop.
Save y00rb/a8f61d3ec27a097b2b16 to your computer and use it in GitHub Desktop.
no inherite model, it is basic class
class PlainModel
include ActiveModel::Model
include ActiveSupport::Callbacks
include ActiveModel::Validations::Callbacks
define_callbacks :save
def save
if valid?
run_callbacks :save do
true
end
else
false
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment