bundler-exec-shell-export 0.0.1.pre.iteration.2 → 0.0.1.pre.iteration.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a7d1327555b092460d0a639735e41d7283fef5eeef1800dfd95100c7e07462f3
4
- data.tar.gz: 66b4c336affcbbe44b4d6998f95582533578f7721f84578fd0a7b9a57546f83f
3
+ metadata.gz: a0f07e5177e30d7f58707cf0a6aa80ff1d635b0ebc371fbe486375885d72493a
4
+ data.tar.gz: 683a3226f6fd153375dbc44d6d05825d943e0f009ef60b4e1db48793fa0181ca
5
5
  SHA512:
6
- metadata.gz: 04d724b82ede0616ad9247f4fbb02ba1e219a80d4660a5512ff7f64fa213ef224d594bd8d0f3c574db44b4335a8521200938867fba62666f3d3a2315982272de
7
- data.tar.gz: 6e2d6385b15d0c90bad358b528cca466cdcf0177591e194e3e34700fc200593fa40e9325299682bb7e873e7c1e62c86ff01aaff5d20744723777913f50a60c23
6
+ metadata.gz: 52fb9ee41f9cf05f7a984d12af49b1517d07a4fe00a9a8a41680b1c43ffc877a7b04d4cd44053dbaf7590209e0dcdd2e49597867a336625dc8ecebe803378c7c
7
+ data.tar.gz: 63e3bf3de711dcb07212dde7fe81d16a70d7d8e912d5e892d65a7b4f99ae927c1b747d018c7005e57d8958d8abe10888d1bab7ae08e9d89f3edf926fad8b06c1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.0.1-iteration.3] - 2024-10-08
4
+
5
+ - Fix non-plugin invocation from executable.
6
+
3
7
  ## [0.0.1-iteration.2] - 2024-10-08
4
8
 
5
9
  - Add executable script for use when not installed as a plugin.
@@ -1,5 +1,6 @@
1
+ require "bundler/errors"
1
2
  require "bundler/friendly_errors"
2
3
  Bundler.with_friendly_errors do
3
- require "bundler/plugin"
4
- Bundler::Plugin.exec_command("exec-shell-export", ARGV)
4
+ require "bundler_exec_shell_export"
5
+ BundlerExecShellExport.new.exec("exec-shell-export", ARGV)
5
6
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class BundlerExecShellExport
4
- VERSION = "0.0.1-iteration.2" unless defined?(VERSION)
4
+ VERSION = "0.0.1-iteration.3" unless defined?(VERSION)
5
5
  end
@@ -1,5 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "bundler/plugin"
4
+
3
5
  require_relative "bundler_exec_shell_export/version"
4
6
 
5
7
  class BundlerExecShellExport
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundler-exec-shell-export
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.pre.iteration.2
4
+ version: 0.0.1.pre.iteration.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amir Yalon