has_guid.rb 188 B

12345678910111213
  1. module HasGuid
  2. extend ActiveSupport::Concern
  3. included do
  4. before_save :make_guid
  5. end
  6. protected
  7. def make_guid
  8. self.guid = SecureRandom.hex unless guid.present?
  9. end
  10. end