Roderick Monje

Results 13 issues of Roderick Monje

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`... ![screen shot 2018-10-01 at 5 46 25 pm](https://user-images.githubusercontent.com/113809/46317731-fc69d180-c5a1-11e8-9b96-de3a61d3e5b9.png)

When running app In development, resetting password at http://localhost:3000/users/password/new yields a `Net::SMTPAuthenticationError`... ![screen shot 2018-10-01 at 5 29 00 pm](https://user-images.githubusercontent.com/113809/46316921-7f3d5d00-c59f-11e8-9dce-ec8a28102355.png)

For example, when the user enters bro with no arguments, list all available commands after the instructions.

enhancement

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...

enhancement

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)...