toys-core 0.15.4 → 0.15.5
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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/toys/core.rb +1 -1
- data/lib/toys/utils/gems.rb +7 -0
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ebfb8fda8d9f4aa9fab8169a1b928897d2f99345a9f3b180106b7f17ce2cc882
|
|
4
|
+
data.tar.gz: 79dba27ffa72f6ebb312688840805e28c8f732c612e19336c5462b7fcbba9d06
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a7cbff222f7311375a89f042a00ef8ffa3f5eb5b05d89923241ced59e0604e11c823952b704c271eecd7723e6511abc9c0d1fcf86b03a94f4f5b4062fa359a8c
|
|
7
|
+
data.tar.gz: 72d2bfeffe4de765ff480ec23acab92e63a777c10db6c0b9ff3ce2379b5c84f96ed253f6aeaa7d4732637a962be94b79f4b77a43f12f14a8e91986c1343c07d8
|
data/CHANGELOG.md
CHANGED
data/lib/toys/core.rb
CHANGED
data/lib/toys/utils/gems.rb
CHANGED
|
@@ -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
|
+
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-
|
|
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.
|
|
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.
|
|
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:
|