Andy Waite
Andy Waite
I've released a fork of this gem updated to use omniauth 2.0.0 due to this CVE: ``` Name: omniauth Version: 1.9.1 CVE: CVE-2015-9284 Criticality: High URL: https://github.com/omniauth/omniauth/wiki/Resolving-CVE-2015-9284 Title: CSRF vulnerability...
> Separate schema-only migrations from **nondestrucitve** (data) migrations in your Rails app (should end -tive)
RSpec defaults to `--order defined`. With `--order random`, I see varying failures, such as below. I ran into this because I have a `.rspec` config in my home directory. My...
Sorry, wasn't sure how else report this, but tinymon.org seems to be down (the request times out).
Should it be necessary to configure Spring with ```ruby Spring.watch "spec/spec_helper.rb" Spring.watch "spec/rails_helper.rb" ``` or should it restart automatically if these are changed? I'm trying to work out if it's...
https://blog.appcanary.com/2018/goodbye.html
* Fix capitalization. * Point to financeit.io (financeit.ca already redirects to there).
For consistency, we should have a cop to ensure that ```ruby sig { returns String } ``` is written as ```ruby sig { returns(String) } ```
Original context: https://github.com/Shopify/ruby-lsp-rails/pull/131#discussion_r1309265464 When a sig block has several parameters, it's usually more readable as a multi-line block, with one parameter per line. But when it only has one or...
As per the guidance by `@jez` who works on Sorbet at Stripe, stubbing `is_a?` is problematic: https://stackoverflow.com/a/56743840 This most often occurs for mocks, but it's probably a good general guideline.