Class: Bently::BetterErrors

Inherits:
RailsRecipe show all
Defined in:
lib/bently/recipe/better-errors.rb

Constant Summary

Constants inherited from RubyRecipe

RubyRecipe::GEMFILE

Instance Method Summary collapse

Methods inherited from RailsRecipe

#generate, #migrate

Methods inherited from RubyRecipe

#bundle, #gem, #gem_group

Methods inherited from Recipe

#append, breakdown, category, #code, #create, description, homepage, #insert, #modify, #operate, #operations, #prepend, #remove, #requirement, #run, #say, title, #todo, #usage, version, #warn

Constructor Details

#initializeBetterErrors

Returns a new instance of BetterErrors.



7
8
9
10
11
12
13
# File 'lib/bently/recipe/better-errors.rb', line 7

def initialize
  gem_group :development do
    gem 'better_errors'
    gem 'binding_of_caller'
  end
  bundle
end