rake 13.0.4 → 13.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 28bba290220743d84779fafd399a03e1947823e7b2842a30dd6edee71166d5ca
4
- data.tar.gz: d0cf8c522bc622c93b79d16a36a2f9c68cec9ab0bfd9b3b599b9465f95caecc4
3
+ metadata.gz: cb2619a08088454d6ba2ff07bb0706b31098e2442fb938fa90fbfadf5c57b12f
4
+ data.tar.gz: 645741fa2ddd07f6b115925d155a33d299e05e5b440bee92ddd9ee05ff9bfb9c
5
5
  SHA512:
6
- metadata.gz: b5c11402d93c71df5f887b104825f74e4b168f25d9616e4a2ff25abed4b87e0b586bf33b43735f2b25fb6fef69e2b16af0c0594127734aae3042e88a74c1856f
7
- data.tar.gz: 8b04e7de538e94e4ccaaaa55edd0042498529368c72c1b9953b5bfc3d916cd3fa28a60518e952f88cd6ea53ec2f99485a11b2f8e4f2102864644b3e4f626ef7d
6
+ metadata.gz: fc55106ca899e1ce3673115ff43a860ef839297fc6b8b952155ae4d253175681a5f585de0ff34c685c33b210447e0e04365c930a4f9dcbcdad7e012349fe36ed
7
+ data.tar.gz: 2e6f16af48a40c7abc19dd9e98d241af05225b0a7424fbf1f32c55252c5565ebcda2053557a78a94dec3123e9d3cc284a151309963458e9218d566151d6315a6
data/History.rdoc CHANGED
@@ -1,3 +1,15 @@
1
+ === 13.0.5
2
+
3
+ * Fixed the regression of #388
4
+ Pull request #389 by hsbt
5
+
6
+ === 13.0.4
7
+
8
+ * Fix rake test loader swallowing useful error information.
9
+ Pull request #367 by deivid-rodriguez
10
+ * Add -C/--directory option the same as GNU make.
11
+ Pull request #376 by nobu
12
+
1
13
  === 13.0.3
2
14
 
3
15
  * Fix breaking change of execution order on TestTask.
@@ -1,5 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "rake/file_list"
4
+
3
5
  # Load the test files from the command line.
4
6
  argv = ARGV.select do |argument|
5
7
  case argument
data/lib/rake/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
  module Rake
3
- VERSION = "13.0.4"
3
+ VERSION = "13.0.5"
4
4
 
5
5
  module Version # :nodoc: all
6
6
  MAJOR, MINOR, BUILD, *OTHER = Rake::VERSION.split "."
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rake
3
3
  version: !ruby/object:Gem::Version
4
- version: 13.0.4
4
+ version: 13.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hiroshi SHIBATA
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2021-07-06 00:00:00.000000000 Z
13
+ date: 2021-07-08 00:00:00.000000000 Z
14
14
  dependencies: []
15
15
  description: |
16
16
  Rake is a Make-like program implemented in Ruby. Tasks and dependencies are
@@ -96,9 +96,9 @@ licenses:
96
96
  - MIT
97
97
  metadata:
98
98
  bug_tracker_uri: https://github.com/ruby/rake/issues
99
- changelog_uri: https://github.com/ruby/rake/blob/v13.0.4/History.rdoc
99
+ changelog_uri: https://github.com/ruby/rake/blob/v13.0.5/History.rdoc
100
100
  documentation_uri: https://ruby.github.io/rake
101
- source_code_uri: https://github.com/ruby/rake/tree/v13.0.4
101
+ source_code_uri: https://github.com/ruby/rake/tree/v13.0.5
102
102
  post_install_message:
103
103
  rdoc_options:
104
104
  - "--main"
OSZAR »