blob: 3fa7e6b26d9ac6909ae87eadea4977061259e813 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
# 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
|