tng 0.1.6 → 0.2.1

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: d9a79e45532cb4a0a79648c689dc0b74de6b9ce630f9bcf133441ff5bb927e6c
4
- data.tar.gz: 91841602114d06c26e04983a5db2912b21efb0f9e0f810a31f2de1c4d25ea7e6
3
+ metadata.gz: b9965672463ad576e9cb6ee27df1e6ff4861f17f80cb332473b63110a6deebff
4
+ data.tar.gz: 3d22117b140daf9636c3a15ea53542272d9f18ba68f6497b223cf3df1670bdab
5
5
  SHA512:
6
- metadata.gz: 1ea19d449f5996ced3d0b0a654ae0549c78cb8c82632d328ee3754c76ed0941e5ba0eff184e362643307d555b93802ef324d42ef19dcf285c0680ed18886d065
7
- data.tar.gz: 126e393b129b43bf94fd9421b08212cbcb42c54c133b2c3fd0643f01ba8f93613b048f64aa47e285501785e68e984597ea30c13bb56b3f40653a381aebbd9e65
6
+ metadata.gz: 519c42652328e661ae9ab5ed1f0cedbbbce1b5ddfbc3d7802ffd4646d943399f8290546b0a453f34075da5ce1382b661a355ab58de7223a4d6b81478c59dc266
7
+ data.tar.gz: 3b204c5a8fbeafa7df8ec3b676a2356c120bd3a7546bcd77a79e67decbd377f785440a747c04a9bdac55f85d816e4b55724675bb5675ff5d065fedcfca5f8414
data/LICENSE.md CHANGED
@@ -17,7 +17,7 @@ Without a valid commercial license, you may NOT:
17
17
 
18
18
  ## Commercial Use
19
19
 
20
- To obtain a commercial license for production use, contact: [claudiu@tng.sh]
20
+ To obtain a commercial license for production use, contact: [raluca@tng.sh]
21
21
 
22
22
  ## Evaluation Use
23
23
 
data/README.md CHANGED
@@ -302,28 +302,14 @@ This launches an interactive session where you can:
302
302
  - Preview generated tests before saving
303
303
  - Adjust configuration on the fly
304
304
 
305
- ### Direct Mode
305
+ ### Method-Specific Testing
306
306
 
307
- Generate tests directly from the command line without interactive prompts:
307
+ TNG focuses on precise, method-level test generation:
308
308
 
309
- #### Standard Format
310
- ```bash
311
- bundle exec tng --type=controller --file=users_controller
312
- bundle exec tng --type=controller --file="admin/users_controller"
313
- bundle exec tng --type=model --file=user
314
- bundle exec tng --type=model --file="blog/post"
315
- ```
316
-
317
- #### Short Aliases
318
- ```bash
319
- # Super concise - perfect for quick generation
320
- bundle exec tng -t c -f ping
321
- bundle exec tng -t m -f user
322
-
323
- # Mixed format also works
324
- bundle exec tng --type=c --file=ping
325
- bundle exec tng -t controller -f users_controller
326
- ```
309
+ - **Select specific methods** from 20+ file types including controllers, models, services, jobs, helpers, lib, policies, presenters, mailers, GraphQL components, and more
310
+ - **Interactive browsing** with search and filter capabilities
311
+ - **Focused test generation** for individual methods only
312
+ - **No bulk generation** - intentionally designed for precision
327
313
 
328
314
  Use `bundle exec tng --help` for more options.
329
315