build-files 1.10.0 → 1.10.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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/lib/build/files/composite.rb +2 -2
- data/lib/build/files/version.rb +1 -1
- data/license.md +1 -1
- data.tar.gz.sig +0 -0
- metadata +2 -2
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5126ec6b983fad263c164f023f3a8ab438a4251bf3655f6e79535b8a69b0f50c
|
|
4
|
+
data.tar.gz: b6d721b39f94878737f239df727311222307f27d1ae9639e9a75c50a9fcd6427
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e4035f2798e8db7cb968a450ca295ef7248e5665f122eaec90e6f20f5aaaa61f748d71c703b16184f2575c2040d973e924d6f21bd8fc484f9cbbb3963e7a5e5
|
|
7
|
+
data.tar.gz: 5998bbbead5af605ef4424c46aa126629c2dfbb74a12052362b05d1167b2aaaa2e2ed93a5d06b96f7e5eee942fccb717b6194d2ac9a7159665a74196cc39ded1
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
# Released under the MIT License.
|
|
4
|
-
# Copyright, 2019-
|
|
4
|
+
# Copyright, 2019-2026, by Samuel Williams.
|
|
5
5
|
|
|
6
6
|
require_relative "list"
|
|
7
7
|
|
|
@@ -84,7 +84,7 @@ module Build
|
|
|
84
84
|
# @parameter path [Path] The path to check.
|
|
85
85
|
# @returns [Boolean] True if any list in the composite includes the path.
|
|
86
86
|
def include?(path)
|
|
87
|
-
@files.any?
|
|
87
|
+
@files.any?{|list| list.include?(path)}
|
|
88
88
|
end
|
|
89
89
|
|
|
90
90
|
# Rebase all lists in the composite to a new root.
|
data/lib/build/files/version.rb
CHANGED
data/license.md
CHANGED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: build-files
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.10.
|
|
4
|
+
version: 1.10.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Samuel Williams
|
|
@@ -76,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
76
76
|
- !ruby/object:Gem::Version
|
|
77
77
|
version: '0'
|
|
78
78
|
requirements: []
|
|
79
|
-
rubygems_version:
|
|
79
|
+
rubygems_version: 4.0.3
|
|
80
80
|
specification_version: 4
|
|
81
81
|
summary: Abstractions for handling and mapping paths.
|
|
82
82
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|