na 1.2.89 → 1.2.90

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: a5182be07e2e58ad67be0ba3f6107101ec1652ac54149e8798cd9b6638d5aa90
4
- data.tar.gz: 4dbb72e1ed0948a170500aee910c3c4c948a836f998d8840c300140c3ff5d7d1
3
+ metadata.gz: 2fcb6575780c78697521cb7d52c081d346ed8bb9ea75f2030329aec62a7cc8f8
4
+ data.tar.gz: d22568b292a5dd8162302a5e59ad3746ada5ce2a0d21ba64a7dd3e150aa41b7b
5
5
  SHA512:
6
- metadata.gz: 0ec130948601e1f66a719b3d5ee3aa42aceacdc1dabe8329bfaf3c65122cdf98f250e522b456306164592561ebe0afec5903ffd18fc24355809d1475648072e1
7
- data.tar.gz: 3055f5bc4aa9b5a47eb0c3d13c0d501e35c7b189a8f6ae66dcad368142dfed49f7995c890dc2ab3ca314fc68b3e38ec67ebf1311f02c3a839300d5db44d8a2de
6
+ metadata.gz: 43c3f62e78ea62fa6b4ff14a21fed2731c0513a26f0a8eb06f8d11f2f8c029325e97f477160ba87dae5f3a3f667a1197460cb56c47e37874116de5482a5a27fc
7
+ data.tar.gz: f9afb28dd22924584f2fe4f4393de2b13e4a6a938e494e38f3c30153cf5520f9a3b6dc94fabadca92503d6246218021d2d1626740f4e715a6ad9303867399915
data/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ### 1.2.90
2
+
3
+ 2025-11-09 10:57
4
+
5
+ #### CHANGED
6
+
7
+ - Update menu shows a single "Run Plugin" option leading to a plugin submenu
8
+
9
+ #### FIXED
10
+
11
+ - No duplicate depth recursion matches
12
+
1
13
  ### 1.2.89
2
14
 
3
15
  2025-10-29 06:36
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- na (1.2.89)
4
+ na (1.2.90)
5
5
  chronic (~> 0.10, >= 0.10.2)
6
6
  csv (>= 3.2)
7
7
  git (~> 3.0.0)
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.89.
12
+ The current version of `na` is 1.2.90.
13
13
 
14
14
 
15
15
  ### Table of contents
@@ -116,7 +116,7 @@ SYNOPSIS
116
116
  na [global options] command [command options] [arguments...]
117
117
 
118
118
  VERSION
119
- 1.2.89
119
+ 1.2.90
120
120
 
121
121
  GLOBAL OPTIONS
122
122
  -a, --add - Add a next action (deprecated, for backwards compatibility)
@@ -796,8 +796,9 @@ module NA
796
796
  f.split('/').any? { |seg| seg.start_with?('.') && seg !~ /^\.\.?$/ }
797
797
  end
798
798
  end
799
+ files.map! { |f| f.sub(%r{\A\./}, '') }
799
800
  files.each { |f| save_working_dir(File.expand_path(f)) }
800
- files
801
+ files.uniq
801
802
  end
802
803
  end
803
804
 
data/lib/na/version.rb CHANGED
@@ -5,5 +5,5 @@
5
5
  module Na
6
6
  ##
7
7
  # Current version of the na gem.
8
- VERSION = '1.2.89'
8
+ VERSION = '1.2.90'
9
9
  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.88<!--END VER-->.
12
+ The current version of `na` is <!--VER-->1.2.89<!--END VER-->.
13
13
 
14
14
  <!--GITHUB-->
15
15
  ### Table of contents
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.89
4
+ version: 1.2.90
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brett Terpstra