howzit 2.0.31 → 2.0.33

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: 26dd07092f365cd21cb4d077f0bc50fca533af0a887254e3086aa9151bb6a45a
4
- data.tar.gz: e015fc62c9540593afd17f8b134c1e0bedbd7ee14424ec02f9d8a7de419219c5
3
+ metadata.gz: e4db0b38010c389a29c4b0782bb0af5feb7074312d68e4d9bf2621f980107bf4
4
+ data.tar.gz: cf3e73b06ebed418f06cd9c70101086b6ab3b6bd8197c6da0590f091fdd6cef0
5
5
  SHA512:
6
- metadata.gz: 549a57df5cd0e0760ba579dea70c82d08db6cc743b5bcf3e659058534f01dfd2536ebf1fd0f3f47dac2e9275ed82ebef8353c630c961424797dc281931a4fc22
7
- data.tar.gz: f9fe0d54b25137ec1d89dfcd5ead0ee9814dd5b74af0a4797743c4e1f28e793aee4d018bfc1d1774470f5d7979dd9866aea80539a0bccc462f0fc0e53e413f77
6
+ metadata.gz: 30e7809cc491ad6436b3171bfca493e9f3147d3c6c727a8874dcd0bf37fa273fb5712ef3959cb48589c76b05f12c91a3c39eac9306462019f0f2086031fd2697
7
+ data.tar.gz: d223732085798c95b18b5801050c06f7894be9eebe95e7c5000ed6962045e8cc767ae30deecc8423f935b9b8ba85998f585636672bc6a57082c521b8e3c41784
data/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ### 2.0.33
2
+
3
+ 2023-01-15 13:26
4
+
5
+ ### 2.0.32
6
+
7
+ 2023-01-15 10:46
8
+
9
+ #### IMPROVED
10
+
11
+ - When using fzf chooser, make matching exact to avoid running multiple topics
12
+
1
13
  ### 2.0.31
2
14
 
3
15
  2022-08-31 07:17
data/README.md CHANGED
@@ -37,6 +37,11 @@ You can install `howzit` by running:
37
37
 
38
38
  gem install howzit
39
39
 
40
+ If you run into permission errors using the above command, you'll need to either use `sudo` (`sudo gem install howzit`) or if you're using Homebrew, you have the option to install via [brew-gem](https://github.com/sportngin/brew-gem):
41
+
42
+ brew install brew-gem
43
+ brew gem install howzit
44
+
40
45
  ### Usage
41
46
 
42
47
  [See the wiki](https://github.com/ttscoff/howzit/wiki) for documentation.
@@ -786,7 +786,10 @@ module Howzit
786
786
  else
787
787
  titles = matches.map { |topic| topic.title }
788
788
  res = Prompt.choose(titles)
789
+ old_matching = Howzit.options[:matching]
790
+ Howzit.options[:matching] = 'exact'
789
791
  res.each { |title| topic_matches.concat(find_topic(title)) }
792
+ Howzit.options[:matching] = old_matching
790
793
  end
791
794
  end
792
795
  end
@@ -3,5 +3,5 @@
3
3
  # Primary module for this gem.
4
4
  module Howzit
5
5
  # Current Howzit version.
6
- VERSION = '2.0.31'
6
+ VERSION = '2.0.33'
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: howzit
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.31
4
+ version: 2.0.33
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-08-31 00:00:00.000000000 Z
11
+ date: 2023-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler