foobara-rails-command-connector 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6d427529c9c4b2f848ae1dd10ecd6f04999a604d79a6d6c6c30b12deb96c27d5
4
- data.tar.gz: 5526f63690249568e3e8a8f2af59a1555ef936ffc12d8da2f2ae599e8ac51882
3
+ metadata.gz: ddbd332170de0585e2aba5977500f2b934959cd17b157f237b2ace5693bb1d29
4
+ data.tar.gz: 03f46d1e7f03a7ed47717290068e1d4de1862c1fe13cd5f68cb9772ac5f6e160
5
5
  SHA512:
6
- metadata.gz: b53c24eece295f5fd47348952376131100bbf922e8091780a252a149e305d217e96e45585f42b7a741af25126c68c1815b1137842f36f87e292a8964179e04ac
7
- data.tar.gz: 246f70192a198dfd98379fd7b6e8ca7f8a6b00de8094f37b07228f4f226737f8d5e97ba8de9ed26fa2b9364cefd27aaba4bd36212dd0100a5036ec5f10b826ca
6
+ metadata.gz: 8bb7043f22ab631c8a34815e9d9126c088c075bdbe91774d9354b5f7a87da7104263935b8c85e2f9665ed018fae63292c91de0740d872b1e6e2196fd58e94148
7
+ data.tar.gz: 8e086607336df8c0327278c8223463c69c9fa41e223d9dbd3a259f396f6a4180c615766bba85922efe0e9d9472cee9bff24064ee453b10c2f9cd2347fbda1ce2
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [0.1.2] - 2025-10-29
2
+
3
+ - Provide a way to prevent auto-installing a RailsCommandConnector
4
+
1
5
  ## [0.1.1] - 2025-10-26
2
6
 
3
7
  - Only install the first RailsCommandConnector to support multiple
@@ -21,12 +21,15 @@ module Foobara
21
21
 
22
22
  attr_accessor :supported_actions
23
23
 
24
- def initialize(*, supported_actions: self.class.supported_actions, **, &)
24
+ def initialize(*,
25
+ supported_actions: self.class.supported_actions,
26
+ skip_install: false,
27
+ **, &)
25
28
  self.supported_actions = supported_actions
26
29
 
27
30
  super(*, **, &)
28
31
 
29
- install!
32
+ install! unless skip_install
30
33
  end
31
34
 
32
35
  def install!
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foobara-rails-command-connector
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miles Georgi