Shawn Pyle

Results 8 comments of Shawn Pyle

So it is! Adding this gif for clarity. Thanks! ![Sep-21-2022 14-04-07](https://user-images.githubusercontent.com/48266/191600038-3be255f0-23b7-4d4a-96e1-7dfe50d4846d.gif)

Based on the settings listed in the [Usage section of capistrano/rbenv](https://github.com/capistrano/rbenv#usage), the following worked by changing the path to the actual rbenv executable (`/usr/local/bin/rbenv`). ``` ruby set :rbenv_prefix, "RBENV_ROOT=#{fetch(:rbenv_path)} RBENV_VERSION=#{fetch(:rbenv_ruby)}...

Related? https://github.com/jbaysolutions/vue-grid-layout/issues/21

httrack'd site as of July 2018 is available at https://bitbucket.org/theasci/php-activerecord-site

According to my system, it has to do with the `powerup_manager`. ``` $> invoker start invoker.ini Starting process - rails waiting for 0 seconds... Starting process - jobs-worker waiting for...

Likely duplicate of https://github.com/code-mancers/invoker/issues/184

You could just use the `ActiveJob` `after_perform` callback and determine if the job has a `last_error`. Something like ```ruby # @param job [ApplicationJob] after_perform do |job| if djob = delayed_job(id:...

In addition to a strip on the returning values, a check that the index is valid is needed. ``` CREATE OR REPLACE FUNCTION json_extract_array_element_text(json_array text, array_index int) RETURNS text immutable...