aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/builder.rb
blob: a7582a4f001208d6e4222914b8b6011e0142ba76 (plain) (blame)
1
2
3
4
5
6
7
# frozen_string_literal: true
begin
  require "builder"
rescue LoadError => e
  $stderr.puts "You don't have builder installed in your application. Please add it to your Gemfile and run bundle install"
  raise e
end