na 1.2.31 → 1.2.32

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: 9effe5f1d13e6d4c1425a3138cde66a1401efa76bef8271fd00d849d574fd759
4
- data.tar.gz: dd722483b8268c09fe9d36ef62124a99f432fb784482f285f1e2ec0d5137c46a
3
+ metadata.gz: 440413f1b22a8745d119a8b55098ad3fd9c36096f930ad5f25d6091a9c9cb496
4
+ data.tar.gz: 02e42b27ea06069b669fdded2929b4351990b9e3be35add61cd734a50d2fa28a
5
5
  SHA512:
6
- metadata.gz: 2812881c18787dc895dd4303ad8e7db8258988af3f510c76a699894d78be065a35e2817f60fb5d045041796c439e9c8d49cd92cb8269f1fe8a1062738b81a4e4
7
- data.tar.gz: 62eceacb9e8603f74dea0b45105a3f70762169fc1fc4db3c863d2486824c7f52fa35d437922f978babe707cd903aaa413745601c9e3593e428a6a092360e7417
6
+ metadata.gz: 3fae03d1566494bff4c792fa6921d975e94e9984688873e05e8936e97a3a0dc1f2134f6677218f66d53d6be87481100835fd66d4e30a27e1db42bf3cb09805c8
7
+ data.tar.gz: 3d3c6482675e0c880c51d7f0ea460225c869376db8d84a245c296ec23dceabd9bf481387fac05c06c88d73e914529beb4effd540ea90b9d558e30be1e1ffcc9d
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ### 1.2.32
2
+
3
+ 2023-08-29 10:59
4
+
5
+ #### FIXED
6
+
7
+ - Missing commands
8
+
1
9
  ### 1.2.31
2
10
 
3
11
  2023-08-29 10:32
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- na (1.2.31)
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.31
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,7 +77,7 @@ SYNOPSIS
77
77
  na [global options] command [command options] [arguments...]
78
78
 
79
79
  VERSION
80
- 1.2.31
80
+ 1.2.32
81
81
 
82
82
  GLOBAL OPTIONS
83
83
  -a, --add - Add a next action (deprecated, for backwards compatibility)
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.31'
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.29<!--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.31
4
+ version: 1.2.32
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brett Terpstra