aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/builder.rb
blob: 0f010c5d964ba02dd5eb7b977ac7da53a903c185 (plain) (blame)
1
2
3
4
5
6
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