rake 13.2.0 → 13.2.1

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: d9d05e9e17d2650b5f35d5b08c11ce7d6bb42b2b240f2dd78b56ca15c0ac65ae
4
- data.tar.gz: f98de3fab3e0d9c8938a790fef63841d0bdd6b9a33e85cd7a8dc3116a0ce42bd
3
+ metadata.gz: 70e1c62235097400cab35576324e9b3fcb48b90559477aedbbef03c9815a2fff
4
+ data.tar.gz: 94599a5608579b6b1e475a96694f2474a8d0fb4ee4fd526aeb82f13188aed3f4
5
5
  SHA512:
6
- metadata.gz: f2bec8664323e358cff5cf78af40d4011e1d002639ad9e04e7ce6ef0debad26572a7db636ef26544c8901fd7975dffd2de5dcf0e2e03785319be38b292c87df9
7
- data.tar.gz: f5c5b37cdfe7965d70bb74124496b54341789d05ccf1219e42467a57a3476b6d1f29f5fb9a65b3a0f85bc8a0644d338cd7a5facf1bc81e1221886f7d40437746
6
+ metadata.gz: 1fa7156b0b9dd984ca3b08061fb62d386407584a69b9442d88c424d847a20523d68555cc9a6e59b8dea58390839e0b588f5f406097cf8670b079672ad543cba4
7
+ data.tar.gz: 56edb7f28a274c3d2ba30ad80906194a0ef44a765c8d6ee11c922e62f075ccb132e3bcebbe9d25194ce498dc83748eec85a56aa99fd7d34a20eed553bf79f8ee
@@ -10,6 +10,7 @@ module Rake
10
10
  map { |f| File.expand_path(f) }.
11
11
  reject { |s| s.nil? || s =~ /^ *$/ }
12
12
  SUPPRESSED_PATHS_RE = SUPPRESSED_PATHS.map { |f| Regexp.quote(f) }.join("|")
13
+ SUPPRESSED_PATHS_RE << "|^<internal:\\w+>"
13
14
  SUPPRESSED_PATHS_RE << "|^org\\/jruby\\/\\w+\\.java" if
14
15
  Object.const_defined?(:RUBY_ENGINE) and RUBY_ENGINE == "jruby"
15
16
 
data/lib/rake/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
  module Rake
3
- VERSION = "13.2.0"
3
+ VERSION = "13.2.1"
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.2.0
4
+ version: 13.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hiroshi SHIBATA
@@ -9,7 +9,7 @@ authors:
9
9
  - Jim Weirich
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2024-04-02 00:00:00.000000000 Z
12
+ date: 2024-04-05 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: |
15
15
  Rake is a Make-like program implemented in Ruby. Tasks and dependencies are
@@ -95,9 +95,9 @@ licenses:
95
95
  - MIT
96
96
  metadata:
97
97
  bug_tracker_uri: https://github.com/ruby/rake/issues
98
- changelog_uri: https://github.com/ruby/rake/blob/v13.2.0/History.rdoc
98
+ changelog_uri: https://github.com/ruby/rake/blob/v13.2.1/History.rdoc
99
99
  documentation_uri: https://ruby.github.io/rake
100
- source_code_uri: https://github.com/ruby/rake/tree/v13.2.0
100
+ source_code_uri: https://github.com/ruby/rake/tree/v13.2.1
101
101
  rdoc_options:
102
102
  - "--main"
103
103
  - README.rdoc
OSZAR »