Skip to content

Instantly share code, notes, and snippets.

@ButchAnton
Created October 16, 2015 00:45
Show Gist options
  • Save ButchAnton/b811622628cfc8fc7ca3 to your computer and use it in GitHub Desktop.
Save ButchAnton/b811622628cfc8fc7ca3 to your computer and use it in GitHub Desktop.
Gems to add to all your projects.
group :development, :test do
gem 'meta_request'
gem 'better_errors' # better error in web browser
gem 'binding_of_caller' # required for better_errors
gem 'irbtools-more', require: 'binding.repl'
gem 'terminal-notifier'
gem 'ruby_gntp'
gem 'awesome_print'
gem 'jazz_fingers'
gem 'pry-byebug' # This may or may not work with 2.1.2 either, so remove if you still get errorrs
end
group :test do
gem 'purdytest'
# Note that you'll have to change test/test_helper.rb to include
# require 'minitest/autorun'
# require 'purdytest'
# And if you want colorized diff output you'll have to install colordiff
# (brew install colordiff on Mac)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment