try-cli 1.7.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.
Files changed (9) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +259 -0
  4. data/VERSION +1 -0
  5. data/bin/try +4 -0
  6. data/lib/fuzzy.rb +133 -0
  7. data/lib/tui.rb +892 -0
  8. data/try.rb +1281 -0
  9. metadata +53 -0
metadata ADDED
@@ -0,0 +1,53 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: try-cli
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.7.1
5
+ platform: ruby
6
+ authors:
7
+ - Tobi Lutke
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 2026-01-16 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: A CLI tool for managing experimental projects. Creates dated directories
13
+ for your tries, with fuzzy search and easy navigation.
14
+ email:
15
+ - tobi@lutke.com
16
+ executables:
17
+ - try
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - LICENSE
22
+ - README.md
23
+ - VERSION
24
+ - bin/try
25
+ - lib/fuzzy.rb
26
+ - lib/tui.rb
27
+ - try.rb
28
+ homepage: https://github.com/tobi/try
29
+ licenses:
30
+ - MIT
31
+ metadata:
32
+ homepage_uri: https://github.com/tobi/try
33
+ source_code_uri: https://github.com/tobi/try
34
+ changelog_uri: https://github.com/tobi/try/releases
35
+ rdoc_options: []
36
+ require_paths:
37
+ - lib
38
+ - "."
39
+ required_ruby_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: 3.0.0
44
+ required_rubygems_version: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '0'
49
+ requirements: []
50
+ rubygems_version: 3.6.2
51
+ specification_version: 4
52
+ summary: Experiments deserve a home
53
+ test_files: []