Sha256: b1b153acd52fc16f7309a526fc71246f9cb4ca301ee35ac634a4a4799a5589e1
Contents?: true
Size: 715 Bytes
Versions: 1
Compression:
Stored size: 715 Bytes
Contents
# frozen_string_literal: true require "zeitwerk" require "phlex" require "active_support/core_ext/object/blank" module Phlexi module Display 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.Display(...) Phlexi::Display::Base.new(...) end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
phlexi-display-0.0.2 | lib/phlexi/display.rb |