build 2.6.2 → 2.8.0
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/context/getting-started.md +70 -0
- data/context/index.yaml +13 -0
- data/lib/build/build_node.rb +63 -31
- data/lib/build/chain_node.rb +16 -26
- data/lib/build/controller.rb +26 -36
- data/lib/build/dependency_node.rb +28 -22
- data/lib/build/name.rb +15 -24
- data/lib/build/provision_node.rb +28 -21
- data/lib/build/rule.rb +60 -23
- data/lib/build/rule_node.rb +16 -20
- data/lib/build/rulebook.rb +22 -22
- data/lib/build/task.rb +16 -25
- data/lib/build/version.rb +6 -20
- data/lib/build.rb +5 -20
- data/license.md +21 -0
- data/readme.md +53 -0
- data/releases.md +5 -0
- data.tar.gz.sig +0 -0
- metadata +13 -96
- metadata.gz.sig +0 -0
- data/lib/build/graphviz.rb +0 -49
data/lib/build.rb
CHANGED
|
@@ -1,21 +1,6 @@
|
|
|
1
|
-
#
|
|
2
|
-
#
|
|
3
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
-
# of this software and associated documentation files (the "Software"), to deal
|
|
5
|
-
# in the Software without restriction, including without limitation the rights
|
|
6
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
-
# copies of the Software, and to permit persons to whom the Software is
|
|
8
|
-
# furnished to do so, subject to the following conditions:
|
|
9
|
-
#
|
|
10
|
-
# The above copyright notice and this permission notice shall be included in
|
|
11
|
-
# all copies or substantial portions of the Software.
|
|
12
|
-
#
|
|
13
|
-
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
19
|
-
# THE SOFTWARE.
|
|
1
|
+
# frozen_string_literal: true
|
|
20
2
|
|
|
21
|
-
|
|
3
|
+
# Released under the MIT License.
|
|
4
|
+
# Copyright, 2015-2026, by Samuel Williams.
|
|
5
|
+
|
|
6
|
+
require_relative "build/version"
|
data/license.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# MIT License
|
|
2
|
+
|
|
3
|
+
Copyright, 2015-2026, by Samuel Williams.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
data/readme.md
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# Build
|
|
2
|
+
|
|
3
|
+
Build is a ruby gem providing systems for building task driven build systems similar to make.
|
|
4
|
+
|
|
5
|
+
[](https://github.com/ioquatix/build/actions?workflow=Test)
|
|
6
|
+
|
|
7
|
+
## Usage
|
|
8
|
+
|
|
9
|
+
Please see the [project documentation](https://ioquatix.github.io/build/) for more details.
|
|
10
|
+
|
|
11
|
+
- [Getting Started](https://ioquatix.github.io/build/guides/getting-started/index) - This guide explains how to get started with `build`, a task-driven build system similar to make.
|
|
12
|
+
|
|
13
|
+
## Releases
|
|
14
|
+
|
|
15
|
+
Please see the [project releases](https://ioquatix.github.io/build/releases/index) for all releases.
|
|
16
|
+
|
|
17
|
+
### v2.7.0
|
|
18
|
+
|
|
19
|
+
- Remove logger dependency and options.
|
|
20
|
+
|
|
21
|
+
## Contributing
|
|
22
|
+
|
|
23
|
+
We welcome contributions to this project.
|
|
24
|
+
|
|
25
|
+
1. Fork it.
|
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`).
|
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`).
|
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`).
|
|
29
|
+
5. Create new Pull Request.
|
|
30
|
+
|
|
31
|
+
### Running Tests
|
|
32
|
+
|
|
33
|
+
To run the test suite:
|
|
34
|
+
|
|
35
|
+
``` shell
|
|
36
|
+
bundle exec sus
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### Making Releases
|
|
40
|
+
|
|
41
|
+
To make a new release:
|
|
42
|
+
|
|
43
|
+
``` shell
|
|
44
|
+
bundle exec bake gem:release:patch # or minor or major
|
|
45
|
+
```
|
|
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/releases.md
ADDED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: build
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.8.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Samuel Williams
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain:
|
|
11
10
|
- |
|
|
@@ -37,7 +36,7 @@ cert_chain:
|
|
|
37
36
|
Q2K9NVun/S785AP05vKkXZEFYxqG6EW012U4oLcFl5MySFajYXRYbuUpH6AY+HP8
|
|
38
37
|
voD0MPg1DssDLKwXyt1eKD/+Fq0bFWhwVM/1XiAXL7lyYUyOq24KHgQ2Csg=
|
|
39
38
|
-----END CERTIFICATE-----
|
|
40
|
-
date:
|
|
39
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
41
40
|
dependencies:
|
|
42
41
|
- !ruby/object:Gem::Dependency
|
|
43
42
|
name: build-dependency
|
|
@@ -95,102 +94,17 @@ dependencies:
|
|
|
95
94
|
- - "~>"
|
|
96
95
|
- !ruby/object:Gem::Version
|
|
97
96
|
version: '1.0'
|
|
98
|
-
- !ruby/object:Gem::Dependency
|
|
99
|
-
name: console
|
|
100
|
-
requirement: !ruby/object:Gem::Requirement
|
|
101
|
-
requirements:
|
|
102
|
-
- - "~>"
|
|
103
|
-
- !ruby/object:Gem::Version
|
|
104
|
-
version: '1.0'
|
|
105
|
-
type: :runtime
|
|
106
|
-
prerelease: false
|
|
107
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
108
|
-
requirements:
|
|
109
|
-
- - "~>"
|
|
110
|
-
- !ruby/object:Gem::Version
|
|
111
|
-
version: '1.0'
|
|
112
|
-
- !ruby/object:Gem::Dependency
|
|
113
|
-
name: graphviz
|
|
114
|
-
requirement: !ruby/object:Gem::Requirement
|
|
115
|
-
requirements:
|
|
116
|
-
- - "~>"
|
|
117
|
-
- !ruby/object:Gem::Version
|
|
118
|
-
version: '1.0'
|
|
119
|
-
type: :runtime
|
|
120
|
-
prerelease: false
|
|
121
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
122
|
-
requirements:
|
|
123
|
-
- - "~>"
|
|
124
|
-
- !ruby/object:Gem::Version
|
|
125
|
-
version: '1.0'
|
|
126
|
-
- !ruby/object:Gem::Dependency
|
|
127
|
-
name: bundler
|
|
128
|
-
requirement: !ruby/object:Gem::Requirement
|
|
129
|
-
requirements:
|
|
130
|
-
- - ">="
|
|
131
|
-
- !ruby/object:Gem::Version
|
|
132
|
-
version: '0'
|
|
133
|
-
type: :development
|
|
134
|
-
prerelease: false
|
|
135
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
136
|
-
requirements:
|
|
137
|
-
- - ">="
|
|
138
|
-
- !ruby/object:Gem::Version
|
|
139
|
-
version: '0'
|
|
140
|
-
- !ruby/object:Gem::Dependency
|
|
141
|
-
name: covered
|
|
142
|
-
requirement: !ruby/object:Gem::Requirement
|
|
143
|
-
requirements:
|
|
144
|
-
- - ">="
|
|
145
|
-
- !ruby/object:Gem::Version
|
|
146
|
-
version: '0'
|
|
147
|
-
type: :development
|
|
148
|
-
prerelease: false
|
|
149
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
150
|
-
requirements:
|
|
151
|
-
- - ">="
|
|
152
|
-
- !ruby/object:Gem::Version
|
|
153
|
-
version: '0'
|
|
154
|
-
- !ruby/object:Gem::Dependency
|
|
155
|
-
name: rake
|
|
156
|
-
requirement: !ruby/object:Gem::Requirement
|
|
157
|
-
requirements:
|
|
158
|
-
- - ">="
|
|
159
|
-
- !ruby/object:Gem::Version
|
|
160
|
-
version: '0'
|
|
161
|
-
type: :development
|
|
162
|
-
prerelease: false
|
|
163
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
164
|
-
requirements:
|
|
165
|
-
- - ">="
|
|
166
|
-
- !ruby/object:Gem::Version
|
|
167
|
-
version: '0'
|
|
168
|
-
- !ruby/object:Gem::Dependency
|
|
169
|
-
name: rspec
|
|
170
|
-
requirement: !ruby/object:Gem::Requirement
|
|
171
|
-
requirements:
|
|
172
|
-
- - "~>"
|
|
173
|
-
- !ruby/object:Gem::Version
|
|
174
|
-
version: '3.6'
|
|
175
|
-
type: :development
|
|
176
|
-
prerelease: false
|
|
177
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
178
|
-
requirements:
|
|
179
|
-
- - "~>"
|
|
180
|
-
- !ruby/object:Gem::Version
|
|
181
|
-
version: '3.6'
|
|
182
|
-
description:
|
|
183
|
-
email:
|
|
184
97
|
executables: []
|
|
185
98
|
extensions: []
|
|
186
99
|
extra_rdoc_files: []
|
|
187
100
|
files:
|
|
101
|
+
- context/getting-started.md
|
|
102
|
+
- context/index.yaml
|
|
188
103
|
- lib/build.rb
|
|
189
104
|
- lib/build/build_node.rb
|
|
190
105
|
- lib/build/chain_node.rb
|
|
191
106
|
- lib/build/controller.rb
|
|
192
107
|
- lib/build/dependency_node.rb
|
|
193
|
-
- lib/build/graphviz.rb
|
|
194
108
|
- lib/build/name.rb
|
|
195
109
|
- lib/build/provision_node.rb
|
|
196
110
|
- lib/build/rule.rb
|
|
@@ -198,11 +112,15 @@ files:
|
|
|
198
112
|
- lib/build/rulebook.rb
|
|
199
113
|
- lib/build/task.rb
|
|
200
114
|
- lib/build/version.rb
|
|
201
|
-
|
|
115
|
+
- license.md
|
|
116
|
+
- readme.md
|
|
117
|
+
- releases.md
|
|
202
118
|
licenses:
|
|
203
119
|
- MIT
|
|
204
|
-
metadata:
|
|
205
|
-
|
|
120
|
+
metadata:
|
|
121
|
+
documentation_uri: https://ioquatix.github.io/build/
|
|
122
|
+
source_code_uri: https://github.com/kurocha/build.git
|
|
123
|
+
funding_uri: https://github.com/sponsors/ioquatix
|
|
206
124
|
rdoc_options: []
|
|
207
125
|
require_paths:
|
|
208
126
|
- lib
|
|
@@ -210,15 +128,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
210
128
|
requirements:
|
|
211
129
|
- - ">="
|
|
212
130
|
- !ruby/object:Gem::Version
|
|
213
|
-
version: '
|
|
131
|
+
version: '3.3'
|
|
214
132
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
215
133
|
requirements:
|
|
216
134
|
- - ">="
|
|
217
135
|
- !ruby/object:Gem::Version
|
|
218
136
|
version: '0'
|
|
219
137
|
requirements: []
|
|
220
|
-
rubygems_version:
|
|
221
|
-
signing_key:
|
|
138
|
+
rubygems_version: 4.0.6
|
|
222
139
|
specification_version: 4
|
|
223
140
|
summary: Build is a framework for creating task based build systems.
|
|
224
141
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|
data/lib/build/graphviz.rb
DELETED
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
# Copyright, 2015, by Samuel G. D. Williams. <http://www.codeotaku.com>
|
|
2
|
-
#
|
|
3
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
-
# of this software and associated documentation files (the "Software"), to deal
|
|
5
|
-
# in the Software without restriction, including without limitation the rights
|
|
6
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
-
# copies of the Software, and to permit persons to whom the Software is
|
|
8
|
-
# furnished to do so, subject to the following conditions:
|
|
9
|
-
#
|
|
10
|
-
# The above copyright notice and this permission notice shall be included in
|
|
11
|
-
# all copies or substantial portions of the Software.
|
|
12
|
-
#
|
|
13
|
-
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
19
|
-
# THE SOFTWARE.
|
|
20
|
-
|
|
21
|
-
module Build
|
|
22
|
-
def self.graph_visualisation(walker)
|
|
23
|
-
viz = Graphviz::Graph.new('G', rankdir: "LR")
|
|
24
|
-
|
|
25
|
-
walker.tasks.each do |node, task|
|
|
26
|
-
input_nodes = []
|
|
27
|
-
output_nodes = []
|
|
28
|
-
|
|
29
|
-
task.inputs.each do |path|
|
|
30
|
-
input_nodes << viz.add_node(path.basename)
|
|
31
|
-
end
|
|
32
|
-
|
|
33
|
-
task.outputs.each do |path|
|
|
34
|
-
output_nodes << viz.add_node(path.basename)
|
|
35
|
-
end
|
|
36
|
-
|
|
37
|
-
if output_nodes.size == 1
|
|
38
|
-
input_nodes.each do |input_node|
|
|
39
|
-
edge = input_node.connect(output_nodes.first)
|
|
40
|
-
edge.attributes[:label] = node.title
|
|
41
|
-
end
|
|
42
|
-
end
|
|
43
|
-
end
|
|
44
|
-
|
|
45
|
-
return viz
|
|
46
|
-
#Graphviz::output(viz, path: ENV['BUILD_GRAPH_PDF']) rescue nil
|
|
47
|
-
#`dot -Tpdf graph.dot > graph.pdf && open graph.pdf`
|
|
48
|
-
end
|
|
49
|
-
end
|