module EasySerializer

Constants

AttributeSerializer
CacheOutput
Field
VERSION

Public Class Methods

cache() click to toggle source
# File lib/easy_serializer.rb, line 21
def self.cache
  return @cache if defined?(@cache)
  false
end
cache=(val) click to toggle source
# File lib/easy_serializer.rb, line 17
def self.cache=(val)
  @cache = val
end
perform_caching() click to toggle source
# File lib/easy_serializer.rb, line 12
def self.perform_caching
  return @perform_caching if defined?(@perform_caching)
  false
end
perform_caching=(val) click to toggle source
# File lib/easy_serializer.rb, line 8
def self.perform_caching=(val)
  @perform_caching = val
end
setup() { |self| ... } click to toggle source
# File lib/easy_serializer.rb, line 4
def self.setup
  yield self
end