Module: LoyalCore::ActsAsUUIDFul::InstanceMethods
- Defined in:
- lib/loyal_core/acts/uuid_ful.rb
Instance Method Summary collapse
Instance Method Details
#impl_loyal_core_uuid_generate(force = false) ⇒ Object
30 31 32 33 34 35 |
# File 'lib/loyal_core/acts/uuid_ful.rb', line 30 def impl_loyal_core_uuid_generate(force=false) begin self.uuid = ::SecureRandom.uuid if force || self.uuid.blank? rescue end end |