File: shared.rb

package info (click to toggle)
ruby-acts-as-list 1.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 388 kB
  • sloc: ruby: 2,493; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 410 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

# Common shared behaviour.
module Shared
  autoload :List,           'shared_list'
  autoload :ListSub,        'shared_list_sub'
  autoload :ZeroBased,      'shared_zero_based'
  autoload :ArrayScopeList, 'shared_array_scope_list'
  autoload :TopAddition,    'shared_top_addition'
  autoload :NoAddition,     'shared_no_addition'
  autoload :Quoting,        'shared_quoting'
end