doing 2.0.21 → 2.0.22

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: 40eb7b9669acd1238ef3fb56af428e649dfa881eb33e78f8be5211099c53722f
4
- data.tar.gz: a44d254ea4a921668b639a6dcfc5ff6b6d0849a47c7501e4d40cdba7df16f65a
3
+ metadata.gz: 36dd66af3e00464697ab6eb89101e501e0b50ee6b21bc8629a13e21b3906c18a
4
+ data.tar.gz: 758903fc78fd9a812ab723a5af00cdec0c6cd13c1316dc638e9ca10f24bf939a
5
5
  SHA512:
6
- metadata.gz: c38fb410b3c9d820d762b7a288547b404bed9b46fbc643d59d6eb8e76dcf2a31ad8b41a387f4be6619b8e7098515784be40fee34eb220b6fd9119d53c9b238da
7
- data.tar.gz: 35627d3c64bf7034987aa1195e4c908565b317cb6905dff014c189f42e2c07a54e0e81bfc2c4186007df37b1309eefbfeb33c06cd3e74a0b2fdba979468c45e1
6
+ metadata.gz: e755266bcfedb72b69f966a2621af76b5014168cd44898c2ba24b0dfc711482aef6a3694afd8010abbeb3bdeb88749532b15f1699ab6926227679ffb7308758d
7
+ data.tar.gz: f892efc03f34754866f436603e49c3e3f9b9ec52496ecdcddb1c5783abc485b7996bb5385d531a5814a4ee9b52d262f754545ee4a0a0559e49ccfff56de38bdb
data/CHANGELOG.md CHANGED
@@ -1,4 +1,4 @@
1
- ### 2.0.21
1
+ ### 2.0.22
2
2
 
3
3
  #### IMPROVED
4
4
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- doing (2.0.21)
4
+ doing (2.0.22)
5
5
  chronic (~> 0.10, >= 0.10.2)
6
6
  deep_merge (~> 1.2, >= 1.2.1)
7
7
  gli (~> 2.19, >= 2.19.2)
data/README.md CHANGED
@@ -6,7 +6,7 @@ _If you're one of the rare people like me who find this useful, feel free to [bu
6
6
 
7
7
  <!--README-->
8
8
 
9
- The current version of `doing` is <!--VER-->2.0.20<!--END VER-->.
9
+ The current version of `doing` is <!--VER-->2.0.21<!--END VER-->.
10
10
 
11
11
  Find all of the documentation in the [doing wiki](https://github.com/ttscoff/doing/wiki).
12
12
 
data/doing.rdoc CHANGED
@@ -5,7 +5,7 @@ record of what you've been doing, complete with tag-based time tracking. The
5
5
  command line tool allows you to add entries, annotate with tags and notes, and
6
6
  view your entries with myriad options, with a focus on a "natural" language syntax.
7
7
 
8
- v2.0.21
8
+ v2.0.22
9
9
 
10
10
  === Global Options
11
11
  === --config_file arg
data/lib/doing/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Doing
2
- VERSION = '2.0.21'
2
+ VERSION = '2.0.22'
3
3
  end
data/lib/doing/wwid.rb CHANGED
@@ -617,9 +617,9 @@ module Doing
617
617
  fzf = File.join(fzf_dir, 'bin/fzf')
618
618
  return fzf if File.exist?(fzf)
619
619
 
620
- Doing.logger.log_now(:warn, 'Downloading and installing FZF. This will only happen once')
620
+ Doing.logger.log_now(:warn, 'Compiling and installing FZF. This will only happen once')
621
621
  Doing.logger.log_now(:warn, 'fzf is copyright Junegunn Choi <https://github.com/junegunn/fzf/blob/master/LICENSE>')
622
- res = `git clone --depth 1 https://github.com/junegunn/fzf.git #{fzf_dir}`
622
+
623
623
  res = `#{fzf_dir}/install --bin --no-key-bindings --no-completion --no-update-rc --no-bash --no-zsh --no-fish`
624
624
 
625
625
  raise DoingRuntimeError unless File.exist?(fzf)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: doing
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.21
4
+ version: 2.0.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brett Terpstra