local_path_builder 0.1.1 → 0.1.2
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
- data/.circleci/config.yml +8 -0
- data/Gemfile +1 -3
- data/Gemfile.lock +8 -9
- data/README.md +137 -134
- data/lib/local_path_builder/version.rb +1 -1
- data/lib/local_path_builder.rb +2 -11
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c8be58bca01933657c06bba76b05a333789e1a33db57f01983e6c9aadeacbd6f
|
4
|
+
data.tar.gz: 25871409964b23d9105a1ec8fef7ec385fb1b88d63a9819c2baaabf35c46b541
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 562137e6103e7c85297656a175e0e397ffd332d20067f3e61f8d715208d49fa108608139bdb616e071905c838ab5a6850b4b0a07de4e650b1f55fa6d0e542600
|
7
|
+
data.tar.gz: 69fb1b1f1a91338ed63b41647b7667bdc0e38863d1c787b00d0a849b87a48717807af12bce78590829860812dbd84b6eeb856a5a0318e1ef98446087a0b899ed
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
local_path_builder (0.1.
|
4
|
+
local_path_builder (0.1.1)
|
5
5
|
fileutils (~> 1.5.0)
|
6
6
|
|
7
7
|
GEM
|
@@ -9,32 +9,31 @@ GEM
|
|
9
9
|
specs:
|
10
10
|
ast (2.4.2)
|
11
11
|
fileutils (1.5.0)
|
12
|
-
parallel (1.
|
13
|
-
parser (3.0.
|
12
|
+
parallel (1.21.0)
|
13
|
+
parser (3.0.2.0)
|
14
14
|
ast (~> 2.4.1)
|
15
15
|
rainbow (3.0.0)
|
16
|
-
rake (13.0.
|
16
|
+
rake (13.0.6)
|
17
17
|
regexp_parser (2.1.1)
|
18
18
|
rexml (3.2.5)
|
19
|
-
rubocop (1.
|
19
|
+
rubocop (1.22.1)
|
20
20
|
parallel (~> 1.10)
|
21
21
|
parser (>= 3.0.0.0)
|
22
22
|
rainbow (>= 2.2.2, < 4.0)
|
23
23
|
regexp_parser (>= 1.8, < 3.0)
|
24
24
|
rexml
|
25
|
-
rubocop-ast (>= 1.
|
25
|
+
rubocop-ast (>= 1.12.0, < 2.0)
|
26
26
|
ruby-progressbar (~> 1.7)
|
27
27
|
unicode-display_width (>= 1.4.0, < 3.0)
|
28
|
-
rubocop-ast (1.
|
28
|
+
rubocop-ast (1.12.0)
|
29
29
|
parser (>= 3.0.1.1)
|
30
30
|
ruby-progressbar (1.11.0)
|
31
|
-
unicode-display_width (2.
|
31
|
+
unicode-display_width (2.1.0)
|
32
32
|
|
33
33
|
PLATFORMS
|
34
34
|
x86_64-darwin-20
|
35
35
|
|
36
36
|
DEPENDENCIES
|
37
|
-
fileutils (~> 1.5.0)
|
38
37
|
local_path_builder!
|
39
38
|
rake (~> 13.0)
|
40
39
|
rubocop (~> 1.7)
|
data/README.md
CHANGED
@@ -1,43 +1,44 @@
|
|
1
1
|
<a href="#table-of-contents">
|
2
|
-
<img src="https://raw.githubusercontent.com/a6b8/a6b8/main/docs/local-path-builder-for-ruby/readme/headlines/local-path-builder.svg" height="
|
2
|
+
<img src="https://raw.githubusercontent.com/a6b8/a6b8/main/docs/local-path-builder-for-ruby/readme/headlines/local-path-builder.svg" height="45px" name="headline" alt="# Local Path Builder for Ruby">
|
3
3
|
</a>
|
4
4
|
|
5
5
|
Usefull helper to build all paths in one hash to local files and folders.
|
6
|
+
|
6
7
|
<br>
|
7
|
-
|
8
|
-
<
|
9
|
-
<
|
10
|
-
<img src="https://raw.githubusercontent.com/a6b8/a6b8/main/docs/local-path-builder-for-ruby/readme/headlines/table-of-contents.svg" height="55px" name="table-of-contents" alt="Table of Contents">
|
8
|
+
|
9
|
+
<a href="#headline">
|
10
|
+
<img src="https://raw.githubusercontent.com/a6b8/a6b8/main/docs/local-path-builder-for-ruby/readme/headlines/table-of-contents.svg" height="38px" name="table-of-contents" alt="Table of Contents">
|
11
11
|
</a>
|
12
12
|
<br>
|
13
13
|
|
14
|
-
1. [Quickstart](#quickstart)
|
15
|
-
2. [Setup](#setup)
|
16
|
-
3. [Methods](#methods)
|
17
|
-
4. [Tree Structure](#tree-structure)
|
18
|
-
5. [Console](#console)
|
19
|
-
6. [Contributing](#contributing)
|
20
|
-
7. [Limitations](#limitations)
|
21
|
-
8. [License](#license)
|
22
|
-
9. [Code of Conduct](#code-of-conduct)
|
23
|
-
10. [Support my Work](#support-my-work)
|
14
|
+
1. [Quickstart](#quickstart)
|
15
|
+
2. [Setup](#setup)
|
16
|
+
3. [Methods](#methods)
|
17
|
+
4. [Tree Structure](#tree-structure)
|
18
|
+
5. [Console Output](#console)
|
19
|
+
6. [Contributing](#contributing)
|
20
|
+
7. [Limitations](#limitations)
|
21
|
+
8. [License](#license)
|
22
|
+
9. [Code of Conduct](#code-of-conduct)
|
23
|
+
10. [Support my Work](#support-my-work)
|
24
24
|
|
25
25
|
<br>
|
26
|
-
|
26
|
+
|
27
27
|
<a href="#table-of-contents">
|
28
|
-
<img src="https://raw.githubusercontent.com/a6b8/a6b8/main/docs/local-path-builder-for-ruby/readme/headlines/quickstart.svg" height="
|
28
|
+
<img src="https://raw.githubusercontent.com/a6b8/a6b8/main/docs/local-path-builder-for-ruby/readme/headlines/quickstart.svg" height="38px" name="quickstart" alt="Quickstart">
|
29
29
|
</a>
|
30
30
|
|
31
31
|
```ruby
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
32
|
+
require 'local_path_builder'
|
33
|
+
|
34
|
+
struct = LocalPathBuilder.helper()
|
35
|
+
LocalPathBuilder.generate( struct, :both )
|
36
36
|
```
|
37
|
+
|
37
38
|
<br>
|
38
|
-
|
39
|
+
|
39
40
|
<a href="#table-of-contents">
|
40
|
-
<img src="https://raw.githubusercontent.com/a6b8/a6b8/main/docs/local-path-builder-for-ruby/readme/headlines/setup.svg" height="
|
41
|
+
<img src="https://raw.githubusercontent.com/a6b8/a6b8/main/docs/local-path-builder-for-ruby/readme/headlines/setup.svg" height="38px" name="setup" alt="Setup">
|
41
42
|
</a>
|
42
43
|
|
43
44
|
Add this line to your application's Gemfile:
|
@@ -59,30 +60,31 @@ On Rubygems:
|
|
59
60
|
- Gem: https://rubygems.org/gems/local_path_builder
|
60
61
|
- Profile: https://rubygems.org/profiles/a6b8
|
61
62
|
|
62
|
-
|
63
|
-
<br>
|
64
63
|
<br>
|
64
|
+
|
65
65
|
<a href="#table-of-contents">
|
66
|
-
<img src="https://raw.githubusercontent.com/a6b8/a6b8/main/docs/local-path-builder-for-ruby/readme/headlines/methods.svg" height="
|
66
|
+
<img src="https://raw.githubusercontent.com/a6b8/a6b8/main/docs/local-path-builder-for-ruby/readme/headlines/methods.svg" height="38px" name="methods" alt="Methods">
|
67
67
|
</a>
|
68
68
|
|
69
69
|
### .helper()
|
70
70
|
|
71
71
|
```ruby
|
72
|
-
|
73
|
-
|
72
|
+
require 'local_path_builder'
|
73
|
+
|
74
|
+
hash = LocalPathBuilder.helper()
|
75
|
+
# => { path:
|
74
76
|
```
|
75
77
|
|
76
78
|
### .generate( struct[:path], key )
|
77
79
|
|
78
80
|
```ruby
|
79
|
-
|
81
|
+
require 'local_path_builder'
|
80
82
|
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
83
|
+
hash = LocalPathBuilder.generate(
|
84
|
+
path_tree,
|
85
|
+
console_mode,
|
86
|
+
salt
|
87
|
+
)
|
86
88
|
```
|
87
89
|
|
88
90
|
**Input**
|
@@ -94,11 +96,11 @@ On Rubygems:
|
|
94
96
|
|
95
97
|
**Return**<br>
|
96
98
|
Hash (See also Console Output)
|
99
|
+
|
97
100
|
<br>
|
98
|
-
|
99
|
-
<br>
|
101
|
+
|
100
102
|
<a href="#table-of-contents">
|
101
|
-
<img src="https://raw.githubusercontent.com/a6b8/a6b8/main/docs/local-path-builder-for-ruby/readme/headlines/tree-structure.svg" height="
|
103
|
+
<img src="https://raw.githubusercontent.com/a6b8/a6b8/main/docs/local-path-builder-for-ruby/readme/headlines/tree-structure.svg" height="38px" name="tree-structure" alt="Tree Structure">
|
102
104
|
</a>
|
103
105
|
|
104
106
|
A struct input is required to generate all paths. Use the following as reference to design your own tree
|
@@ -106,53 +108,53 @@ A struct input is required to generate all paths. Use the following as reference
|
|
106
108
|
**Example Tree**
|
107
109
|
|
108
110
|
```ruby
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
111
|
+
{
|
112
|
+
root: './',
|
113
|
+
name: '1',
|
114
|
+
children: {
|
115
|
+
entry: {
|
116
|
+
name: '0-entry',
|
117
|
+
files: {
|
118
|
+
tsv: {
|
119
|
+
name: 'rest-{{SALT}}.tsv',
|
120
|
+
}
|
121
|
+
}
|
122
|
+
},
|
123
|
+
converted: {
|
124
|
+
name: '1-converted',
|
125
|
+
children: {
|
126
|
+
json_folder: {
|
127
|
+
name: '0-json',
|
128
|
+
files: {
|
129
|
+
json: {
|
130
|
+
name: 'data-{{SALT}}.json',
|
131
|
+
}
|
132
|
+
}
|
133
|
+
},
|
134
|
+
tsv_folder: {
|
135
|
+
name: '0-tsv',
|
136
|
+
files: {
|
137
|
+
tsv: {
|
138
|
+
name: 'data-{{SALT}}.json',
|
139
|
+
}
|
140
|
+
}
|
118
141
|
}
|
119
|
-
}
|
120
142
|
},
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
name: '0-json',
|
126
|
-
files: {
|
127
|
-
json: {
|
128
|
-
name: 'data-{{SALT}}.json',
|
129
|
-
}
|
130
|
-
}
|
131
|
-
},
|
132
|
-
tsv_folder: {
|
133
|
-
name: '0-tsv',
|
134
|
-
files: {
|
135
|
-
tsv: {
|
136
|
-
name: 'data-{{SALT}}.json',
|
137
|
-
}
|
138
|
-
}
|
139
|
-
}
|
140
|
-
},
|
141
|
-
files: {
|
142
|
-
json: {
|
143
|
-
name: 'data-{{SALT}}.json',
|
144
|
-
}
|
145
|
-
}
|
143
|
+
files: {
|
144
|
+
json: {
|
145
|
+
name: 'data-{{SALT}}.json',
|
146
|
+
}
|
146
147
|
}
|
147
|
-
}
|
148
148
|
}
|
149
|
+
}
|
150
|
+
}
|
149
151
|
```
|
150
152
|
```LocalPathBuiler.helper()``` will give you the same output.
|
151
153
|
|
152
154
|
<br>
|
153
|
-
|
155
|
+
|
154
156
|
<a href="#table-of-contents">
|
155
|
-
<img src="https://raw.githubusercontent.com/a6b8/a6b8/main/docs/local-path-builder-for-ruby/readme/headlines/console.svg" height="
|
157
|
+
<img src="https://raw.githubusercontent.com/a6b8/a6b8/main/docs/local-path-builder-for-ruby/readme/headlines/console.svg" height="38px" name="console" alt="Console Output">
|
156
158
|
</a>
|
157
159
|
|
158
160
|
The second parameter of the ```.generate()``` function expects a symbol. you can choose between ```:silent```, ```:hash```, ```path``` and ```both```.
|
@@ -164,37 +166,37 @@ Console stays silent.
|
|
164
166
|
Console log all variables which are available.
|
165
167
|
|
166
168
|
```txt
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
169
|
+
LocalPathBuilder.generate( struct, :hash )
|
170
|
+
|
171
|
+
TREE OVERVIEW
|
172
|
+
hash[:path][:full]
|
173
|
+
┗━ hash[:path][:children][:entry][:full]
|
174
|
+
┗━ hash[:path][:children][:entry][:files][:tsv][:full]
|
175
|
+
┗━ hash[:path][:children][:converted][:full]
|
176
|
+
┗━ hash[:path][:children][:converted][:files][:json][:full]
|
177
|
+
┗━ hash[:path][:children][:converted][:children][:json_folder][:full]
|
178
|
+
┗━ hash[:path][:children][:converted][:children][:json_folder][:files][:json][:full]
|
179
|
+
┗━ hash[:path][:children][:converted][:children][:tsv_folder][:full]
|
180
|
+
┗━ hash[:path][:children][:converted][:children][:tsv_folder][:files][:tsv][:full]
|
179
181
|
```
|
180
182
|
|
181
183
|
|
182
184
|
### :path
|
183
185
|
Console log all path which were created.
|
184
186
|
|
185
|
-
```
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
187
|
+
```
|
188
|
+
LocalPathBuilder.generate( struct, :path )
|
189
|
+
|
190
|
+
TREE OVERVIEW
|
191
|
+
./1/
|
192
|
+
./1/0-entry/
|
193
|
+
./1/0-entry/rest-1624263104.tsv
|
194
|
+
./1/1-converted/
|
195
|
+
./1/1-converted/data-1624263104.json
|
196
|
+
./1/1-converted/0-json/
|
197
|
+
./1/1-converted/0-json/data-1624263104.json
|
198
|
+
./1/1-converted/0-tsv/
|
199
|
+
./1/1-converted/0-tsv/data-1624263104.json
|
198
200
|
```
|
199
201
|
|
200
202
|
|
@@ -202,64 +204,65 @@ Console log all path which were created.
|
|
202
204
|
Console log hash variable and the corresponding file path.
|
203
205
|
|
204
206
|
```txt
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
207
|
+
LocalPathBuilder.generate( struct, :both )
|
208
|
+
|
209
|
+
TREE OVERVIEW
|
210
|
+
hash[:path][:full]
|
211
|
+
./1/
|
212
|
+
┗━ hash[:path][:children][:entry][:full]
|
213
|
+
./1/0-entry/
|
214
|
+
┗━ hash[:path][:children][:entry][:files][:tsv][:full]
|
215
|
+
./1/0-entry/rest-1624263104.tsv
|
216
|
+
┗━ hash[:path][:children][:converted][:full]
|
217
|
+
./1/1-converted/
|
218
|
+
┗━ hash[:path][:children][:converted][:files][:json][:full]
|
219
|
+
./1/1-converted/data-1624263104.json
|
220
|
+
┗━ hash[:path][:children][:converted][:children][:json_folder][:full]
|
221
|
+
./1/1-converted/0-json/
|
222
|
+
┗━ hash[:path][:children][:converted][:children][:json_folder][:files][:json][:full]
|
223
|
+
./1/1-converted/0-json/data-1624263104.json
|
224
|
+
┗━ hash[:path][:children][:converted][:children][:tsv_folder][:full]
|
225
|
+
./1/1-converted/0-tsv/
|
226
|
+
┗━ hash[:path][:children][:converted][:children][:tsv_folder][:files][:tsv][:full]
|
227
|
+
./1/1-converted/0-tsv/data-1624263104.json
|
226
228
|
```
|
227
229
|
|
228
230
|
<br>
|
229
|
-
|
231
|
+
|
230
232
|
<a href="#table-of-contents">
|
231
|
-
<img src="https://raw.githubusercontent.com/a6b8/a6b8/main/docs/local-path-builder-for-ruby/readme/headlines/contributing.svg" height="
|
233
|
+
<img src="https://raw.githubusercontent.com/a6b8/a6b8/main/docs/local-path-builder-for-ruby/readme/headlines/contributing.svg" height="38px" name="contributing" alt="Contributing">
|
232
234
|
</a>
|
233
235
|
|
234
236
|
Bug reports and pull requests are welcome on GitHub at https://github.com/a6b8/statosio-for-wordpress. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/a6b8/statosio/blob/master/CODE_OF_CONDUCT.md).
|
237
|
+
|
235
238
|
<br>
|
236
|
-
|
237
|
-
<br>
|
239
|
+
|
238
240
|
<a href="#table-of-contents">
|
239
|
-
<img src="https://raw.githubusercontent.com/a6b8/a6b8/main/docs/local-path-builder-for-ruby/readme/headlines/limitations.svg" height="
|
241
|
+
<img src="https://raw.githubusercontent.com/a6b8/a6b8/main/docs/local-path-builder-for-ruby/readme/headlines/limitations.svg" height="38px" name="limitations" alt="Limitations">
|
240
242
|
</a>
|
243
|
+
|
241
244
|
- Only three levels of folders are supported
|
242
245
|
|
243
246
|
<br>
|
244
|
-
|
247
|
+
|
245
248
|
<a href="#table-of-contents">
|
246
|
-
<img src="https://raw.githubusercontent.com/a6b8/a6b8/main/docs/local-path-builder-for-ruby/readme/headlines/license.svg" height="
|
249
|
+
<img src="https://raw.githubusercontent.com/a6b8/a6b8/main/docs/local-path-builder-for-ruby/readme/headlines/license.svg" height="38px" name="license" alt="License">
|
247
250
|
</a>
|
248
251
|
|
249
252
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
253
|
+
|
250
254
|
<br>
|
251
|
-
|
252
|
-
<br>
|
255
|
+
|
253
256
|
<a href="#table-of-contents">
|
254
|
-
<img src="https://raw.githubusercontent.com/a6b8/a6b8/main/docs/local-path-builder-for-ruby/readme/headlines/code-of-conduct.svg" height="
|
257
|
+
<img src="https://raw.githubusercontent.com/a6b8/a6b8/main/docs/local-path-builder-for-ruby/readme/headlines/code-of-conduct.svg" height="38px" name="code-of-conduct" alt="Code of Conduct">
|
255
258
|
</a>
|
256
259
|
|
257
260
|
Everyone interacting in the LocalPathBuilder project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/a6b8/local-path-builder-for-ruby/blob/master/CODE_OF_CONDUCT.md).
|
261
|
+
|
258
262
|
<br>
|
259
|
-
|
260
|
-
<br>
|
263
|
+
|
261
264
|
<a href="#table-of-contents">
|
262
|
-
<img href="#table-of-contents" src="https://raw.githubusercontent.com/a6b8/a6b8/main/docs/local-path-builder-for-ruby/readme/headlines/support-my-work.svg" height="
|
265
|
+
<img href="#table-of-contents" src="https://raw.githubusercontent.com/a6b8/a6b8/main/docs/local-path-builder-for-ruby/readme/headlines/support-my-work.svg" height="38px" name="support-my-work" alt="Support my Work">
|
263
266
|
</a>
|
264
267
|
|
265
268
|
Donate by [https://www.paypal.com](https://www.paypal.com/donate?hosted_button_id=XKYLQ9FBGC4RG)
|
data/lib/local_path_builder.rb
CHANGED
@@ -1,50 +1,42 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require_relative "local_path_builder/version"
|
4
|
-
require '
|
4
|
+
require 'fileutils'
|
5
5
|
|
6
6
|
|
7
7
|
module LocalPathBuilder
|
8
8
|
class Error < StandardError; end
|
9
|
-
# Your code goes here...
|
10
9
|
|
10
|
+
|
11
11
|
def self.helper()
|
12
12
|
result = {
|
13
13
|
root: './',
|
14
14
|
name: '1',
|
15
|
-
full: nil,
|
16
15
|
children: {
|
17
16
|
entry: {
|
18
17
|
name: '0-entry',
|
19
|
-
full: nil,
|
20
18
|
files: {
|
21
19
|
tsv: {
|
22
20
|
name: 'rest-{{SALT}}.tsv',
|
23
|
-
full: nil
|
24
21
|
}
|
25
22
|
}
|
26
23
|
},
|
27
24
|
converted: {
|
28
25
|
name: '1-converted',
|
29
|
-
full: nil,
|
30
26
|
children: {
|
31
27
|
json_folder: {
|
32
28
|
name: '0-json',
|
33
|
-
full: nil,
|
34
29
|
files: {
|
35
30
|
json: {
|
36
31
|
name: 'data-{{SALT}}.json',
|
37
|
-
full: nil
|
38
32
|
}
|
39
33
|
}
|
40
34
|
},
|
41
35
|
tsv_folder: {
|
42
36
|
name: '0-tsv',
|
43
|
-
full: nil,
|
44
37
|
files: {
|
45
38
|
tsv: {
|
46
39
|
name: 'data-{{SALT}}.json',
|
47
|
-
full: nil
|
48
40
|
}
|
49
41
|
}
|
50
42
|
}
|
@@ -52,7 +44,6 @@ module LocalPathBuilder
|
|
52
44
|
files: {
|
53
45
|
json: {
|
54
46
|
name: 'data-{{SALT}}.json',
|
55
|
-
full: nil
|
56
47
|
}
|
57
48
|
}
|
58
49
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: local_path_builder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- a6b8
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-10-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fileutils
|
@@ -31,6 +31,7 @@ executables: []
|
|
31
31
|
extensions: []
|
32
32
|
extra_rdoc_files: []
|
33
33
|
files:
|
34
|
+
- ".circleci/config.yml"
|
34
35
|
- ".gitignore"
|
35
36
|
- ".rubocop.yml"
|
36
37
|
- CHANGELOG.md
|