mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
7 lines
186 B
Ruby
7 lines
186 B
Ruby
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
|