Skip to content

Commit

Permalink
Require Thor Dependency
Browse files Browse the repository at this point in the history
Applications using StimulusReflex were failing
during deploys because of the Thor dependency
being referenced but not listed as a dependency.
This commit adds the require statement to the area
of the code that uses it but does not add it as a
dependency due to Thor being a dependency of
railties already.
  • Loading branch information
juna-nb committed May 24, 2024
1 parent 8d83a8f commit 2c05712
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/stimulus_reflex/installer.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# frozen_string_literal: true

require "thor"

module StimulusReflex
class Installer
include Thor::Base
Expand Down

0 comments on commit 2c05712

Please sign in to comment.