Robert Fletcher

Results 66 issues of Robert Fletcher

The core extensions modify `Time` and `Date` classes globally. Rather than adding these methods for everyone, we should create util functions that are encapsulated under the `Feedjira` namespace.

The current `docker-compose.yml` uses Postgres version 9.5 and we need to upgrade to version 16 at the time of writing. We need to figure out an upgrade strategy for our...

The base OPML format includes only the feeds, not unread stories or stars. This appears to be the standard for feed exports, but we may want to have a more...

## Is your feature request related to a problem? Please describe. I like to write RSpec tests like: ```rb expect { described_class.call(user) } .to change(target1, :value).to(0) .and change(target2, :value).to(0) ```...

We've got a lot of places in our codebase where people do: ```ruby # bad Rails.root.join('spec', 'fixtures', 'something.pdf') ``` It would be great to have a cop to enforce using...

cop
help wanted
good first issue

I sometimes like to use a top-level application module to namespace internal stuff for clarity, but I don't really want to have to nest my specs under that directory. It...

enhancement

Currently when there is an error it outputs to `$stderr`, but it would be nice if we could control the place the output goes to, such as by pointing it...

## Is your feature request related to a problem? Please describe. In general, I've found `dependent` relations to be an anti-pattern in my codebases. It's easy to accidentally cascade unintended...

enhancement

We're looking at setting up Chrome to generate PDFs on our servers, and we noticed that it disables the sandbox. I'm not able to find very clear information about what...

We've been incorporating the new ["strict locals" feature in Rails 7.1](https://edgeguides.rubyonrails.org/7_1_release_notes.html#allow-templates-to-set-strict-locals) into our views. It would be great to have a haml linter to require this. Right now we're only...

enhancement
contributions-welcome