1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00

Make sure to load rails before loading haml

Or haml/railtie will not be required.

This normally will be done inside haml-rails for the users' apps, but since
we're not depending on haml-rails in this repo to avoid mutual dependency,
we need to carefully craft the gem load order here.
This commit is contained in:
Akira Matsuda 2017-10-14 11:12:54 +09:00
parent 186e044eda
commit 09299ea9e1

View file

@ -13,7 +13,6 @@ if ENV["COVERAGE"]
end
require 'bundler'
Bundler.require(:default)
require 'minitest/autorun'
require 'action_pack'
require 'action_controller'
@ -21,6 +20,7 @@ require 'action_view'
require 'action_view/base'
require 'nokogiri'
require 'rails'
Bundler.require(:default)
if defined?(I18n.enforce_available_locales)
I18n.enforce_available_locales = true