na 1.2.30 → 1.2.32

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: 3d0dbc271a5a8f1812c5ef0596031d5ca9fc726efe0cde91e1172840d15acb61
4
- data.tar.gz: 44599dadd458ebfcb610fcf80b5326231404f199f61b6e195b103bb4a095ff06
3
+ metadata.gz: 440413f1b22a8745d119a8b55098ad3fd9c36096f930ad5f25d6091a9c9cb496
4
+ data.tar.gz: 02e42b27ea06069b669fdded2929b4351990b9e3be35add61cd734a50d2fa28a
5
5
  SHA512:
6
- metadata.gz: 448bea330450c05446027995d4ea6ccdb5cdf80fa43672d8ccb08a808ca9a171fbd80aa2d7e2054568c458411b25037db66b644e0bde43e8ac614b9b469d97cc
7
- data.tar.gz: 146ed95b595f010a5964134f4eba2701ccd7a9b103c692941a8fb68052023f29b09ffabffba74dbc93a20a64397fe8417f9ab0343bde9a3af8d292bfa2351e6f
6
+ metadata.gz: 3fae03d1566494bff4c792fa6921d975e94e9984688873e05e8936e97a3a0dc1f2134f6677218f66d53d6be87481100835fd66d4e30a27e1db42bf3cb09805c8
7
+ data.tar.gz: 3d3c6482675e0c880c51d7f0ea460225c869376db8d84a245c296ec23dceabd9bf481387fac05c06c88d73e914529beb4effd540ea90b9d558e30be1e1ffcc9d
data/CHANGELOG.md CHANGED
@@ -1,3 +1,19 @@
1
+ ### 1.2.32
2
+
3
+ 2023-08-29 10:59
4
+
5
+ #### FIXED
6
+
7
+ - Missing commands
8
+
9
+ ### 1.2.31
10
+
11
+ 2023-08-29 10:32
12
+
13
+ #### FIXED
14
+
15
+ - Invalid path for `na changelog` command
16
+
1
17
  ### 1.2.30
2
18
 
3
19
  2023-08-29 06:50
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- na (1.2.30)
4
+ na (1.2.32)
5
5
  chronic (~> 0.10, >= 0.10.2)
6
6
  gli (~> 2.21.0)
7
7
  mdless (~> 1.0, >= 1.0.32)
data/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
  _If you're one of the rare people like me who find this useful, feel free to
10
10
  [buy me some coffee][donate]._
11
11
 
12
- The current version of `na` is 1.2.30
12
+ The current version of `na` is 1.2.32
13
13
  .
14
14
 
15
15
  `na` ("next action") is a command line tool designed to make it easy to see what your next actions are for any project, right from the command line. It works with TaskPaper-formatted files (but any plain text format will do), looking for `@na` tags (or whatever you specify) in todo files in your current folder.
@@ -77,14 +77,14 @@ SYNOPSIS
77
77
  na [global options] command [command options] [arguments...]
78
78
 
79
79
  VERSION
80
- 1.2.30
80
+ 1.2.32
81
81
 
82
82
  GLOBAL OPTIONS
83
83
  -a, --add - Add a next action (deprecated, for backwards compatibility)
84
84
  --add_at=POSITION - Add all new/moved entries at [s]tart or [e]nd of target project (default: start)
85
85
  --[no-]color - Colorize output (default: enabled)
86
86
  --cwd_as=TYPE - Use current working directory as [p]roject, [t]ag, or [n]one (default: none)
87
- -d, --depth=DEPTH - Recurse to depth (default: 1)
87
+ -d, --depth=DEPTH - Recurse to depth (default: 3)
88
88
  --[no-]debug - Display verbose output
89
89
  --ext=EXT - File extension to consider a todo file (default: taskpaper)
90
90
  -f, --file=PATH - Use a single file as global todo, use initconfig to make permanent (default: none)
@@ -5,7 +5,7 @@ class App
5
5
  desc 'Display the changelog'
6
6
  command %i[changes changelog] do |c|
7
7
  c.action do |_, _, _|
8
- changelog = File.expand_path(File.join(File.dirname(__FILE__), '..', 'CHANGELOG.md'))
8
+ changelog = File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'CHANGELOG.md'))
9
9
  pagers = [
10
10
  'mdless',
11
11
  'mdcat',
data/bin/na CHANGED
@@ -77,7 +77,7 @@ class App
77
77
  desc 'Display verbose output'
78
78
  switch %i[debug], default_value: false
79
79
 
80
- Dir.glob('bin/commands/*.rb').each do |cmd|
80
+ Dir.glob(File.join(File.dirname(__FILE__), 'commands/*.rb')).each do |cmd|
81
81
  require_relative "commands/#{File.basename(cmd, '.rb')}"
82
82
  end
83
83
 
data/lib/na/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Na
2
- VERSION = '1.2.30'
2
+ VERSION = '1.2.32'
3
3
  end
data/src/_README.md CHANGED
@@ -9,7 +9,7 @@
9
9
  _If you're one of the rare people like me who find this useful, feel free to
10
10
  [buy me some coffee][donate]._
11
11
 
12
- The current version of `na` is <!--VER-->1.2.28<!--END VER-->.
12
+ The current version of `na` is <!--VER-->1.2.31<!--END VER-->.
13
13
 
14
14
  `na` ("next action") is a command line tool designed to make it easy to see what your next actions are for any project, right from the command line. It works with TaskPaper-formatted files (but any plain text format will do), looking for `@na` tags (or whatever you specify) in todo files in your current folder.
15
15
 
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.30
4
+ version: 1.2.32
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brett Terpstra
@@ -264,7 +264,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
264
264
  - !ruby/object:Gem::Version
265
265
  version: '0'
266
266
  requirements: []
267
- rubygems_version: 3.2.15
267
+ rubygems_version: 3.2.16
268
268
  signing_key:
269
269
  specification_version: 4
270
270
  summary: A command line tool for adding and listing project todos