Sha256: 0aa62cbc9b3fa596bcca2144b47c63a131fe2c742563bc79efaa4e242abfc9ff
Contents?: true
Size: 709 Bytes
Versions: 1
Compression:
Stored size: 709 Bytes
Contents
# frozen_string_literal: true require "zeitwerk" require "phlex" require "active_support/core_ext/object/blank" module Phlexi module Table Loader = Zeitwerk::Loader.new.tap do |loader| loader.tag = File.basename(__FILE__, ".rb") loader.inflector.inflect( "phlexi-display" => "Phlexi", "phlexi" => "Phlexi", "dom" => "DOM" ) loader.push_dir(File.expand_path("..", __dir__)) loader.setup end COMPONENT_BASE = (defined?(::ApplicationComponent) ? ::ApplicationComponent : Phlex::HTML) NIL_VALUE = :__i_phlexi_display_nil_value_i__ class Error < StandardError; end end end def Phlexi.Table(...) Phlexi::Table::Base.new(...) end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
phlexi-table-0.0.1 | lib/phlexi/table.rb |