Sha256: c38b20defe2f044fc0bccb382177c8c5f7ebefe4742648bde2d37877d7b316f3
Contents?: true
Size: 530 Bytes
Versions: 91
Compression:
Stored size: 530 Bytes
Contents
begin require File.join(File.dirname(__FILE__), 'lib', 'haml') # From here rescue LoadError begin require 'haml' # From gem rescue LoadError => e # gems:install may be run to install Haml with the skeleton plugin # but not the gem itself installed. # Don't die if this is the case. raise e unless defined?(Rake) && Rake.application.top_level_tasks.include?('gems:install') end end # Load Haml and Sass. # Haml may be undefined if we're running gems:install. Haml.init_rails(binding) if defined?(Haml)
Version data entries
91 entries across 90 versions & 7 rubygems