Roderick Monje
Roderick Monje
This covers #380.
Activeuuid defaults the primary key of new records to a UUID with a value of "00000000-0000-0000-0000-000000000000" whereas ActiveRecord expects all keys of new records to be nil. This breaks accepts_nested_attributes_for...
Nifty idea! How about implementing a Safari extension?
Disable mailer locally to avoid [`Net::SMTPAuthenticationError` when resetting password](https://github.com/RailsApps/rails-devise/issues/27). Although this is admittedly trivial, having the app work as-is will prevent confusion for devs new to Rails.
Fix #29 by running `rake db:migrate`. Although this is admittedly trivial, having the `schema.rb` in sync with the repo will prevent confusion for devs new to Rails.
Running server locally generates `ActiveRecord::PendingMigrationError`... 
When running app In development, resetting password at http://localhost:3000/users/password/new yields a `Net::SMTPAuthenticationError`... 
For example, when the user enters bro with no arguments, list all available commands after the instructions.
Just like apropos, "sis" would list the commands whose bro entries contain the specified keywords. Example: sis reverse Output: rev revnetgroup You could then use "bro rev" to find the...
To suppress warnings, you have to specify "except_methods: []": ``` [config/rails_best_practices.yml] RemoveUnusedMethodsInModelsCheck: { except_methods: [], ignored_files: 'unique_identifier.rb' } ``` Any other value (such as "except_method: ['save']" or omitting it entirely)...