Michael G. Schwern
Michael G. Schwern
Hi, I'm trying out Gitless for the first time. I'm a Git expert and read up on it and the paper. I've typed two commands and I'm already sold! `gl...
**Describe the bug** I have some workers which are meant to run continuously. I'm using Heroku which restarts every 24 hours. I've noticed after the restart there will be locks...
The README says... > Starting in v5.1, Sidekiq can also fire a global callback when a job dies: In version 7, this is handled automatically for you. You don't need...
``` Pipelining commands on a Redis instance is deprecated and will be removed in Redis 5.0.0. redis.pipelined do redis.get("key") end should be replaced by redis.pipelined do |pipeline| pipeline.get("key") end (called...
I've have a State table where the primary key is not :id, it is :abbr. It also has a :name column. ``` # db/migrate/create_states.rb class CreateStates < ActiveRecord::Migration[6.1] def change...
Hi, I'm trying to get coverage reporting working with [parallel testing on Heroku CI](https://devcenter.heroku.com/articles/heroku-ci-parallel-test-runs). Parallel testing on HerokuCI works by distributing the tests across multiple dynos each with their own...
Hi, I used your gem as a template for making my own Zipcode and State models. I stripped down the models for my own needs. I've significantly sped up the...
Both replace and add will refuse to overwrite an identical tarball, and there doesn't appear to be a way to force it. ``` $ pinto replace Net-LibIDN-0.12.tgz schwern/Net-LibIDN-0.12.tgz Archive Net-LibIDN-0.12.tgz...
I just noticed that merging stacks disappeared. This is an important part of the value of Pinto to me. Delete + copy is enough to do a dev -> staging...
I ran into a situation updating PPI from 1.213 to 1.215 where something in its dependency stack was trying to update MakeMaker and Test::More (they were pinned) but it was...