File: autoload.rb

package info (click to toggle)
ruby-representable 3.0.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 896 kB
  • sloc: ruby: 6,432; makefile: 3
file content (14 lines) | stat: -rw-r--r-- 414 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module Representable
  autoload :Hash, 'representable/hash'
  autoload :JSON, 'representable/json'
  autoload :Object, 'representable/object'
  autoload :YAML, 'representable/yaml'
  autoload :XML, 'representable/xml'

  module Hash
    autoload :AllowSymbols, 'representable/hash/allow_symbols'
    autoload :Collection, 'representable/hash/collection'
  end

  autoload :Decorator, 'representable/decorator'
end