File: arbre.rb

package info (click to toggle)
ruby-arbre 1.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 440 kB
  • sloc: ruby: 1,716; makefile: 7
file content (21 lines) | stat: -rw-r--r-- 501 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true
require 'active_support/core_ext/string/output_safety'
require 'active_support/hash_with_indifferent_access'
require 'active_support/inflector'

module Arbre
end

require 'arbre/element'
require 'arbre/context'
require 'arbre/html/attributes'
require 'arbre/html/class_list'
require 'arbre/html/tag'
require 'arbre/html/text_node'
require 'arbre/html/document'
require 'arbre/html/html5_elements'
require 'arbre/component'

if defined?(Rails)
  require 'arbre/rails'
end