revtree 0.1.4 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +21 -0
- data/README.md +25 -16
- data/lib/revtree.rb +116 -81
- metadata +64 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cc7b5cf0416bfbfdfe66de36943d1fb9b9d866fec59ae7a7c0152f89f9c80fb9
|
4
|
+
data.tar.gz: '08056862422f098ba1668c7add8a0dc926c4ec3ff0a460e5a8360c3449dd51b9'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c0745986e75a5f42983bc3ebb4a4425107cb7925487e993c120cf9170ec498d49fb75206970cb5ce673ad368715fbdc9a4e4e2ea08893264736b3db3bddf822b
|
7
|
+
data.tar.gz: cb2d55e799e36c53e5c55542d58790954c97a3a60271a58a8b6db1ec39f8cfe2783d8558ce3a7dbc573e7593acaaeb931e6edefbd4cb271f8c907ff81149b294
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2024 Julian Kahlert
|
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
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# RevTree
|
2
|
-
|
2
|
+
|
3
|
+
[![GitHub commit activity](https://img.shields.io/github/commit-activity/t/juliankahlert/revtree)](https://github.com/juliankahlert/revtree/commits/)
|
4
|
+
[![GitHub Tag](https://img.shields.io/github/v/tag/juliankahlert/revtree)](https://github.com/juliankahlert/revtree)
|
5
|
+
[![Gem Version](https://img.shields.io/gem/v/revtree)](https://rubygems.org/gems/revtree)
|
6
|
+
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/ac169e80b46b4d78a1a3e8e15be24c2f)](https://app.codacy.com/gh/juliankahlert/revtree/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
|
7
|
+
[![Codacy Badge](https://app.codacy.com/project/badge/Coverage/ac169e80b46b4d78a1a3e8e15be24c2f)](https://app.codacy.com/gh/juliankahlert/revtree/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_coverage)
|
3
8
|
|
4
9
|
## Introduction
|
5
10
|
|
@@ -21,16 +26,19 @@ It also provides methods to print and serialize the tree structure, as well as t
|
|
21
26
|
## Install
|
22
27
|
|
23
28
|
The supported tools are:
|
29
|
+
|
24
30
|
- gitpack
|
25
31
|
- make
|
26
32
|
- gem
|
27
33
|
|
28
34
|
### gitpack
|
35
|
+
|
29
36
|
```sh
|
30
37
|
gitpack add juliankahlert/revtree
|
31
38
|
```
|
32
39
|
|
33
40
|
### make
|
41
|
+
|
34
42
|
```sh
|
35
43
|
git clone https://github.com/juliankahlert/revtree.git
|
36
44
|
cd revtree
|
@@ -38,11 +46,12 @@ sudo make install
|
|
38
46
|
```
|
39
47
|
|
40
48
|
### gem (local)
|
49
|
+
|
41
50
|
```sh
|
42
51
|
git clone https://github.com/juliankahlert/revtree.git
|
43
52
|
cd revtree
|
44
53
|
gem build revtree.gemspec
|
45
|
-
sudo gem install --local revtree-0.1.
|
54
|
+
sudo gem install --local revtree-0.1.6.gem
|
46
55
|
```
|
47
56
|
|
48
57
|
## API Documentation
|
@@ -50,52 +59,52 @@ sudo gem install --local revtree-0.1.4.gem
|
|
50
59
|
### `RevTree.new(path, whitelist = nil)`
|
51
60
|
|
52
61
|
- **Parameters**:
|
53
|
-
- `path` (String): The path to the file or directory.
|
54
|
-
- `whitelist` (Array<String
|
62
|
+
- `path` (`String`): The path to the file or directory.
|
63
|
+
- `whitelist` (`Array<String>`): List of patterns to include in the tree.
|
55
64
|
|
56
65
|
### `#print_tree(indent = 0)`
|
57
66
|
|
58
67
|
- **Parameters**:
|
59
|
-
- `indent` (Integer): Number of spaces to indent each level of the tree.
|
68
|
+
- `indent` (`Integer`): Number of spaces to indent each level of the tree.
|
60
69
|
|
61
70
|
### `#to_h`
|
62
71
|
|
63
|
-
- **Returns**: A Hash representation of the RevTree object.
|
72
|
+
- **Returns**: A `Hash` representation of the `RevTree` object.
|
64
73
|
|
65
74
|
### `#to_json`
|
66
75
|
|
67
|
-
- **Returns**: A JSON representation of the RevTree object.
|
76
|
+
- **Returns**: A `JSON` representation of the `RevTree` object.
|
68
77
|
|
69
78
|
### `#for_each(status_whitelist, &block)`
|
70
79
|
|
71
80
|
- **Parameters**:
|
72
|
-
- `status_whitelist` (Array<Symbol
|
73
|
-
- `&block` (Proc): A block to execute for each file matching the given statuses.
|
81
|
+
- `status_whitelist` (`Array<Symbol>`): List of statuses to include (e.g., `[:added, :removed]`).
|
82
|
+
- `&block` (`Proc`): A block to execute for each file matching the given statuses.
|
74
83
|
- **Behavior**: Iterates over files in the tree, executing the block for each file whose status matches one of the statuses in the whitelist.
|
75
84
|
|
76
85
|
### `#watch(status_whitelist = [:modified, :added, :removed], &block)`
|
77
86
|
|
78
87
|
- **Parameters**:
|
79
|
-
- `status_whitelist` (Array<Symbol
|
80
|
-
- `&block` (Proc): A block to execute when a file matching the given statuses is changed.
|
88
|
+
- `status_whitelist` (`Array<Symbol>`): List of statuses to watch (e.g., `[:added, :removed]`).
|
89
|
+
- `&block` (`Proc`): A block to execute when a file matching the given statuses is changed.
|
81
90
|
|
82
91
|
### `#with_interval(interval)`
|
83
92
|
|
84
93
|
- **Parameters**:
|
85
|
-
- `interval` (Integer): Interval (in seconds) between checks for changes.
|
94
|
+
- `interval` (`Integer`): Interval (in seconds) between checks for changes.
|
86
95
|
- **Returns**: The `RevTree` instance, enabling method chaining.
|
87
96
|
|
88
97
|
### `RevTree.from_h(h)`
|
89
98
|
|
90
99
|
- **Parameters**:
|
91
|
-
- `h` (Hash): A
|
92
|
-
- **Returns**: A RevTree object.
|
100
|
+
- `h` (`Hash`): A `Hash` representation of a `RevTree` object.
|
101
|
+
- **Returns**: A `RevTree` object.
|
93
102
|
|
94
103
|
### `RevTree.from_json(json_str)`
|
95
104
|
|
96
105
|
- **Parameters**:
|
97
|
-
- `json_str` (String): A JSON string representing a RevTree object.
|
98
|
-
- **Returns**: A RevTree object.
|
106
|
+
- `json_str` (`String`): A `JSON` string representing a `RevTree` object.
|
107
|
+
- **Returns**: A `RevTree` object.
|
99
108
|
|
100
109
|
## Example Usage
|
101
110
|
|
data/lib/revtree.rb
CHANGED
@@ -51,11 +51,15 @@ class RevTree
|
|
51
51
|
#
|
52
52
|
# @param path [String, Pathname] the path to the file or directory
|
53
53
|
# @param whitelist [Array<String>, nil] a list of file patterns to include (optional)
|
54
|
-
def initialize(path, whitelist =
|
54
|
+
def initialize(path, whitelist = ['*'])
|
55
55
|
@path = Pathname.new(path)
|
56
56
|
@name = @path.basename.to_s
|
57
|
-
@whitelist = whitelist
|
57
|
+
@whitelist = whitelist
|
58
58
|
@status = :unmodified
|
59
|
+
@type = :folder
|
60
|
+
@children = []
|
61
|
+
@interval = 5
|
62
|
+
@rev = ''
|
59
63
|
|
60
64
|
if @path.directory?
|
61
65
|
init_dir
|
@@ -69,8 +73,8 @@ class RevTree
|
|
69
73
|
# @param indent [Integer] the indentation level (default: 0)
|
70
74
|
# @return [void]
|
71
75
|
def print_tree(indent = 0)
|
72
|
-
|
73
|
-
puts "#{
|
76
|
+
indent_prefix = ' ' * indent
|
77
|
+
puts "#{indent_prefix}#{type_to_str()} #{@name} (rev: #{@rev}) #{status_to_str()}"
|
74
78
|
@children.each { |child| child.print_tree(indent + 1) }
|
75
79
|
end
|
76
80
|
|
@@ -96,10 +100,12 @@ class RevTree
|
|
96
100
|
|
97
101
|
# Reconstructs a `RevTree` object from a hash.
|
98
102
|
#
|
99
|
-
# @param
|
103
|
+
# @param hash [Hash] the hash to deserialize
|
100
104
|
# @return [RevTree] the reconstructed `RevTree` object
|
101
|
-
def self.from_h(
|
102
|
-
|
105
|
+
def self.from_h(hash)
|
106
|
+
hash[:status] = hash[:status].to_sym
|
107
|
+
hash[:type] = hash[:type].to_sym
|
108
|
+
new_tree(hash)
|
103
109
|
end
|
104
110
|
|
105
111
|
# Reconstructs a `RevTree` object from a JSON string.
|
@@ -138,23 +144,12 @@ class RevTree
|
|
138
144
|
# @return [void]
|
139
145
|
def watch(status_whitelist = [:modified, :added, :removed], &block)
|
140
146
|
current_tree = self
|
141
|
-
|
147
|
+
setup_traps
|
142
148
|
|
143
|
-
Signal.trap('INT') { exit }
|
144
|
-
Signal.trap('TERM') { exit }
|
145
149
|
loop do
|
146
150
|
sleep @interval
|
147
151
|
|
148
|
-
|
149
|
-
diff_tree = RevTree.compare(current_tree, new_tree)
|
150
|
-
|
151
|
-
next if diff_tree.nil?
|
152
|
-
|
153
|
-
diff_tree.for_each(status_whitelist) do |node, full_path|
|
154
|
-
block.call(node, full_path)
|
155
|
-
end
|
156
|
-
|
157
|
-
current_tree = new_tree
|
152
|
+
current_tree = refresh_tree(current_tree, status_whitelist, block)
|
158
153
|
end
|
159
154
|
end
|
160
155
|
|
@@ -169,6 +164,45 @@ class RevTree
|
|
169
164
|
|
170
165
|
private
|
171
166
|
|
167
|
+
# Refreshes the tree by comparing the current tree with a new version and executing a block
|
168
|
+
# for each file that matches the given statuses.
|
169
|
+
#
|
170
|
+
# @param current_tree [RevTree] the current RevTree instance
|
171
|
+
# @param status_whitelist [Array<Symbol>] the list of statuses to match (e.g., :added, :modified, :removed)
|
172
|
+
# @param block [Proc] the block to execute for each file matching the statuses
|
173
|
+
# @return [RevTree] the updated RevTree with changes
|
174
|
+
def refresh_tree(current_tree, status_whitelist, block)
|
175
|
+
new_tree = RevTree.new(@path, @whitelist)
|
176
|
+
diff_tree = RevTree.compare(current_tree, new_tree)
|
177
|
+
return current_tree unless diff_tree
|
178
|
+
|
179
|
+
diff_tree.for_each(status_whitelist, &block)
|
180
|
+
|
181
|
+
new_tree
|
182
|
+
end
|
183
|
+
|
184
|
+
# Setup traps.
|
185
|
+
#
|
186
|
+
# @return [void]
|
187
|
+
def setup_traps
|
188
|
+
Signal.trap('INT') { exit }
|
189
|
+
Signal.trap('TERM') { exit }
|
190
|
+
end
|
191
|
+
|
192
|
+
# Stringify the type for pretty-printing.
|
193
|
+
#
|
194
|
+
# @return [String] the type string
|
195
|
+
def type_to_str
|
196
|
+
@type == :folder ? '[Folder]' : '[File]'
|
197
|
+
end
|
198
|
+
|
199
|
+
# Stringify the status for pretty-printing.
|
200
|
+
#
|
201
|
+
# @return [String] the status string
|
202
|
+
def status_to_str
|
203
|
+
@status ? "(status: #{@status})" : ''
|
204
|
+
end
|
205
|
+
|
172
206
|
# Calculates the MD5 hash for the file.
|
173
207
|
#
|
174
208
|
# @return [String] the MD5 hash of the file
|
@@ -187,10 +221,9 @@ class RevTree
|
|
187
221
|
#
|
188
222
|
# @return [void]
|
189
223
|
def init_dir
|
190
|
-
@type = :folder
|
191
224
|
@children = @path.children
|
192
|
-
.select { |
|
193
|
-
.map { |
|
225
|
+
.select { |child| include_in_tree?(child) }
|
226
|
+
.map { |child| RevTree.new(child, @whitelist) }
|
194
227
|
@rev = calculate_directory_rev
|
195
228
|
end
|
196
229
|
|
@@ -199,43 +232,61 @@ class RevTree
|
|
199
232
|
# @return [void]
|
200
233
|
def init_file
|
201
234
|
@type = :file
|
202
|
-
@children = []
|
203
235
|
@rev = calculate_file_rev
|
204
236
|
end
|
205
237
|
|
238
|
+
# Apply attributes from a `Hash` to a `RevTree`.
|
239
|
+
#
|
240
|
+
# @param revtree [RevTree] the tree node to be modified
|
241
|
+
# @param attr_hash [Hash] the hash containing the attributes
|
242
|
+
# @return [void]
|
243
|
+
def self.apply_attributes(revtree, attr_hash)
|
244
|
+
revtree.instance_variable_set(:@name, attr_hash[:name])
|
245
|
+
revtree.instance_variable_set(:@type, attr_hash[:type])
|
246
|
+
revtree.instance_variable_set(:@rev, attr_hash[:rev])
|
247
|
+
revtree.instance_variable_set(:@status, attr_hash[:status])
|
248
|
+
revtree.instance_variable_set(:@children, attr_hash[:children])
|
249
|
+
end
|
250
|
+
|
251
|
+
# Recurse into child nodes to deserialize `RevTree`.
|
252
|
+
#
|
253
|
+
# @param hash [Hash] the hash to deserialize
|
254
|
+
# @return [void]
|
255
|
+
def self.new_tree_recurse_children(hash)
|
256
|
+
children = hash[:children] || []
|
257
|
+
hash[:children] = children.map { |child| from_h(child) }
|
258
|
+
end
|
259
|
+
|
206
260
|
# Rebuilds a `RevTree` from its serialized components.
|
207
261
|
#
|
208
|
-
# @param
|
209
|
-
# @param type [Symbol] the type of the node (:folder or :file)
|
210
|
-
# @param rev [String] the revision hash of the node
|
211
|
-
# @param children [Array<Hash>] the child nodes (if any)
|
212
|
-
# @param status [Symbol] the status of the node (:unmodified, :modified, etc.)
|
262
|
+
# @param hash [Hash] the hash to deserialize
|
213
263
|
# @return [RevTree] the reconstructed tree
|
214
|
-
def self.new_tree(
|
264
|
+
def self.new_tree(hash)
|
215
265
|
tree = allocate
|
216
|
-
|
217
|
-
tree
|
218
|
-
tree.instance_variable_set(:@rev, rev)
|
219
|
-
tree.instance_variable_set(:@status, status.to_sym)
|
220
|
-
if type == :folder && children
|
221
|
-
tree.instance_variable_set(:@children, children.map { |c| from_h(c) })
|
222
|
-
else
|
223
|
-
tree.instance_variable_set(:@children, [])
|
224
|
-
end
|
266
|
+
new_tree_recurse_children(hash)
|
267
|
+
apply_attributes(tree, hash)
|
225
268
|
tree
|
226
269
|
end
|
227
270
|
|
271
|
+
# Determines whether a path is a dot directory.
|
272
|
+
#
|
273
|
+
# @param path [Pathname] the path to the file or directory
|
274
|
+
# @return [Boolean] `true` if path is a dot directory, `false` otherwise
|
275
|
+
def self.path_is_dot_dir?(path)
|
276
|
+
path.directory? && path.basename.to_s.start_with?('.')
|
277
|
+
end
|
278
|
+
|
228
279
|
# Determines whether a file or directory should be included in the tree.
|
229
280
|
#
|
230
281
|
# @param path [Pathname] the path to the file or directory
|
231
282
|
# @return [Boolean] `true` if the path should be included, `false` otherwise
|
232
283
|
def include_in_tree?(path)
|
233
|
-
return false if
|
284
|
+
return false if RevTree.path_is_dot_dir?(path)
|
234
285
|
|
235
286
|
return true if path.directory?
|
236
287
|
return true if @whitelist.empty?
|
237
288
|
|
238
|
-
@whitelist.any? { |
|
289
|
+
@whitelist.any? { |pattern| File.fnmatch?(pattern, path.basename.to_s) }
|
239
290
|
end
|
240
291
|
|
241
292
|
# Compares two `RevTree` nodes (old and new) and returns a tree with appropriate status.
|
@@ -244,16 +295,13 @@ class RevTree
|
|
244
295
|
# @param new [RevTree, nil] the new version of the tree
|
245
296
|
# @return [RevTree, nil] the resulting tree with status updates or `nil`
|
246
297
|
def self.compare(old, new)
|
247
|
-
return nil
|
298
|
+
return nil unless old || new
|
248
299
|
|
249
|
-
return handle_addition(new)
|
250
|
-
return handle_removal(old)
|
300
|
+
return handle_addition(new) unless old
|
301
|
+
return handle_removal(old) unless new
|
251
302
|
|
252
|
-
|
253
|
-
|
254
|
-
else
|
255
|
-
return handle_unmodified(old, new)
|
256
|
-
end
|
303
|
+
status = old.rev != new.rev ? :modified : :unmodified
|
304
|
+
handle_modification(old, new, status)
|
257
305
|
end
|
258
306
|
|
259
307
|
# Handles the addition of a new node.
|
@@ -280,13 +328,14 @@ class RevTree
|
|
280
328
|
#
|
281
329
|
# @param old [RevTree] the old node
|
282
330
|
# @param new [RevTree] the new node
|
331
|
+
# @param status [Symbol] the status to apply (:modified or :unmodified)
|
283
332
|
# @return [RevTree] the node with the status set to `:modified`
|
284
|
-
def self.handle_modification(old, new)
|
333
|
+
def self.handle_modification(old, new, status)
|
285
334
|
if old.type == :folder && new.type == :folder
|
286
|
-
compare_folders(old, new,
|
335
|
+
compare_folders(old, new, status)
|
287
336
|
else
|
288
337
|
with_status = new.dup
|
289
|
-
with_status.instance_variable_set(:@status,
|
338
|
+
with_status.instance_variable_set(:@status, status)
|
290
339
|
with_status
|
291
340
|
end
|
292
341
|
end
|
@@ -300,7 +349,9 @@ class RevTree
|
|
300
349
|
def self.compare_folders(old, new, status)
|
301
350
|
combined_children = merge_children(old.children, new.children)
|
302
351
|
with_status = new.dup
|
303
|
-
merged = combined_children.map
|
352
|
+
merged = combined_children.map do |old_child, new_child|
|
353
|
+
compare(old_child, new_child)
|
354
|
+
end
|
304
355
|
|
305
356
|
folder_status = merged.any? { |child| child.status == :modified } ? :modified : status
|
306
357
|
|
@@ -309,33 +360,20 @@ class RevTree
|
|
309
360
|
with_status
|
310
361
|
end
|
311
362
|
|
312
|
-
# Handles the unmodified status of a node.
|
313
|
-
#
|
314
|
-
# @param old [RevTree] the old node
|
315
|
-
# @param new [RevTree] the new node
|
316
|
-
# @return [RevTree] the node with the status set to `:unmodified`
|
317
|
-
def self.handle_unmodified(old, new)
|
318
|
-
if old.type == :folder && new.type == :folder
|
319
|
-
compare_folders(old, new, :unmodified)
|
320
|
-
else
|
321
|
-
with_status = new.dup
|
322
|
-
with_status.instance_variable_set(:@status, :unmodified)
|
323
|
-
with_status
|
324
|
-
end
|
325
|
-
end
|
326
|
-
|
327
363
|
# Merges the children of two nodes.
|
328
364
|
#
|
329
|
-
# @param old_children [Array<RevTree>] the children of the old node
|
330
|
-
# @param new_children [Array<RevTree>] the children of the new node
|
331
365
|
# @return [Array<Array<RevTree, RevTree>>] an array of paired old and new children
|
332
366
|
def self.merge_children(old_children, new_children)
|
333
367
|
all_names = (old_children.map(&:name) + new_children.map(&:name)).uniq
|
334
|
-
all_names.map
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
368
|
+
all_names.map { |name| find_child_pair(name, old_children, new_children) }
|
369
|
+
end
|
370
|
+
|
371
|
+
# @param old_children [Array<RevTree>] the children of the old node
|
372
|
+
# @param new_children [Array<RevTree>] the children of the new node
|
373
|
+
def self.find_child_pair(name, old_children, new_children)
|
374
|
+
old_child = old_children.find { |old| old.name == name }
|
375
|
+
new_child = new_children.find { |new| new.name == name }
|
376
|
+
[old_child, new_child]
|
339
377
|
end
|
340
378
|
|
341
379
|
# Traverses the tree and executes a block for each file matching the provided status whitelist.
|
@@ -349,14 +387,11 @@ class RevTree
|
|
349
387
|
# @yieldparam full_path [String] the full path of the current node
|
350
388
|
# @return [void]
|
351
389
|
def self.traverse_tree(node, status_whitelist, root, current_path, &block)
|
352
|
-
|
353
|
-
|
354
|
-
else
|
355
|
-
root
|
356
|
-
end
|
390
|
+
current_path = current_path.to_s
|
391
|
+
full_path = current_path == '' ? root : File.join(current_path, node.name.to_s)
|
357
392
|
|
358
393
|
if node.type == :file && status_whitelist.include?(node.status)
|
359
|
-
block.call(node, File.expand_path(current_path
|
394
|
+
block.call(node, File.expand_path(current_path))
|
360
395
|
end
|
361
396
|
|
362
397
|
node.children.each do |child|
|
metadata
CHANGED
@@ -1,15 +1,75 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: revtree
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Julian Kahlert
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09-
|
11
|
+
date: 2024-09-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: simplecov-cobertura
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '2'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '2.1'
|
23
|
+
type: :development
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '2'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '2.1'
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: simplecov-console
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0.9'
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: 0.9.1
|
43
|
+
type: :development
|
44
|
+
prerelease: false
|
45
|
+
version_requirements: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - "~>"
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '0.9'
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 0.9.1
|
53
|
+
- !ruby/object:Gem::Dependency
|
54
|
+
name: simplecov
|
55
|
+
requirement: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - "~>"
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: '0.22'
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: 0.22.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.22'
|
70
|
+
- - ">="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: 0.22.0
|
13
73
|
- !ruby/object:Gem::Dependency
|
14
74
|
name: yard
|
15
75
|
requirement: !ruby/object:Gem::Requirement
|
@@ -59,6 +119,7 @@ executables: []
|
|
59
119
|
extensions: []
|
60
120
|
extra_rdoc_files: []
|
61
121
|
files:
|
122
|
+
- LICENSE
|
62
123
|
- README.md
|
63
124
|
- lib/revtree.rb
|
64
125
|
homepage: https://github.com/juliankahlert/revtree
|
@@ -66,7 +127,7 @@ licenses:
|
|
66
127
|
- MIT
|
67
128
|
metadata:
|
68
129
|
homepage_uri: https://juliankahlert.github.io/revtree/
|
69
|
-
documentation_uri: https://www.rubydoc.info/gems/revtree/0.1.
|
130
|
+
documentation_uri: https://www.rubydoc.info/gems/revtree/0.1.6
|
70
131
|
source_code_uri: https://github.com/juliankahlert/revtree
|
71
132
|
post_install_message:
|
72
133
|
rdoc_options: []
|