build-files 1.9.0 → 1.9.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: 42755d95c3e69cdd6fb72489a512fdd2ac7accb52054f968776812d1c96f8620
4
- data.tar.gz: 6500729b61e4e4942d9d328703b992e836efb76712eb56111bbc5c75ab4e34bd
3
+ metadata.gz: abffeac84e2e1e1585743ecdc01742332ae8629865701b306b10f1987c6cae8a
4
+ data.tar.gz: 03ddfbbc237aa66d472e7cbb108e2e364c0aa95a4ee7b769abcb98c0ba8cb1e4
5
5
  SHA512:
6
- metadata.gz: 5ac7d461b0edc8cb150b50e33233cacb0bc5c288d648934e5766a01906e87124363486aaf52c4b0d6f67a596c9b816c676f7442d6ac9083959ef2dc4a61dc15a
7
- data.tar.gz: 397eae8916a14648b689a708c76b04ab4a6b7c59112e2f2a1ee5d8fc8ae12d07b2c56baa44e95b6cfce287dfc5d61a7ef571197cce5891f2071012541d7d15d7
6
+ metadata.gz: 349d26dd750a8cf993a606502703b22c55b0479ec67b127e64658ac8a44be2ea6a96d0d44bb34751f4a7d1e40659e6af4ce886960ba680b0362316bc02a10a22
7
+ data.tar.gz: c93a0c33ec66c7862201b2d386f7133eaa874e3b4b5f87f42da427c21c49cdef6bbc82ad8f642134ed140cf5fecc930ba5fc4476f33ce1d7a9e439ddcc69902f
checksums.yaml.gz.sig CHANGED
Binary file
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # Released under the MIT License.
4
- # Copyright, 2019-2023, by Samuel Williams.
4
+ # Copyright, 2019-2025, by Samuel Williams.
5
5
 
6
- require_relative 'list'
6
+ require_relative "list"
7
7
 
8
8
  module Build
9
9
  module Files
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # Released under the MIT License.
4
- # Copyright, 2019-2023, by Samuel Williams.
4
+ # Copyright, 2019-2025, by Samuel Williams.
5
5
 
6
- require_relative 'list'
6
+ require_relative "list"
7
7
 
8
8
  module Build
9
9
  module Files
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # Released under the MIT License.
4
- # Copyright, 2014-2023, by Samuel Williams.
4
+ # Copyright, 2014-2025, by Samuel Williams.
5
5
 
6
- require_relative 'list'
6
+ require_relative "list"
7
7
 
8
8
  module Build
9
9
  module Files
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # Released under the MIT License.
4
- # Copyright, 2014-2023, by Samuel Williams.
4
+ # Copyright, 2014-2025, by Samuel Williams.
5
5
 
6
- require_relative 'list'
6
+ require_relative "list"
7
7
 
8
8
  module Build
9
9
  module Files
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # Released under the MIT License.
4
- # Copyright, 2014-2023, by Samuel Williams.
4
+ # Copyright, 2014-2025, by Samuel Williams.
5
5
 
6
- require_relative 'path'
6
+ require_relative "path"
7
7
 
8
8
  module Build
9
9
  module Files
@@ -91,4 +91,4 @@ module Build
91
91
  end
92
92
  end
93
93
 
94
- require_relative 'difference'
94
+ require_relative "difference"
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # Released under the MIT License.
4
- # Copyright, 2014-2023, by Samuel Williams.
4
+ # Copyright, 2014-2025, by Samuel Williams.
5
5
 
6
6
  module Build
7
7
  module Files
@@ -14,7 +14,7 @@ module Build
14
14
  def self.split(path)
15
15
  # Effectively dirname and basename:
16
16
  dirname, separator, filename = path.rpartition(File::SEPARATOR)
17
- filename, dot, extension = filename.rpartition('.')
17
+ filename, dot, extension = filename.rpartition(".")
18
18
 
19
19
  return dirname + separator, filename, dot + extension
20
20
  end
@@ -233,7 +233,7 @@ module Build
233
233
 
234
234
  # Match a path with a given pattern, using `File#fnmatch`.
235
235
  def match(pattern, flags = 0)
236
- path = pattern.start_with?('/') ? full_path : relative_path
236
+ path = pattern.start_with?("/") ? full_path : relative_path
237
237
 
238
238
  return File.fnmatch(pattern, path, flags)
239
239
  end
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # Released under the MIT License.
4
- # Copyright, 2014-2023, by Samuel Williams.
4
+ # Copyright, 2014-2025, by Samuel Williams.
5
5
 
6
- require_relative 'list'
6
+ require_relative "list"
7
7
 
8
8
  module Build
9
9
  module Files
@@ -1,11 +1,11 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # Released under the MIT License.
4
- # Copyright, 2014-2023, by Samuel Williams.
4
+ # Copyright, 2014-2025, by Samuel Williams.
5
5
 
6
- require_relative 'list'
6
+ require_relative "list"
7
7
 
8
- require 'forwardable'
8
+ require "forwardable"
9
9
 
10
10
  module Build
11
11
  module Files
@@ -1,12 +1,12 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # Released under the MIT License.
4
- # Copyright, 2014-2023, by Samuel Williams.
4
+ # Copyright, 2014-2025, by Samuel Williams.
5
5
 
6
- require 'fileutils'
6
+ require "fileutils"
7
7
 
8
- require_relative 'path'
9
- require_relative 'list'
8
+ require_relative "path"
9
+ require_relative "list"
10
10
 
11
11
  module Build
12
12
  module Files
@@ -5,6 +5,6 @@
5
5
 
6
6
  module Build
7
7
  module Files
8
- VERSION = "1.9.0"
8
+ VERSION = "1.9.1"
9
9
  end
10
10
  end
data/lib/build/files.rb CHANGED
@@ -1,12 +1,12 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # Released under the MIT License.
4
- # Copyright, 2014-2023, by Samuel Williams.
4
+ # Copyright, 2014-2025, by Samuel Williams.
5
5
 
6
- require_relative 'files/list'
7
- require_relative 'files/composite'
8
- require_relative 'files/paths'
9
- require_relative 'files/glob'
10
- require_relative 'files/directory'
6
+ require_relative "files/list"
7
+ require_relative "files/composite"
8
+ require_relative "files/paths"
9
+ require_relative "files/glob"
10
+ require_relative "files/directory"
11
11
 
12
- require_relative 'files/system'
12
+ require_relative "files/system"
data/license.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # MIT License
2
2
 
3
- Copyright, 2014-2023, by Samuel Williams.
3
+ Copyright, 2014-2025, by Samuel Williams.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/readme.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Build::Files is a set of idiomatic classes for dealing with paths and monitoring directories. File paths are represented with both root and relative parts which makes copying directory structures intuitive.
4
4
 
5
- [![Development Status](https://github.com/ioquatix/build-files/workflows/Test/badge.svg)](https://github.com/ioquatix/build-files/actions?workflow=Test)
5
+ [![Development Status](/workflows/Test/badge.svg)](/actions?workflow=Test)
6
6
 
7
7
  ## Installation
8
8
 
@@ -43,3 +43,11 @@ We welcome contributions to this project.
43
43
  3. Commit your changes (`git commit -am 'Add some feature'`).
44
44
  4. Push to the branch (`git push origin my-new-feature`).
45
45
  5. Create new Pull Request.
46
+
47
+ ### Developer Certificate of Origin
48
+
49
+ In order to protect users of this project, we require all contributors to comply with the [Developer Certificate of Origin](https://developercertificate.org/). This ensures that all contributions are properly licensed and attributed.
50
+
51
+ ### Community Guidelines
52
+
53
+ This project is best served by a collaborative and respectful environment. Treat each other professionally, respect differing viewpoints, and engage constructively. Harassment, discrimination, or harmful behavior is not tolerated. Communicate clearly, listen actively, and support one another. If any issues arise, please inform the project maintainers.
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,11 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: build-files
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.0
4
+ version: 1.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain:
11
10
  - |
@@ -37,57 +36,12 @@ cert_chain:
37
36
  Q2K9NVun/S785AP05vKkXZEFYxqG6EW012U4oLcFl5MySFajYXRYbuUpH6AY+HP8
38
37
  voD0MPg1DssDLKwXyt1eKD/+Fq0bFWhwVM/1XiAXL7lyYUyOq24KHgQ2Csg=
39
38
  -----END CERTIFICATE-----
40
- date: 2023-06-17 00:00:00.000000000 Z
41
- dependencies:
42
- - !ruby/object:Gem::Dependency
43
- name: bundler
44
- requirement: !ruby/object:Gem::Requirement
45
- requirements:
46
- - - ">="
47
- - !ruby/object:Gem::Version
48
- version: '0'
49
- type: :development
50
- prerelease: false
51
- version_requirements: !ruby/object:Gem::Requirement
52
- requirements:
53
- - - ">="
54
- - !ruby/object:Gem::Version
55
- version: '0'
56
- - !ruby/object:Gem::Dependency
57
- name: covered
58
- requirement: !ruby/object:Gem::Requirement
59
- requirements:
60
- - - ">="
61
- - !ruby/object:Gem::Version
62
- version: '0'
63
- type: :development
64
- prerelease: false
65
- version_requirements: !ruby/object:Gem::Requirement
66
- requirements:
67
- - - ">="
68
- - !ruby/object:Gem::Version
69
- version: '0'
70
- - !ruby/object:Gem::Dependency
71
- name: sus
72
- requirement: !ruby/object:Gem::Requirement
73
- requirements:
74
- - - ">="
75
- - !ruby/object:Gem::Version
76
- version: '0'
77
- type: :development
78
- prerelease: false
79
- version_requirements: !ruby/object:Gem::Requirement
80
- requirements:
81
- - - ">="
82
- - !ruby/object:Gem::Version
83
- version: '0'
84
- description:
85
- email:
39
+ date: 2025-03-30 00:00:00.000000000 Z
40
+ dependencies: []
86
41
  executables: []
87
42
  extensions: []
88
43
  extra_rdoc_files: []
89
44
  files:
90
- - conduct.md
91
45
  - lib/build/files.rb
92
46
  - lib/build/files/composite.rb
93
47
  - lib/build/files/difference.rb
@@ -106,7 +60,7 @@ licenses:
106
60
  - MIT
107
61
  metadata:
108
62
  funding_uri: https://github.com/sponsors/ioquatix/
109
- post_install_message:
63
+ source_code_uri: https://github.com/ioquatix/build-files.git
110
64
  rdoc_options: []
111
65
  require_paths:
112
66
  - lib
@@ -114,15 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
114
68
  requirements:
115
69
  - - ">="
116
70
  - !ruby/object:Gem::Version
117
- version: '2.7'
71
+ version: '3.1'
118
72
  required_rubygems_version: !ruby/object:Gem::Requirement
119
73
  requirements:
120
74
  - - ">="
121
75
  - !ruby/object:Gem::Version
122
76
  version: '0'
123
77
  requirements: []
124
- rubygems_version: 3.4.7
125
- signing_key:
78
+ rubygems_version: 3.6.2
126
79
  specification_version: 4
127
80
  summary: Abstractions for handling and mapping paths.
128
81
  test_files: []
metadata.gz.sig CHANGED
Binary file
data/conduct.md DELETED
@@ -1,133 +0,0 @@
1
-
2
- # Contributor Covenant Code of Conduct
3
-
4
- ## Our Pledge
5
-
6
- We as members, contributors, and leaders pledge to make participation in our
7
- community a harassment-free experience for everyone, regardless of age, body
8
- size, visible or invisible disability, ethnicity, sex characteristics, gender
9
- identity and expression, level of experience, education, socio-economic status,
10
- nationality, personal appearance, race, caste, color, religion, or sexual
11
- identity and orientation.
12
-
13
- We pledge to act and interact in ways that contribute to an open, welcoming,
14
- diverse, inclusive, and healthy community.
15
-
16
- ## Our Standards
17
-
18
- Examples of behavior that contributes to a positive environment for our
19
- community include:
20
-
21
- * Demonstrating empathy and kindness toward other people
22
- * Being respectful of differing opinions, viewpoints, and experiences
23
- * Giving and gracefully accepting constructive feedback
24
- * Accepting responsibility and apologizing to those affected by our mistakes,
25
- and learning from the experience
26
- * Focusing on what is best not just for us as individuals, but for the overall
27
- community
28
-
29
- Examples of unacceptable behavior include:
30
-
31
- * The use of sexualized language or imagery, and sexual attention or advances of
32
- any kind
33
- * Trolling, insulting or derogatory comments, and personal or political attacks
34
- * Public or private harassment
35
- * Publishing others' private information, such as a physical or email address,
36
- without their explicit permission
37
- * Other conduct which could reasonably be considered inappropriate in a
38
- professional setting
39
-
40
- ## Enforcement Responsibilities
41
-
42
- Community leaders are responsible for clarifying and enforcing our standards of
43
- acceptable behavior and will take appropriate and fair corrective action in
44
- response to any behavior that they deem inappropriate, threatening, offensive,
45
- or harmful.
46
-
47
- Community leaders have the right and responsibility to remove, edit, or reject
48
- comments, commits, code, wiki edits, issues, and other contributions that are
49
- not aligned to this Code of Conduct, and will communicate reasons for moderation
50
- decisions when appropriate.
51
-
52
- ## Scope
53
-
54
- This Code of Conduct applies within all community spaces, and also applies when
55
- an individual is officially representing the community in public spaces.
56
- Examples of representing our community include using an official e-mail address,
57
- posting via an official social media account, or acting as an appointed
58
- representative at an online or offline event.
59
-
60
- ## Enforcement
61
-
62
- Instances of abusive, harassing, or otherwise unacceptable behavior may be
63
- reported to the community leaders responsible for enforcement at
64
- [INSERT CONTACT METHOD].
65
- All complaints will be reviewed and investigated promptly and fairly.
66
-
67
- All community leaders are obligated to respect the privacy and security of the
68
- reporter of any incident.
69
-
70
- ## Enforcement Guidelines
71
-
72
- Community leaders will follow these Community Impact Guidelines in determining
73
- the consequences for any action they deem in violation of this Code of Conduct:
74
-
75
- ### 1. Correction
76
-
77
- **Community Impact**: Use of inappropriate language or other behavior deemed
78
- unprofessional or unwelcome in the community.
79
-
80
- **Consequence**: A private, written warning from community leaders, providing
81
- clarity around the nature of the violation and an explanation of why the
82
- behavior was inappropriate. A public apology may be requested.
83
-
84
- ### 2. Warning
85
-
86
- **Community Impact**: A violation through a single incident or series of
87
- actions.
88
-
89
- **Consequence**: A warning with consequences for continued behavior. No
90
- interaction with the people involved, including unsolicited interaction with
91
- those enforcing the Code of Conduct, for a specified period of time. This
92
- includes avoiding interactions in community spaces as well as external channels
93
- like social media. Violating these terms may lead to a temporary or permanent
94
- ban.
95
-
96
- ### 3. Temporary Ban
97
-
98
- **Community Impact**: A serious violation of community standards, including
99
- sustained inappropriate behavior.
100
-
101
- **Consequence**: A temporary ban from any sort of interaction or public
102
- communication with the community for a specified period of time. No public or
103
- private interaction with the people involved, including unsolicited interaction
104
- with those enforcing the Code of Conduct, is allowed during this period.
105
- Violating these terms may lead to a permanent ban.
106
-
107
- ### 4. Permanent Ban
108
-
109
- **Community Impact**: Demonstrating a pattern of violation of community
110
- standards, including sustained inappropriate behavior, harassment of an
111
- individual, or aggression toward or disparagement of classes of individuals.
112
-
113
- **Consequence**: A permanent ban from any sort of public interaction within the
114
- community.
115
-
116
- ## Attribution
117
-
118
- This Code of Conduct is adapted from the [Contributor Covenant][homepage],
119
- version 2.1, available at
120
- [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
121
-
122
- Community Impact Guidelines were inspired by
123
- [Mozilla's code of conduct enforcement ladder][Mozilla CoC].
124
-
125
- For answers to common questions about this code of conduct, see the FAQ at
126
- [https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
127
- [https://www.contributor-covenant.org/translations][translations].
128
-
129
- [homepage]: https://www.contributor-covenant.org
130
- [v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
131
- [Mozilla CoC]: https://github.com/mozilla/diversity
132
- [FAQ]: https://www.contributor-covenant.org/faq
133
- [translations]: https://www.contributor-covenant.org/translations