aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/builder.rb
blob: 321e462acdb6042fe0fe9fb3e09345af6527a62c (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