local_path_builder 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c3840528ff167321fcf9505c37d5fd67b018d778807676a3bc40c4a3642931ee
4
- data.tar.gz: 89574474708e933c497ca7402ebd2ac4c31c10aea80cd69573b0a30404cb24c8
3
+ metadata.gz: c8be58bca01933657c06bba76b05a333789e1a33db57f01983e6c9aadeacbd6f
4
+ data.tar.gz: 25871409964b23d9105a1ec8fef7ec385fb1b88d63a9819c2baaabf35c46b541
5
5
  SHA512:
6
- metadata.gz: 3b3b9aa2caa57b218c8da11d4a64c9e8b874b82d11b01f836bbbd7ee9a7bcec5d4225ad3a03176ca8d686ccebc5b16d1c5059c3ff1fc169bdbbb5094bdf91a5f
7
- data.tar.gz: 200de47f2b2ed1cdf37d023af4fcd2f75bb4c36871f04c76ac37b320286e258bdc80ccbd0815108091915de417159d65f7e3d7989460c135149d555612864b5a
6
+ metadata.gz: 562137e6103e7c85297656a175e0e397ffd332d20067f3e61f8d715208d49fa108608139bdb616e071905c838ab5a6850b4b0a07de4e650b1f55fa6d0e542600
7
+ data.tar.gz: 69fb1b1f1a91338ed63b41647b7667bdc0e38863d1c787b00d0a849b87a48717807af12bce78590829860812dbd84b6eeb856a5a0318e1ef98446087a0b899ed
@@ -0,0 +1,8 @@
1
+ jobs:
2
+ build:
3
+ docker:
4
+ - image: cimg/ruby:3.0.2
5
+ steps:
6
+ - checkout
7
+ - run: bundle install
8
+ - run: ruby './test/circle_ci.rb'
data/Gemfile CHANGED
@@ -7,6 +7,4 @@ gemspec
7
7
 
8
8
  gem "rake", "~> 13.0"
9
9
 
10
- gem "rubocop", "~> 1.7"
11
-
12
- gem 'fileutils', "~> 1.5.0"
10
+ gem "rubocop", "~> 1.7"
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- local_path_builder (0.1.0)
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.20.1)
13
- parser (3.0.1.1)
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.3)
16
+ rake (13.0.6)
17
17
  regexp_parser (2.1.1)
18
18
  rexml (3.2.5)
19
- rubocop (1.17.0)
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.7.0, < 2.0)
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.7.0)
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.0.0)
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="55px" name="local-path-builder" alt="# Local Path Builder for Ruby">
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
- <br>
8
- <br>
9
- <a href="#table-of-contents">
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)<br>
15
- 2. [Setup](#setup)<br>
16
- 3. [Methods](#methods)<br>
17
- 4. [Tree Structure](#tree-structure)<br>
18
- 5. [Console](#console)<br>
19
- 6. [Contributing](#contributing)<br>
20
- 7. [Limitations](#limitations)<br>
21
- 8. [License](#license)<br>
22
- 9. [Code of Conduct](#code-of-conduct)<br>
23
- 10. [Support my Work](#support-my-work)<br>
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
- <br>
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="55px" name="quickstart" alt="Quickstart">
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
- require '../lib/local_path_builder'
33
-
34
- struct = LocalPathBuilder.helper()
35
- LocalPathBuilder.generate( struct, :both )
32
+ require 'local_path_builder'
33
+
34
+ struct = LocalPathBuilder.helper()
35
+ LocalPathBuilder.generate( struct, :both )
36
36
  ```
37
+
37
38
  <br>
38
- <br>
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="55px" name="setup" alt="Setup">
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="55px" name="methods" alt="Methods">
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
- hash = LocalPathBuilder.helper()
73
- # => { path:
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
- require 'local_path_builder'
81
+ require 'local_path_builder'
80
82
 
81
- hash = LocalPathBuilder.generate(
82
- path_tree,
83
- console_mode,
84
- salt
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
- <br>
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="55px" name="tree-structure" alt="Tree Structure">
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
- root: './',
111
- name: '1',
112
- children: {
113
- entry: {
114
- name: '0-entry',
115
- files: {
116
- tsv: {
117
- name: 'rest-{{SALT}}.tsv',
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
- converted: {
122
- name: '1-converted',
123
- children: {
124
- json_folder: {
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
- <br>
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="55px" name="console" alt="Console Output">
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
- LocalPathBuilder.generate( struct, :hash )
168
-
169
- TREE OVERVIEW
170
- hash[:path][:full]
171
- ┗━ hash[:path][:children][:entry][:full]
172
- ┗━ hash[:path][:children][:entry][:files][:tsv][:full]
173
- ┗━ hash[:path][:children][:converted][:full]
174
- ┗━ hash[:path][:children][:converted][:files][:json][:full]
175
- ┗━ hash[:path][:children][:converted][:children][:json_folder][:full]
176
- ┗━ hash[:path][:children][:converted][:children][:json_folder][:files][:json][:full]
177
- ┗━ hash[:path][:children][:converted][:children][:tsv_folder][:full]
178
- ┗━ hash[:path][:children][:converted][:children][:tsv_folder][:files][:tsv][:full]
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
- ```txt
186
- LocalPathBuilder.generate( struct, :path )
187
-
188
- TREE OVERVIEW
189
- ./1/
190
- ./1/0-entry/
191
- ./1/0-entry/rest-1624263104.tsv
192
- ./1/1-converted/
193
- ./1/1-converted/data-1624263104.json
194
- ./1/1-converted/0-json/
195
- ./1/1-converted/0-json/data-1624263104.json
196
- ./1/1-converted/0-tsv/
197
- ./1/1-converted/0-tsv/data-1624263104.json
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
- LocalPathBuilder.generate( struct, :both )
206
-
207
- TREE OVERVIEW
208
- hash[:path][:full]
209
- ./1/
210
- ┗━ hash[:path][:children][:entry][:full]
211
- ./1/0-entry/
212
- ┗━ hash[:path][:children][:entry][:files][:tsv][:full]
213
- ./1/0-entry/rest-1624263104.tsv
214
- ┗━ hash[:path][:children][:converted][:full]
215
- ./1/1-converted/
216
- ┗━ hash[:path][:children][:converted][:files][:json][:full]
217
- ./1/1-converted/data-1624263104.json
218
- ┗━ hash[:path][:children][:converted][:children][:json_folder][:full]
219
- ./1/1-converted/0-json/
220
- ┗━ hash[:path][:children][:converted][:children][:json_folder][:files][:json][:full]
221
- ./1/1-converted/0-json/data-1624263104.json
222
- ┗━ hash[:path][:children][:converted][:children][:tsv_folder][:full]
223
- ./1/1-converted/0-tsv/
224
- ┗━ hash[:path][:children][:converted][:children][:tsv_folder][:files][:tsv][:full]
225
- ./1/1-converted/0-tsv/data-1624263104.json
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
- <br>
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="55px" name="contributing" alt="Contributing">
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
- <br>
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="55px" name="limitations" alt="Limitations">
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
- <br>
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="55px" name="license" alt="License">
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
- <br>
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="55px" name="code-of-conduct" alt="Code of Conduct">
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
- <br>
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="55px" name="support-my-work" alt="Support my Work">
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)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module LocalPathBuilder
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
@@ -1,50 +1,42 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require_relative "local_path_builder/version"
4
- require 'FileUtils'
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.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-06-21 00:00:00.000000000 Z
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