rake 13.0.4 → 13.0.6

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: 28bba290220743d84779fafd399a03e1947823e7b2842a30dd6edee71166d5ca
4
- data.tar.gz: d0cf8c522bc622c93b79d16a36a2f9c68cec9ab0bfd9b3b599b9465f95caecc4
3
+ metadata.gz: d15ff579792b6bca336893adc15bc3de3d8c8580fcdb2b2201926df30752284d
4
+ data.tar.gz: 499353c3ebbcd6492fb8d9fdd96078bf7954c1b3ec21f1d80bac8bf1ea592ea0
5
5
  SHA512:
6
- metadata.gz: b5c11402d93c71df5f887b104825f74e4b168f25d9616e4a2ff25abed4b87e0b586bf33b43735f2b25fb6fef69e2b16af0c0594127734aae3042e88a74c1856f
7
- data.tar.gz: 8b04e7de538e94e4ccaaaa55edd0042498529368c72c1b9953b5bfc3d916cd3fa28a60518e952f88cd6ea53ec2f99485a11b2f8e4f2102864644b3e4f626ef7d
6
+ metadata.gz: 664fa6daddc629e8bb6fd1863a765e8a7d7f2eda234ab423800dc810fe9bded3d4622e19f633e4307d322cd14adfb0c197de04394df1a0a6fa0b86fc702a7d93
7
+ data.tar.gz: 7f0f7208745a41dacf9959b2a4ee063deeee549d0d2e90904c47d3e84feb976e65fcc4e33f943eefdfa0ec0334e83b63ad280be0ff3926aff471a9c0b25acef9
data/History.rdoc CHANGED
@@ -1,3 +1,20 @@
1
+ === 13.0.6
2
+
3
+ * Additional fix for #389
4
+ Pull request #390 by hsbt
5
+
6
+ === 13.0.5
7
+
8
+ * Fixed the regression of #388
9
+ Pull request #389 by hsbt
10
+
11
+ === 13.0.4
12
+
13
+ * Fix rake test loader swallowing useful error information.
14
+ Pull request #367 by deivid-rodriguez
15
+ * Add -C/--directory option the same as GNU make.
16
+ Pull request #376 by nobu
17
+
1
18
  === 13.0.3
2
19
 
3
20
  * Fix breaking change of execution order on TestTask.
@@ -1,12 +1,14 @@
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
6
8
  when /^-/ then
7
9
  argument
8
10
  when /\*/ then
9
- FileList[argument].to_a.each do |file|
11
+ Rake::FileList[argument].to_a.each do |file|
10
12
  require File.expand_path file
11
13
  end
12
14
 
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.6"
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.6
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-09 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.6/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.6
102
102
  post_install_message:
103
103
  rdoc_options:
104
104
  - "--main"