class Object

Constants

ID

Public Instance Methods

a() click to toggle source
# File lib/crudboy/ext/object.rb, line 19
def a
  [self]
end
j() click to toggle source
# File lib/crudboy/ext/object.rb, line 3
def j
  to_json
end
jj() click to toggle source
# File lib/crudboy/ext/object.rb, line 7
def jj
  JSON.pretty_generate(JSON.parse(to_json))
end
jjp() click to toggle source
# File lib/crudboy/ext/object.rb, line 15
def jjp
  puts jj
end
jp() click to toggle source
# File lib/crudboy/ext/object.rb, line 11
def jp
  puts j
end