class Object
add mehods to Object
to determine if this is a dummy object or not
Public Class Methods
parse(*args, &block)
click to toggle source
# File lib/opal/parse_patch.rb, line 8 def self.parse(*args, &block) old_parse *args, &block rescue Exception => e raise StandardError.new e.message end
Also aliased as: old_parse
Public Instance Methods
loaded?()
click to toggle source
# File lib/reactive_record/active_record/reactive_record/dummy_value.rb, line 3 def loaded? !loading? end
loading?()
click to toggle source
# File lib/reactive_record/active_record/reactive_record/dummy_value.rb, line 7 def loading? false end
present?()
click to toggle source
# File lib/reactive_record/active_record/reactive_record/dummy_value.rb, line 11 def present? !!self end