toys 0.10.4 → 0.10.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: 2df55870f3530617a4961bb0cfa09d0752bb13e99f7642a4156ab4b7ffea3a8c
4
- data.tar.gz: 74131a75411c11703347193f167c916e351fa3582401d0505036cd74dbb9911c
3
+ metadata.gz: d4d27fd4743feddadec86f143f5d0a9d5afff98cf3b10afd18732d29f495db38
4
+ data.tar.gz: bdc935b5876b1a1c7779a3fefc59ea9b6c506cf1f0eba67c54ff05a5e1e46013
5
5
  SHA512:
6
- metadata.gz: ff5a5e3e2c2fea1bebdcfbeef064bd51d5a587a48077b7ee6c6b4befe926433d0318ce5c4b8c63a067e8b4e6dbd21f191c86b11844e8e1ff9d8c6096cffad996
7
- data.tar.gz: 464d5d87896965c77182d6f7f3793b23bbf9797439619c01b9142516bb71077f44a5c53e81492017890e8fd9db1cb7d5c9e83bed1ea68741f716d94833e7e3b6
6
+ metadata.gz: 9e8bcf630b41f3fe9a3c906460e5f40008b1a9190becf38ce3700308193240a9f5ec60c6ecec2dfd03bcf6eb8dafd77171c5039fa9dd239770d7f7251a6cf90f
7
+ data.tar.gz: a5d4cc200823a52c4586d2109fb89e1ebd17737d191cea509b53e344a9868fddc1ccb05cb735b796c662fd297bb75a7d7078d2065df9ffb7799d78d122c6de3b
@@ -1,5 +1,13 @@
1
1
  # Release History
2
2
 
3
+ ### 0.10.5 / 2020-07-18
4
+
5
+ * IMPROVED: The bundler mixin silences bundler output during bundle setup.
6
+ * IMPROVED: The bundler mixin allows toys and toys-core to be in the Gemfile. It checks their version requirements against the running Toys version, and either adds the corret version to the bundle or raises IncompatibleToysError.
7
+ * IMPROVED: The bundler mixin utomatically updates the bundle if install fails (typically because a transitive dependency has been explicitly updated.)
8
+ * FIXED: Some cases of transitive dependency handling by the bundler mixin.
9
+ * FIXED: Fixed a crash when computing suggestions, when running with a bundle on Ruby 2.6 or earlier.
10
+
3
11
  ### 0.10.4 / 2020-07-11
4
12
 
5
13
  * IMPROVED: Bundler integration can now handle Toys itself being in the bundle, as long as the version requirements cover the running Toys version.
data/README.md CHANGED
@@ -252,7 +252,7 @@ than Rake does.
252
252
  But you also might find Toys a more natural way to *write* tasks, and indeed
253
253
  you can often rewrite an entire Rakefile as a Toys file and get quite a bit of
254
254
  benefit in readability and maintainability. For an example, see the
255
- [Toys file for the Toys repo itself](https://github.com/dazuma/toys/blob/master/toys/.toys.rb).
255
+ [Toys file for the Toys repo itself](https://github.com/dazuma/toys/blob/main/toys/.toys.rb).
256
256
  It contains the Toys scripts that I use to develop, test, and release Toys
257
257
  itself. Yes, Toys is self-hosted. You'll notice most of this Toys file consists
258
258
  of template expansions. Toys provides templates for a lot of common build,
@@ -5,5 +5,5 @@ module Toys
5
5
  # Current version of the Toys command line executable.
6
6
  # @return [String]
7
7
  #
8
- VERSION = "0.10.4"
8
+ VERSION = "0.10.5"
9
9
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: toys
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.4
4
+ version: 0.10.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: 2020-07-11 00:00:00.000000000 Z
11
+ date: 2020-07-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: toys-core
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 0.10.4
19
+ version: 0.10.5
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 0.10.4
26
+ version: 0.10.5
27
27
  description: Toys is a configurable command line tool. Write commands in Ruby using
28
28
  a simple DSL, and Toys will provide the command line executable and take care of
29
29
  all the details such as argument parsing, online help, and error reporting. Toys
@@ -63,10 +63,10 @@ homepage: https://github.com/dazuma/toys
63
63
  licenses:
64
64
  - MIT
65
65
  metadata:
66
- changelog_uri: https://github.com/dazuma/toys/blob/master/toys/CHANGELOG.md
66
+ changelog_uri: https://dazuma.github.io/toys/gems/toys/v0.10.5/file.CHANGELOG.html
67
67
  source_code_uri: https://github.com/dazuma/toys
68
68
  bug_tracker_uri: https://github.com/dazuma/toys/issues
69
- documentation_uri: https://dazuma.github.io/toys/gems/toys/v0.10.4
69
+ documentation_uri: https://dazuma.github.io/toys/gems/toys/v0.10.5
70
70
  post_install_message:
71
71
  rdoc_options: []
72
72
  require_paths: