Skip to content

Instantly share code, notes, and snippets.

@wwwbruno
Created September 24, 2013 14:47
Show Gist options
  • Save wwwbruno/6685860 to your computer and use it in GitHub Desktop.
Save wwwbruno/6685860 to your computer and use it in GitHub Desktop.
Dicas de Rails
# http://railscasts.com/episodes/402-better-errors-railspanel?autoplay=true
# Gemfile
group :development do
gem 'better_errors' # mostra os erros de uma forma melhor
gem 'binding_of_caller' # mostra mais detalhes de erros
gem 'meta_request' #mostra debug no chrome! Necessita de plugin https://github.com/dejan/rails_panel
end
# Gemfile
gem 'client_side_validations' # faz a validação no lado do cliente
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment