na 1.2.87 → 1.2.88
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/.rubocop_todo.yml +17 -9
- data/2025-10-29-one-more-na-update.md +142 -0
- data/CHANGELOG.md +39 -0
- data/Gemfile +1 -0
- data/Gemfile.lock +4 -1
- data/README.md +128 -2
- data/bin/commands/find.rb +62 -0
- data/bin/commands/next.rb +65 -0
- data/bin/commands/plugin.rb +75 -0
- data/bin/commands/tagged.rb +63 -0
- data/bin/commands/update.rb +54 -1
- data/bin/na +1 -0
- data/lib/na/action.rb +13 -0
- data/lib/na/next_action.rb +92 -0
- data/lib/na/plugins.rb +419 -0
- data/lib/na/string.rb +6 -4
- data/lib/na/version.rb +1 -1
- data/lib/na.rb +1 -0
- data/na/Test.todo.markdown +32 -0
- data/na/test.md +21 -0
- data/na.gemspec +1 -0
- data/plugins.md +38 -0
- data/src/_README.md +110 -1
- metadata +21 -1
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: na
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.88
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brett Terpstra
|
|
@@ -57,6 +57,20 @@ dependencies:
|
|
|
57
57
|
- - ">="
|
|
58
58
|
- !ruby/object:Gem::Version
|
|
59
59
|
version: 0.10.2
|
|
60
|
+
- !ruby/object:Gem::Dependency
|
|
61
|
+
name: csv
|
|
62
|
+
requirement: !ruby/object:Gem::Requirement
|
|
63
|
+
requirements:
|
|
64
|
+
- - ">="
|
|
65
|
+
- !ruby/object:Gem::Version
|
|
66
|
+
version: '3.2'
|
|
67
|
+
type: :runtime
|
|
68
|
+
prerelease: false
|
|
69
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
70
|
+
requirements:
|
|
71
|
+
- - ">="
|
|
72
|
+
- !ruby/object:Gem::Version
|
|
73
|
+
version: '3.2'
|
|
60
74
|
- !ruby/object:Gem::Dependency
|
|
61
75
|
name: git
|
|
62
76
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -250,6 +264,7 @@ files:
|
|
|
250
264
|
- ".rubocop.yml"
|
|
251
265
|
- ".rubocop_todo.yml"
|
|
252
266
|
- ".travis.yml"
|
|
267
|
+
- 2025-10-29-one-more-na-update.md
|
|
253
268
|
- CHANGELOG.md
|
|
254
269
|
- Gemfile
|
|
255
270
|
- Gemfile.lock
|
|
@@ -269,6 +284,7 @@ files:
|
|
|
269
284
|
- bin/commands/move.rb
|
|
270
285
|
- bin/commands/next.rb
|
|
271
286
|
- bin/commands/open.rb
|
|
287
|
+
- bin/commands/plugin.rb
|
|
272
288
|
- bin/commands/projects.rb
|
|
273
289
|
- bin/commands/prompt.rb
|
|
274
290
|
- bin/commands/restore.rb
|
|
@@ -299,6 +315,7 @@ files:
|
|
|
299
315
|
- lib/na/help_monkey_patch.rb
|
|
300
316
|
- lib/na/next_action.rb
|
|
301
317
|
- lib/na/pager.rb
|
|
318
|
+
- lib/na/plugins.rb
|
|
302
319
|
- lib/na/project.rb
|
|
303
320
|
- lib/na/prompt.rb
|
|
304
321
|
- lib/na/string.rb
|
|
@@ -308,6 +325,9 @@ files:
|
|
|
308
325
|
- lib/na/version.rb
|
|
309
326
|
- na.gemspec
|
|
310
327
|
- na.rdoc
|
|
328
|
+
- na/Test.todo.markdown
|
|
329
|
+
- na/test.md
|
|
330
|
+
- plugins.md
|
|
311
331
|
- scripts/fixreadme.rb
|
|
312
332
|
- scripts/generate-fish-completions.rb
|
|
313
333
|
- scripts/runtests.sh
|