toys-core 0.15.4 → 0.15.5

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: 95f2b314888825bc99a288a9f6676060d10b2e00bd10f9fe665ce4c6c9f03c37
4
- data.tar.gz: 71c89aaa21d5203eb5b8c7ae34c3fba9f408c818f3e07ca8cdc025568204fa43
3
+ metadata.gz: ebfb8fda8d9f4aa9fab8169a1b928897d2f99345a9f3b180106b7f17ce2cc882
4
+ data.tar.gz: 79dba27ffa72f6ebb312688840805e28c8f732c612e19336c5462b7fcbba9d06
5
5
  SHA512:
6
- metadata.gz: 9ee63b482c81481f02aa498aef32aa563a9d6cf6335f94b1c5820a935cb058c182dcb74572ce54f0c298e2473ca405719d50aaf11b519a592fc75ad263f53fca
7
- data.tar.gz: 40ac439b3942f95d414d5253190491916d4c5dabbebd5bf32a262884d1dd3b6174f0f248ea3d7ef3dc86f38020752858ebd916c2cfe62d887f7fd84f53b5603b
6
+ metadata.gz: a7cbff222f7311375a89f042a00ef8ffa3f5eb5b05d89923241ced59e0604e11c823952b704c271eecd7723e6511abc9c0d1fcf86b03a94f4f5b4062fa359a8c
7
+ data.tar.gz: 72d2bfeffe4de765ff480ec23acab92e63a777c10db6c0b9ff3ce2379b5c84f96ed253f6aeaa7d4732637a962be94b79f4b77a43f12f14a8e91986c1343c07d8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release History
2
2
 
3
+ ### v0.15.5 / 2024-01-31
4
+
5
+ * FIXED: Fix for uri version mismatch error in certain bundler integration cases
6
+
3
7
  ### v0.15.4 / 2024-01-04
4
8
 
5
9
  * FIXED: Fix error message when failing assertion of the toys version
data/lib/toys/core.rb CHANGED
@@ -9,7 +9,7 @@ module Toys
9
9
  # Current version of Toys core.
10
10
  # @return [String]
11
11
  #
12
- VERSION = "0.15.4"
12
+ VERSION = "0.15.5"
13
13
  end
14
14
 
15
15
  ##
@@ -304,6 +304,13 @@ module Toys
304
304
  end
305
305
 
306
306
  def setup_bundle(gemfile_path, groups: nil, retries: nil)
307
+ # Ensure certain built-in gems that may be used by bundler/rubygems
308
+ # themselves are preloaded so they can be included in the modified
309
+ # gemfile. This prevents a gem version mismatch if bundler/rubygems
310
+ # loads a version of the gem during the bundler setup code (i.e. after
311
+ # the modified gemfile is created) but the gemfile lock itself calls
312
+ # for a different version.
313
+ require "uri"
307
314
  # Lock the bundler version, preventing bundler's SelfManager from
308
315
  # installing a different bundler and taking over the process.
309
316
  ::ENV["BUNDLER_VERSION"] = ::Bundler::VERSION
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: toys-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.4
4
+ version: 0.15.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Azuma
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-04 00:00:00.000000000 Z
11
+ date: 2024-01-31 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Toys-Core is the command line tool framework underlying Toys. It can
14
14
  be used to create command line executables using the Toys DSL and classes.
@@ -79,10 +79,10 @@ homepage: https://github.com/dazuma/toys
79
79
  licenses:
80
80
  - MIT
81
81
  metadata:
82
- changelog_uri: https://dazuma.github.io/toys/gems/toys-core/v0.15.4/file.CHANGELOG.html
82
+ changelog_uri: https://dazuma.github.io/toys/gems/toys-core/v0.15.5/file.CHANGELOG.html
83
83
  source_code_uri: https://github.com/dazuma/toys/tree/main/toys-core
84
84
  bug_tracker_uri: https://github.com/dazuma/toys/issues
85
- documentation_uri: https://dazuma.github.io/toys/gems/toys-core/v0.15.4
85
+ documentation_uri: https://dazuma.github.io/toys/gems/toys-core/v0.15.5
86
86
  post_install_message:
87
87
  rdoc_options: []
88
88
  require_paths: