Andy Waite
Andy Waite
https://www.howtographql.com/graphql-ruby/3-mutations/ says to create a new file `app/graphql/mutations/base_mutation.rb`, but a version of this already exists as it was added by the graphql gem installer. So I think the tutorial should...
:wave: I recently published [setup-rails](https://github.com/andyw8/setup-rails), a reusable GitHub CI workflow: https://www.andywaite.com/2022/04/15/reusable-github-actions-rails-workflow.html I'm hoping this would be a useful addition to Jumpstart. Here's an example of it in use: http://github.com/andyw8/jumpstart-setup-rails (I...
I think the problem I encountered in #171 could have been caught if `yarn build` ran as part of the tests. I've implemented this as a test following the style...
Hi Aaron, Many thanks for your continued update to the book. I have a request for you. I don't want to re-read the full book to keep up with the...
I'm able to start the Playground app but when I execute the `signup` mutation it shows: ``` { "error": "Failed to fetch. Please check your connection" } ``` The console...
By default, a new Rails 7 app will create: ``` vendor/.keep vendor/javascript/.keep ``` `.gitignore` has a `/vendor` entry (since #596) which prevents these from being committed. The second path is...
Mouse/trackpad support used to be problematic in tmux, but seems to be well supported in newer versions with a simple `set -g mouse on`. (I realise that not needing the...
Is it possible to adjust the hyphenation for the PDF? The current settings make it a little unpleasant to read: 
If the rack gem isn't present, the engine emits errors such as: ``` An error occurred while Rails/HttpStatus cop was inspecting /code/app/controllers/errors_controller.rb:6:4. ``` See https://github.com/rubocop-hq/rubocop/issues/5745 A PR was opened https://github.com/rubocop-hq/rubocop/pull/5707...
## Is your feature request related to a problem? Please describe. `ActiveSuppport::TestCase` inherits from `Minitest::Test` but isn't recognized by the `test_class?` method since it doesn't end in `Test`: https://github.com/rubocop/rubocop-minitest/blob/50ce80a009fbf8bb1c627176b19c0100b865d2fa/lib/rubocop/cop/mixin/minitest_exploration_helpers.rb#L24-L26 ##...