John Cline
John Cline
Trying to add an attachment to an Asana ticket from Google Drive doesn't work. On the normal site, when attaching something from Google Drive, it will display a popup window...
When classes that are specified as a library in the `Steepfile` have a syntax error, the `steep check` executable hangs and requires a force quit to end the process. Example:...
Given a file with the headers: `supplier,sku,name,description,shipping,price,quantity_unit,minimum_quantity,maximum_quantity` After running in a before_batch_import callback, `importer.batch_slice_columns(%w[supplier sku price minimum_quantity maximum_quantity])` the headers are sliced as expected. However, if I wanted to further...
When calling the `#render` method from a helper in a Rails app, for example: ```rb module ApplicationHelper def render_partial(name, options) render(partial: name, **options) end end ``` the current type definitions...
When creating a new ActiveRecord model through an association, for example: ```rb class Post < ActiveRecord::Base has_many comments end class Comment < ActiveRecord::Base belongs_to :post end post = Post.new comment...
We use Rails 4.2, and after updating from Flipper 0.26.1 to 0.26.2 saw the below error after loading the web UI. The only change was https://github.com/flippercloud/flipper/pull/707, which my guess is...
In https://github.com/flippercloud/flipper/pull/782, there was an update to read values from Rails credentials. Credentials were added in Rails 5.2, which means this throws an error when using Flipper 1.1.0+ and Rails...
As demonstrated in this sample app: https://github.com/clinejj/flipper-prawn-minitest-spec-autoload When running the test suite (`bin/rails test`), there is an autoload deprecation warning shown in the console. This only occurs in the test...
Hello, I'm seeing an issue where the helper methods are returning undefined after upgrading to Rails 6.1 (there was no issue with Rails 6.0). I'm not seeing issues with other...
This is stemming from an issue running erb-lint on files with AlpineJS syntax (https://github.com/Shopify/erb-lint/issues/221), but it would be nice to add support to configure the parser to use some of...