Skip to content

Instantly share code, notes, and snippets.

@f3r
Last active August 29, 2015 14:07
Show Gist options
  • Save f3r/37d797e5afce61cf7868 to your computer and use it in GitHub Desktop.
Save f3r/37d797e5afce61cf7868 to your computer and use it in GitHub Desktop.
Sample WDI Development Gemfile
group :development do
# Spring speeds up development by keeping your application running in the background.
#> https://github.com/rails/spring
gem 'spring'
# Better Errors replaces the standard Rails error page with a much better and more useful error page.
#> https://github.com/charliesome/better_errors
gem 'better_errors'
gem 'binding_of_caller' # adding REPL
# RailsPanel is a Chrome extension for Rails development that will end your tailing of development.log
# Have all information about your Rails app requests right there in the Developer Tools panel.
# Provides insight to db/rendering/total times, parameter list, rendered views, text editor integration and more.
#> https://chrome.google.com/webstore/detail/railspanel/gjpfobpafnhjhbajcjgccbbdofdckggg
gem 'meta_request'
# Pry is a powerful alternative to the standard IRB shell for Ruby. It features syntax highlighting, a flexible
# plugin architecture, runtime invocation and source and documentation browsing.
#> http://pryrepl.org/
gem 'pry'
# Rails console opens pry
#> https://github.com/rweng/pry-rails
gem 'pry-rails'
end
group :development, :test do
gem 'rspec-rails', '~> 3.0.0'
gem 'capybara', '~> 2.3.0'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment