doing 2.0.18 → 2.0.19

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: cbd007c83df322397ff7da7025dfbc0e31fd0b54b3247bfffb2e7a61134366a5
4
- data.tar.gz: 78e741e12e3f28771d68bc7028caf2ed03edb677be1cfe8f975f32406d3d4f01
3
+ metadata.gz: fd0eba2b8d88c5bb38ecf0e69043cf2c5e9e5c9819b5601a8ec75b7c0ab1fbde
4
+ data.tar.gz: b03c879cdc2a2aa8b32bcd406ffdcae7f3f23a3c632125dda70c76461cb22127
5
5
  SHA512:
6
- metadata.gz: 1a7262555d07ecea5e0e504df1edaacd48654156a50dff44f1d5ee365c04b6c5ae5f4785d9a97f7b6363c450d8184f186aff21ac47653684494e5aec3d1e5f8a
7
- data.tar.gz: 1b2e38445ffbe3a6a9687bdd8607f5b41591a4370e4ac68f4036155baceac97e98a50c58cb31e1948f6bdbfd6419fa419e9e1db75170e339227e09361f0b601b
6
+ metadata.gz: eeff9de378f4f3989b8e3a4748fa92c11159d0880479b6fd964b9b83676054810f98e84017acc00a1bfa36dde397d6a606d8f428e80c9495e4cba06d09657005
7
+ data.tar.gz: 90eb380657ca922c8a67f1b8479f36d873d12f11a93482831151e606427f6ea4ea7bdc187808c58acb191ad8f6f192b33b600b57d1e6c353194182a9f0fb3266
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ### 2.0.19
2
+
3
+ #### FIXED
4
+
5
+ - Remove any coloring before writing to doing file
6
+
1
7
  ### 2.0.18
2
8
 
3
9
  #### FIXED
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- doing (2.0.18)
4
+ doing (2.0.19)
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.17<!--END VER-->.
9
+ The current version of `doing` is <!--VER-->2.0.18<!--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.18
8
+ v2.0.19
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.18'
2
+ VERSION = '2.0.19'
3
3
  end
data/lib/doing/wwid.rb CHANGED
@@ -2187,7 +2187,8 @@ EOS
2187
2187
  output += list_section({ section: title, template: "\t- %date | %title%t2note", highlight: false, wrap_width: 0, tags_color: false })
2188
2188
  end
2189
2189
 
2190
- output + @other_content_bottom.join("\n") unless @other_content_bottom.nil?
2190
+ output += @other_content_bottom.join("\n") unless @other_content_bottom.nil?
2191
+ output.uncolor
2191
2192
  end
2192
2193
 
2193
2194
  ##
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.18
4
+ version: 2.0.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brett Terpstra