na 1.1.3 → 1.1.4

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: 182588b3837e44b8361cc7c77b1bb52e95323deb7be15062af5487bcca016c3d
4
- data.tar.gz: c46e5ed7493ac655419e41154036913493fb21a5d73de68acd7d10923ea464f0
3
+ metadata.gz: c64a806c23d11bc99a605308ab25e4bb1aa49a09c5a9a12ee525af5b521923cc
4
+ data.tar.gz: 8f96e949971d2a21e3cdf81ba669f0347236dcf876539a9fa541fd4619479459
5
5
  SHA512:
6
- metadata.gz: 91a8e4a51b093c696c691f240f2aa80d7775cd187c74954273bd477c9efbff8180dc14b895e98d1b825c26e2a87ef5393998dce741fc377cfe7a7cae4550d750
7
- data.tar.gz: 82ff75620de7508e307f64f6d62286590ff8d68c657870ae4d11f91cd44fc8c6a09dcde14316768862b4dac5c889febbc87cdf46eb7b509457e8e7faaacc163c
6
+ metadata.gz: 74d2f119f26154192ff1c68f170efa7701a09784a84ab8f0a91fb5dd5a25f5ff1c2ac1add965b680a75499d28792f0b8760472d8e9996e2c278bbeda8599cc05
7
+ data.tar.gz: e82526a9cd103743e41fe8f66fd225fbc0e2160587ba4a4f518c2a465968395e4f69391493ea501620731e6167c0020a5b80d372ea0e4f89dfb4fd0ba69f3fd5
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ### 1.1.4
2
+
3
+ 2022-09-29 04:17
4
+
5
+ #### FIXED
6
+
7
+ - Doing reference in help screen for next
8
+
1
9
  ### 1.1.3
2
10
 
3
11
  2022-09-28 07:12
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- na (1.1.3)
4
+ na (1.1.4)
5
5
  gli (~> 2.21.0)
6
6
  tty-reader (~> 0.9, >= 0.9.0)
7
7
  tty-screen (~> 0.8, >= 0.8.1)
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.1.3
12
+ The current version of `na` is 1.1.4
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.
data/bin/na CHANGED
@@ -53,9 +53,9 @@ class App
53
53
  desc 'Show next actions'
54
54
  arg_name 'OPTIONAL_QUERY'
55
55
  command %i[next show] do |c|
56
- c.example 'doing next', desc: 'display the next actions from any todo files in the current directory'
57
- c.example 'doing next -d 3', desc: 'display the next actions from the current directory, traversing 3 levels deep'
58
- c.example 'doing next marked', desc: 'display next actions for a project you visited in the past'
56
+ c.example 'na next', desc: 'display the next actions from any todo files in the current directory'
57
+ c.example 'na next -d 3', desc: 'display the next actions from the current directory, traversing 3 levels deep'
58
+ c.example 'na next marked', desc: 'display next actions for a project you visited in the past'
59
59
  c.desc 'Recurse to depth'
60
60
  c.arg_name 'DEPTH'
61
61
  c.flag %i[d depth], type: :integer, must_match: /^\d+$/
@@ -349,7 +349,7 @@ class App
349
349
  end
350
350
 
351
351
  if options[:editor]
352
- system %(#{options[:editor]} "#{file}")
352
+ system options[:editor], file
353
353
  else
354
354
  NA.edit_file(file: file, app: options[:app])
355
355
  end
data/lib/na/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Na
2
- VERSION = '1.1.3'
2
+ VERSION = '1.1.4'
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.1.2<!--END VER-->.
12
+ The current version of `na` is <!--VER-->1.1.3<!--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,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: na
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.3
4
+ version: 1.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brett Terpstra
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-28 00:00:00.000000000 Z
11
+ date: 2022-09-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake