Sha256: 62e53f149e1d053f69eae62a36dd4b4e829803c36523ebd514ad7364a75cb5ff
Contents?: true
Size: 516 Bytes
Versions: 11
Compression:
Stored size: 516 Bytes
Contents
# frozen_string_literal: true require 'izi_lightup/version' require 'pathname' module IziLightup class << self def configure yield self end end autoload :Asset, 'izi_lightup/asset' autoload :AssetInfo, 'izi_lightup/asset_info' autoload :InlineAsset, 'izi_lightup/inline_asset' autoload :SmartPicture, 'izi_lightup/smart_picture' class << self def root_path @root_path ||= Pathname.new(File.dirname(File.expand_path(__dir__))) end end end require 'izi_lightup/engine'
Version data entries
11 entries across 11 versions & 1 rubygems