Sha256: 8b58409a98c4438a5677dbe4dabe0f619abc0f0f116d7c46f9d0bce74a96f47c
Contents?: true
Size: 696 Bytes
Versions: 50
Compression:
Stored size: 696 Bytes
Contents
# frozen_string_literal: true require 'haml/version' # The module that contains everything Haml-related: # # * {Haml::Parser} is Haml's parser. # * {Haml::Compiler} is Haml's compiler. # * {Haml::Engine} is the class used to render Haml within Ruby code. # * {Haml::Options} is where Haml's runtime options are defined. # * {Haml::Error} is raised when Haml encounters an error. # # Also see the {file:REFERENCE.md full Haml reference}. module Haml def self.init_rails(*args) # Maintain this as a no-op for any libraries that may be depending on the # previous definition here. end end require 'haml/util' require 'haml/engine' require 'haml/railtie' if defined?(Rails::Railtie)
Version data entries
50 entries across 46 versions & 4 rubygems