attractor 2.6.0 → 2.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 31bd7aa261b4e29b98a2a0af93e653d6dac08d0187505b57ff6df1dc60ad37c4
4
- data.tar.gz: 602324b18e247c6410f9d6206b089c0ae11cfe2d6a99feb5d0a0cf3d9a77f88e
3
+ metadata.gz: 00c69c27486cc5730d2524b7c25c69a3aecc58b6ba1bf516e34390e802deea2b
4
+ data.tar.gz: c5056b6a4046b02d10702d33a4dd38c5b4de6c5c87f92e04e9c96c9eecf07fc5
5
5
  SHA512:
6
- metadata.gz: 04a0fb63d5f198b8a5f412615e0fcc48ccb3cf6ee89edc1448ce0213cd9bc5f224bd4d435bf1c114c19789461cc6d4ccea13f55dc7cd39a6132bc0fe3d388342
7
- data.tar.gz: bb2aa36a13ca5a1615853e6eb29bc13e2f5b49e46e18242fc10ef78ea4d57cd5dbbd5ed2c9bd01e5139c191a36d61ff5d7ca5f1645bcdce98783c194740425a1
6
+ metadata.gz: 4cb863d6c362c6a9e98c2ca968bcd7fee4d565d1cc843c461ed0572a20d30c6e684e350138692bb632f285ce671fbe6a9ed3bffa85936426b3b80a1006f841ff
7
+ data.tar.gz: e8202453d0bdee8e9f009b229c834656d5aa00014c47de97c4c258735be51974b2be76195070d23a8737ab2d6b82adc68bb97bb02715091eebb2d8915c3094e9
data/README.md CHANGED
@@ -54,6 +54,8 @@
54
54
  <!-- GIF -->
55
55
  ![attractor_v0 6 1][demo-gif]
56
56
 
57
+ **If you are looking for a managed solution to observe your code's quality, check out [UseAttractor](https://useattr.actor)**
58
+
57
59
  ## Table of Contents
58
60
 
59
61
  - [Table of Contents](#table-of-contents)
@@ -182,6 +184,31 @@ attractor:
182
184
  - attractor_output
183
185
  ```
184
186
 
187
+ ## Configuration File
188
+
189
+ Attractor can read defaults from an `.attractor.yml` file in the repository root. This keeps project-specific settings in version control and avoids repeating flags on every command.
190
+
191
+ ```yml
192
+ report:
193
+ app_root: app # maps to --file_prefix
194
+ minimum_churn: 3
195
+ ignore: "vendor,node_modules"
196
+ start_ago: 2y
197
+ skip:
198
+ includes: ["wip"] # CI-only for now
199
+ branches:
200
+ only: [main] # CI-only for now
201
+ except: [gh-pages] # CI-only for now
202
+ ```
203
+
204
+ Values under `report` are picked up by all CLI commands. Explicit CLI flags always override the config file. The `skip` and `branches` keys are reserved for CI/SaaS usage and are currently ignored by the CLI.
205
+
206
+ You can also point to a custom config path:
207
+
208
+ ```sh
209
+ attractor report --config path/to/attractor.yml
210
+ ```
211
+
185
212
  ## CLI Commands and Options
186
213
 
187
214
  Initialize the local cache:
@@ -193,6 +220,7 @@ attractor init
193
220
  --start_ago|-s (e.g. 5y, 3m, 7w)
194
221
  --minimum_churn|-c (minimum times a file must have changed to be processed)
195
222
  --ignore|-i 'spec/*_spec.rb,db/schema.rb,tmp'
223
+ --config path/to/.attractor.yml
196
224
  ```
197
225
 
198
226
  Print a simple output to console:
@@ -205,6 +233,9 @@ attractor calc
205
233
  --start_ago|-s (e.g. 5y, 3m, 7w)
206
234
  --minimum_churn|-c (minimum times a file must have changed to be processed)
207
235
  --ignore|-i 'spec/*_spec.rb,db/schema.rb,tmp'
236
+ --files 'app/models/user.rb,app/models/post.rb' # restrict to an explicit list of paths
237
+ --files - # read newline-separated paths from stdin
238
+ --config path/to/.attractor.yml
208
239
  ```
209
240
 
210
241
  Generate a full report
@@ -218,6 +249,9 @@ attractor report
218
249
  --start_ago|-s (e.g. 5y, 3m, 7w)
219
250
  --minimum_churn|-c (minimum times a file must have changed to be processed)
220
251
  --ignore|-i 'spec/*_spec.rb,db/schema.rb,tmp'
252
+ --files 'app/models/user.rb,app/models/post.rb'
253
+ --files -
254
+ --config path/to/.attractor.yml
221
255
  ```
222
256
 
223
257
  Serve the output on `http://localhost:7890`
@@ -230,6 +264,7 @@ attractor serve
230
264
  --start_ago|-s (e.g. 5y, 3m, 7w)
231
265
  --minimum_churn|-c (minimum times a file must have changed to be processed)
232
266
  --ignore|-i 'spec/*_spec.rb,db/schema.rb,tmp'
267
+ --config path/to/.attractor.yml
233
268
  ```
234
269
 
235
270
  Clear the local cache: