Created
September 24, 2013 14:47
-
-
Save wwwbruno/6685860 to your computer and use it in GitHub Desktop.
Dicas de Rails
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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