doing 2.0.11 → 2.0.17

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: fd5337fb3832570e16b9d3572b931c8484f3fe84547aa2ba5db15a4a0a622713
4
- data.tar.gz: e9df16fbd231aeba99a1e4976e7e0f96908f7f1bb0e16e385722db1e6de79548
3
+ metadata.gz: 66694d7857dda9e418974f5f1777d8fb3bf603f3bfbbec8d389fb6ae50b65dbf
4
+ data.tar.gz: 5f49710a4a7c00fe39bdce0491fc15d25ea652c4c3c2c7c30b26527de3438360
5
5
  SHA512:
6
- metadata.gz: 7b30f84f92598bae30f83d476d3989c0fe9a3aff32a7a3e8472be85c235c89e4dfc29f65c3eb9f5cc99076e94d5a00fe93d6291ba00b8e73c823a28407349d07
7
- data.tar.gz: fe71eb8ab551f9f7a240e49c474ce01abde51182300c9c22a18062b25803dffa427714ee22665f34a98947d1742e68a7c4694a92eefddfc82a274489679fa21f
6
+ metadata.gz: b37aea2aed6b17e72d85e647bac095e251cc30037483195996049f6c994e5c0c1f0b59ef7c09f8d53d06d48cd51b15119e68220e0a9107f768492c74ea66e61b
7
+ data.tar.gz: 83c266d906f82c07d9c6b4932d1e0464b46e56de14ad5bde144d5ee2baa88966f1cbef30c6f6a673107a831476c8115dd088a922ae3dcccb833ccb2a9e1ce5b4
data/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ### 2.0.17
2
+
3
+ - Improvements to %title formatting and wrapping
4
+
5
+ ### 2.0.16
6
+
7
+ - Test release to validate git flow automation
8
+
9
+ ### 2.0.13
10
+
11
+ #### FIXED
12
+
13
+ - Remove amatch gem dependency due to compatibility issues with Windows systems (also removes `--fuzzy` option from all search commands)
14
+
1
15
  ### 2.0.11
2
16
 
3
17
  #### NEW
data/Gemfile.lock CHANGED
@@ -1,8 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- doing (2.0.11)
5
- amatch (~> 0.4, >= 0.4.0)
4
+ doing (2.0.17)
6
5
  chronic (~> 0.10, >= 0.10.2)
7
6
  deep_merge (~> 1.2, >= 1.2.1)
8
7
  gli (~> 2.19, >= 2.19.2)
@@ -18,9 +17,6 @@ GEM
18
17
  minitest (>= 5.1)
19
18
  tzinfo (~> 2.0)
20
19
  zeitwerk (~> 2.3)
21
- amatch (0.4.0)
22
- mize
23
- tins (~> 1.0)
24
20
  aruba (1.0.4)
25
21
  childprocess (>= 2.0, < 5.0)
26
22
  contracts (~> 0.16.0)
@@ -75,17 +71,16 @@ GEM
75
71
  concurrent-ruby (~> 1.0)
76
72
  middleware (0.1.0)
77
73
  minitest (5.14.4)
78
- mize (0.4.0)
79
- protocol (~> 2.0)
80
74
  multi_test (0.1.2)
75
+ parallel (1.21.0)
76
+ parallel_tests (3.7.3)
77
+ parallel
81
78
  power_assert (2.0.1)
82
79
  protobuf-cucumber (3.10.8)
83
80
  activesupport (>= 3.2)
84
81
  middleware
85
82
  thor
86
83
  thread_safe
87
- protocol (2.0.0)
88
- ruby_parser (~> 3.0)
89
84
  rake (13.0.6)
90
85
  rdoc (6.3.3)
91
86
  redcarpet (3.5.1)
@@ -93,11 +88,7 @@ GEM
93
88
  diff-lcs (>= 1.2.0, < 2.0)
94
89
  rspec-support (~> 3.10.0)
95
90
  rspec-support (3.10.3)
96
- ruby_parser (3.18.1)
97
- sexp_processor (~> 4.16)
98
91
  safe_yaml (1.0.5)
99
- sexp_processor (4.16.0)
100
- sync (0.5.0)
101
92
  sys-uname (1.2.2)
102
93
  ffi (~> 1.1)
103
94
  temple (0.8.2)
@@ -106,8 +97,6 @@ GEM
106
97
  thor (1.1.0)
107
98
  thread_safe (0.3.6)
108
99
  tilt (2.0.10)
109
- tins (1.29.1)
110
- sync
111
100
  tzinfo (2.0.4)
112
101
  concurrent-ruby (~> 1.0)
113
102
  yard (0.9.26)
@@ -120,6 +109,7 @@ DEPENDENCIES
120
109
  aruba (~> 1.0.2)
121
110
  doing!
122
111
  github-markup
112
+ parallel_tests
123
113
  rake (~> 13.0, >= 13.0.1)
124
114
  rdoc (~> 6.3.1)
125
115
  redcarpet
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.10<!--END VER-->.
9
+ The current version of `doing` is <!--VER-->2.0.16<!--END VER-->.
10
10
 
11
11
  Find all of the documentation in the [doing wiki](https://github.com/ttscoff/doing/wiki).
12
12
 
data/Rakefile CHANGED
@@ -6,6 +6,8 @@ require 'rdoc/task'
6
6
  require 'rake/testtask'
7
7
  require 'open3'
8
8
  require 'yard'
9
+ require 'parallel_tests'
10
+ require 'parallel_tests/tasks'
9
11
 
10
12
  YARD::Rake::YardocTask.new do |t|
11
13
  t.files = ['lib/doing/*.rb']
data/bin/doing CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env ruby -W1
1
+ #!/usr/bin/env ruby
2
2
  # frozen_string_literal: true
3
3
 
4
4
  $LOAD_PATH.unshift File.join(__dir__, '..', 'lib')
@@ -198,8 +198,8 @@ command %i[reset begin] do |c|
198
198
  c.arg_name 'QUERY'
199
199
  c.flag [:search]
200
200
 
201
- c.desc 'Use alternative fuzzy matching for search string'
202
- c.switch [:fuzzy], default_value: false, negatable: false
201
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
202
+ # c.switch [:fuzzy], default_value: false, negatable: false
203
203
 
204
204
  c.desc 'Force exact search string matching (case sensitive)'
205
205
  c.switch %i[x exact], default_value: false, negatable: false
@@ -219,6 +219,7 @@ command %i[reset begin] do |c|
219
219
  c.switch %i[i interactive], negatable: false, default_value: false
220
220
 
221
221
  c.action do |global_options, options, args|
222
+ options[:fuzzy] = false
222
223
  if options[:section]
223
224
  options[:section] = wwid.guess_section(options[:section]) || options[:section].cap_first
224
225
  end
@@ -296,8 +297,8 @@ command :note do |c|
296
297
  c.arg_name 'QUERY'
297
298
  c.flag [:search]
298
299
 
299
- c.desc 'Use alternative fuzzy matching for search string'
300
- c.switch [:fuzzy], default_value: false, negatable: false
300
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
301
+ # c.switch [:fuzzy], default_value: false, negatable: false
301
302
 
302
303
  c.desc 'Force exact search string matching (case sensitive)'
303
304
  c.switch %i[x exact], default_value: false, negatable: false
@@ -317,6 +318,7 @@ command :note do |c|
317
318
  c.switch %i[i interactive], negatable: false, default_value: false
318
319
 
319
320
  c.action do |_global_options, options, args|
321
+ options[:fuzzy] = false
320
322
  if options[:section]
321
323
  options[:section] = wwid.guess_section(options[:section]) || options[:section].cap_first
322
324
  end
@@ -854,8 +856,8 @@ command :cancel do |c|
854
856
  c.arg_name 'QUERY'
855
857
  c.flag [:search]
856
858
 
857
- c.desc 'Use alternative fuzzy matching for search string'
858
- c.switch [:fuzzy], default_value: false, negatable: false
859
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
860
+ # c.switch [:fuzzy], default_value: false, negatable: false
859
861
 
860
862
  c.desc 'Force exact search string matching (case sensitive)'
861
863
  c.switch %i[x exact], default_value: false, negatable: false
@@ -874,6 +876,7 @@ command :cancel do |c|
874
876
  c.switch %i[i interactive], negatable: false, default_value: false
875
877
 
876
878
  c.action do |_global_options, options, args|
879
+ options[:fuzzy] = false
877
880
  if options[:section]
878
881
  section = wwid.guess_section(options[:section]) || options[:section].cap_first
879
882
  else
@@ -956,8 +959,8 @@ command :finish do |c|
956
959
  c.arg_name 'QUERY'
957
960
  c.flag [:search]
958
961
 
959
- c.desc 'Use alternative fuzzy matching for search string'
960
- c.switch [:fuzzy], default_value: false, negatable: false
962
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
963
+ # c.switch [:fuzzy], default_value: false, negatable: false
961
964
 
962
965
  c.desc 'Force exact search string matching (case sensitive)'
963
966
  c.switch %i[x exact], default_value: false, negatable: false
@@ -995,6 +998,7 @@ command :finish do |c|
995
998
  c.switch %i[i interactive], negatable: false, default_value: false
996
999
 
997
1000
  c.action do |_global_options, options, args|
1001
+ options[:fuzzy] = false
998
1002
  unless options[:auto]
999
1003
  if options[:took]
1000
1004
  took = wwid.chronify_qty(options[:took])
@@ -1086,8 +1090,8 @@ command %i[again resume] do |c|
1086
1090
  c.arg_name 'QUERY'
1087
1091
  c.flag [:search]
1088
1092
 
1089
- c.desc 'Use alternative fuzzy matching for search string'
1090
- c.switch [:fuzzy], default_value: false, negatable: false
1093
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
1094
+ # c.switch [:fuzzy], default_value: false, negatable: false
1091
1095
 
1092
1096
  c.desc 'Force exact search string matching (case sensitive)'
1093
1097
  c.switch %i[x exact], default_value: false, negatable: false
@@ -1114,6 +1118,7 @@ command %i[again resume] do |c|
1114
1118
  c.switch %i[i interactive], negatable: false, default_value: false
1115
1119
 
1116
1120
  c.action do |_global_options, options, _args|
1121
+ options[:fuzzy] = false
1117
1122
  tags = options[:tag].nil? ? [] : options[:tag].to_tags
1118
1123
 
1119
1124
  options[:case] = options[:case].normalize_case
@@ -1195,8 +1200,8 @@ command :tag do |c|
1195
1200
  c.arg_name 'QUERY'
1196
1201
  c.flag [:search]
1197
1202
 
1198
- c.desc 'Use alternative fuzzy matching for search string'
1199
- c.switch [:fuzzy], default_value: false, negatable: false
1203
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
1204
+ # c.switch [:fuzzy], default_value: false, negatable: false
1200
1205
 
1201
1206
  c.desc 'Force exact search string matching (case sensitive)'
1202
1207
  c.switch %i[x exact], default_value: false, negatable: false
@@ -1216,6 +1221,7 @@ command :tag do |c|
1216
1221
  c.switch %i[i interactive], negatable: false, default_value: false
1217
1222
 
1218
1223
  c.action do |_global_options, options, args|
1224
+ options[:fuzzy] = false
1219
1225
  raise MissingArgument, 'You must specify at least one tag' if args.empty? && !options[:autotag]
1220
1226
 
1221
1227
  raise InvalidArgument, '--search and --tag can not be used together' if options[:search] && options[:tag]
@@ -1331,8 +1337,8 @@ command [:mark, :flag] do |c|
1331
1337
  c.arg_name 'QUERY'
1332
1338
  c.flag [:search]
1333
1339
 
1334
- c.desc 'Use alternative fuzzy matching for search string'
1335
- c.switch [:fuzzy], default_value: false, negatable: false
1340
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
1341
+ # c.switch [:fuzzy], default_value: false, negatable: false
1336
1342
 
1337
1343
  c.desc 'Force exact search string matching (case sensitive)'
1338
1344
  c.switch %i[x exact], default_value: false, negatable: false
@@ -1352,6 +1358,7 @@ command [:mark, :flag] do |c|
1352
1358
  c.switch %i[i interactive], negatable: false, default_value: false
1353
1359
 
1354
1360
  c.action do |_global_options, options, _args|
1361
+ options[:fuzzy] = false
1355
1362
  mark = settings['marker_tag'] || 'flagged'
1356
1363
 
1357
1364
  raise InvalidArgument, '--search and --tag can not be used together' if options[:search] && options[:tag]
@@ -1459,8 +1466,8 @@ command :show do |c|
1459
1466
  c.arg_name 'QUERY'
1460
1467
  c.flag [:search]
1461
1468
 
1462
- c.desc 'Use alternative fuzzy matching for search string'
1463
- c.switch [:fuzzy], default_value: false, negatable: false
1469
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
1470
+ # c.switch [:fuzzy], default_value: false, negatable: false
1464
1471
 
1465
1472
  c.desc 'Force exact search string matching (case sensitive)'
1466
1473
  c.switch %i[x exact], default_value: false, negatable: false
@@ -1510,6 +1517,7 @@ command :show do |c|
1510
1517
  c.arg_name 'FORMAT'
1511
1518
  c.flag %i[o output]
1512
1519
  c.action do |global_options, options, args|
1520
+ options[:fuzzy] = false
1513
1521
  raise DoingRuntimeError, %(Invalid output type "#{options[:output]}") if options[:output] && options[:output] !~ Doing::Plugins.plugin_regex(type: :export)
1514
1522
 
1515
1523
  tag_filter = false
@@ -1574,7 +1582,12 @@ command :show do |c|
1574
1582
 
1575
1583
  options[:times] = true if options[:totals]
1576
1584
 
1577
- tags_color = settings.key?('tags_color') ? settings['tags_color'] : nil
1585
+ template = settings['templates']['default'].deep_merge({
1586
+ 'wrap_width' => settings['wrap_width'] || 0,
1587
+ 'date_format' => settings['default_date_format'],
1588
+ 'order' => settings['order'] || 'asc',
1589
+ 'tags_color' => settings['tags_color']
1590
+ })
1578
1591
 
1579
1592
  options[:case] = options[:case].normalize_case
1580
1593
 
@@ -1595,7 +1608,7 @@ command :show do |c|
1595
1608
  opt[:tag] = nil
1596
1609
  opt[:tag_filter] = tag_filter
1597
1610
  opt[:tag_order] = options[:tag_order].normalize_order
1598
- opt[:tags_color] = tags_color
1611
+ opt[:tags_color] = template['tags_color']
1599
1612
 
1600
1613
  Doing::Pager.page wwid.list_section(opt)
1601
1614
  end
@@ -1646,8 +1659,8 @@ command %i[grep search] do |c|
1646
1659
  c.desc 'Only show items with recorded time intervals'
1647
1660
  c.switch [:only_timed], default_value: false, negatable: false
1648
1661
 
1649
- c.desc 'Use alternative fuzzy matching for search string'
1650
- c.switch [:fuzzy], default_value: false, negatable: false
1662
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
1663
+ # c.switch [:fuzzy], default_value: false, negatable: false
1651
1664
 
1652
1665
  c.desc 'Force exact string matching (case sensitive)'
1653
1666
  c.switch %i[x exact], default_value: false, negatable: false
@@ -1663,9 +1676,11 @@ command %i[grep search] do |c|
1663
1676
  c.switch %i[i interactive], default_value: false, negatable: false
1664
1677
 
1665
1678
  c.action do |_global_options, options, args|
1679
+ options[:fuzzy] = false
1666
1680
  raise DoingRuntimeError, %(Invalid output type "#{options[:output]}") if options[:output] && options[:output] !~ Doing::Plugins.plugin_regex(type: :export)
1667
1681
 
1668
- tags_color = settings.key?('tags_color') ? settings['tags_color'] : nil
1682
+ template = settings['templates']['default'].deep_merge(settings)
1683
+ tags_color = template.key?('tags_color') ? template['tags_color'] : nil
1669
1684
 
1670
1685
  section = wwid.guess_section(options[:section]) if options[:section]
1671
1686
 
@@ -1731,7 +1746,9 @@ command :recent do |c|
1731
1746
 
1732
1747
  options[:t] = true if options[:totals]
1733
1748
  options[:sort_tags] = options[:tag_sort] =~ /^n/i
1734
- tags_color = settings.key?('tags_color') ? settings['tags_color'] : nil
1749
+
1750
+ template = settings['templates']['recent'].deep_merge(settings['templates']['default'])
1751
+ tags_color = template.key?('tags_color') ? template['tags_color'] : nil
1735
1752
 
1736
1753
  opts = {
1737
1754
  sort_tags: options[:sort_tags],
@@ -1792,8 +1809,7 @@ command :today do |c|
1792
1809
  before: options[:before],
1793
1810
  section: options[:section],
1794
1811
  sort_tags: options[:sort_tags],
1795
- totals: options[:totals],
1796
- order: settings.dig('templates', 'today', 'order')
1812
+ totals: options[:totals]
1797
1813
  }
1798
1814
  Doing::Pager.page wwid.today(options[:times], options[:output], opt).chomp
1799
1815
  end
@@ -1995,8 +2011,8 @@ command :last do |c|
1995
2011
  c.arg_name 'QUERY'
1996
2012
  c.flag [:search]
1997
2013
 
1998
- c.desc 'Use alternative fuzzy matching for search string'
1999
- c.switch [:fuzzy], default_value: false, negatable: false
2014
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
2015
+ # c.switch [:fuzzy], default_value: false, negatable: false
2000
2016
 
2001
2017
  c.desc 'Force exact search string matching (case sensitive)'
2002
2018
  c.switch %i[x exact], default_value: false, negatable: false
@@ -2009,6 +2025,7 @@ command :last do |c|
2009
2025
  c.flag [:case], must_match: /^[csi]/, default_value: 'smart'
2010
2026
 
2011
2027
  c.action do |global_options, options, _args|
2028
+ options[:fuzzy] = false
2012
2029
  raise InvalidArgument, '--tag and --search can not be used together' if options[:tag] && options[:search]
2013
2030
 
2014
2031
  if options[:tag].nil?
@@ -2197,8 +2214,8 @@ command :view do |c|
2197
2214
  c.arg_name 'QUERY'
2198
2215
  c.flag [:search]
2199
2216
 
2200
- c.desc 'Use alternative fuzzy matching for search string'
2201
- c.switch [:fuzzy], default_value: false, negatable: false
2217
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
2218
+ # c.switch [:fuzzy], default_value: false, negatable: false
2202
2219
 
2203
2220
  c.desc 'Force exact search string matching (case sensitive)'
2204
2221
  c.switch %i[x exact], default_value: false, negatable: false
@@ -2233,6 +2250,7 @@ command :view do |c|
2233
2250
  c.switch %i[i interactive], negatable: false, default_value: false
2234
2251
 
2235
2252
  c.action do |global_options, options, args|
2253
+ options[:fuzzy] = false
2236
2254
  raise DoingRuntimeError, %(Invalid output type "#{options[:output]}") if options[:output] && options[:output] !~ Doing::Plugins.plugin_regex(type: :export)
2237
2255
 
2238
2256
  raise InvalidArgument, '--tag and --search can not be used together' if options[:tag] && options[:search]
@@ -2267,6 +2285,7 @@ command :view do |c|
2267
2285
 
2268
2286
  template = view.key?('template') ? view['template'] : nil
2269
2287
  date_format = view.key?('date_format') ? view['date_format'] : nil
2288
+
2270
2289
  tags_color = view.key?('tags_color') ? view['tags_color'] : nil
2271
2290
  tag_filter = false
2272
2291
  if options[:tag]
@@ -2424,8 +2443,8 @@ command %i[archive move] do |c|
2424
2443
  c.arg_name 'QUERY'
2425
2444
  c.flag [:search]
2426
2445
 
2427
- c.desc 'Use alternative fuzzy matching for search string'
2428
- c.switch [:fuzzy], default_value: false, negatable: false
2446
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
2447
+ # c.switch [:fuzzy], default_value: false, negatable: false
2429
2448
 
2430
2449
  c.desc 'Force exact search string matching (case sensitive)'
2431
2450
  c.switch %i[x exact], default_value: false, negatable: false
@@ -2443,6 +2462,7 @@ command %i[archive move] do |c|
2443
2462
  c.flag [:before]
2444
2463
 
2445
2464
  c.action do |_global_options, options, args|
2465
+ options[:fuzzy] = false
2446
2466
  if args.empty?
2447
2467
  section = settings['current_section']
2448
2468
  tags = []
@@ -2505,8 +2525,8 @@ command :rotate do |c|
2505
2525
  c.arg_name 'QUERY'
2506
2526
  c.flag [:search]
2507
2527
 
2508
- c.desc 'Use alternative fuzzy matching for search string'
2509
- c.switch [:fuzzy], default_value: false, negatable: false
2528
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
2529
+ # c.switch [:fuzzy], default_value: false, negatable: false
2510
2530
 
2511
2531
  c.desc 'Force exact search string matching (case sensitive)'
2512
2532
  c.switch %i[x exact], default_value: false, negatable: false
@@ -2524,6 +2544,7 @@ command :rotate do |c|
2524
2544
  c.flag [:before]
2525
2545
 
2526
2546
  c.action do |_global_options, options, args|
2547
+ options[:fuzzy] = false
2527
2548
  if options[:section] && options[:section] !~ /^all$/i
2528
2549
  options[:section] = wwid.guess_section(options[:section])
2529
2550
  end
@@ -2728,8 +2749,8 @@ command :import do |c|
2728
2749
  c.arg_name 'QUERY'
2729
2750
  c.flag [:search]
2730
2751
 
2731
- c.desc 'Use alternative fuzzy matching for search string'
2732
- c.switch [:fuzzy], default_value: false, negatable: false
2752
+ # c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
2753
+ # c.switch [:fuzzy], default_value: false, negatable: false
2733
2754
 
2734
2755
  c.desc 'Force exact search string matching (case sensitive)'
2735
2756
  c.switch %i[x exact], default_value: false, negatable: false
@@ -2779,7 +2800,7 @@ command :import do |c|
2779
2800
  c.switch [:overlap], negatable: true
2780
2801
 
2781
2802
  c.action do |_global_options, options, args|
2782
-
2803
+ options[:fuzzy] = false
2783
2804
  if options[:section]
2784
2805
  options[:section] = wwid.guess_section(options[:section]) || options[:section].cap_first
2785
2806
  end
data/doing.gemspec CHANGED
@@ -30,9 +30,10 @@ spec = Gem::Specification.new do |s|
30
30
  s.add_development_dependency 'yard'
31
31
  s.add_development_dependency 'redcarpet'
32
32
  s.add_development_dependency 'github-markup'
33
+ s.add_development_dependency 'parallel_tests'
33
34
  s.add_runtime_dependency('gli', '~> 2.19', '>= 2.19.2')
34
35
  s.add_runtime_dependency('haml','~>5.0.0', '>= 5.0.0')
35
36
  s.add_runtime_dependency('chronic','~> 0.10', '>= 0.10.2')
36
37
  s.add_runtime_dependency('deep_merge', '~> 1.2', '>= 1.2.1')
37
- s.add_runtime_dependency('amatch', '~> 0.4', '>= 0.4.0')
38
+ # s.add_runtime_dependency('amatch', '~> 0.4', '>= 0.4.0')
38
39
  end
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.11
8
+ v2.0.17
9
9
 
10
10
  === Global Options
11
11
  === --config_file arg
@@ -139,11 +139,6 @@ Edit duplicated entry with vim before adding
139
139
 
140
140
 
141
141
 
142
- ===== --fuzzy
143
- Use alternative fuzzy matching for search string
144
-
145
-
146
-
147
142
  ===== -i|--interactive
148
143
  Select item to resume from a menu of matching entries
149
144
 
@@ -220,11 +215,6 @@ Tag filter, combine multiple tags with a comma. Added for compatibility with oth
220
215
  [Default Value] None
221
216
 
222
217
 
223
- ===== --fuzzy
224
- Use alternative fuzzy matching for search string
225
-
226
-
227
-
228
218
  ===== --[no-]label
229
219
  Label moved items with @from(SECTION_NAME)
230
220
 
@@ -347,11 +337,6 @@ Archive entries
347
337
 
348
338
 
349
339
 
350
- ===== --fuzzy
351
- Use alternative fuzzy matching for search string
352
-
353
-
354
-
355
340
  ===== -i|--interactive
356
341
  Select item(s) to cancel from a menu of matching entries
357
342
 
@@ -606,11 +591,6 @@ Include date
606
591
 
607
592
 
608
593
 
609
- ===== --fuzzy
610
- Use alternative fuzzy matching for search string
611
-
612
-
613
-
614
594
  ===== -i|--interactive
615
595
  Select item(s) to finish from a menu of matching entries
616
596
 
@@ -687,11 +667,6 @@ Sort tags by (name|time)
687
667
  [Must Match] (?i-mx:^(?:name|time)$)
688
668
 
689
669
 
690
- ===== --fuzzy
691
- Use alternative fuzzy matching for search string
692
-
693
-
694
-
695
670
  ===== -i|--interactive
696
671
  Display an interactive menu of results to perform further operations
697
672
 
@@ -808,11 +783,6 @@ Autotag entries
808
783
 
809
784
 
810
785
 
811
- ===== --fuzzy
812
- Use alternative fuzzy matching for search string
813
-
814
-
815
-
816
786
  ===== --not
817
787
  Import items that *don't* match search/tag/date filters
818
788
 
@@ -880,11 +850,6 @@ Edit entry with vim
880
850
 
881
851
 
882
852
 
883
- ===== --fuzzy
884
- Use alternative fuzzy matching for search string
885
-
886
-
887
-
888
853
  ===== --not
889
854
  Show items that *don't* match search string or tag filter
890
855
 
@@ -980,11 +945,6 @@ Don't ask permission to flag all entries when count is 0
980
945
 
981
946
 
982
947
 
983
- ===== --fuzzy
984
- Use alternative fuzzy matching for search string
985
-
986
-
987
-
988
948
  ===== -i|--interactive
989
949
  Select item(s) to flag from a menu of matching entries
990
950
 
@@ -1097,11 +1057,6 @@ Edit entry with vim
1097
1057
 
1098
1058
 
1099
1059
 
1100
- ===== --fuzzy
1101
- Use alternative fuzzy matching for search string
1102
-
1103
-
1104
-
1105
1060
  ===== -i|--interactive
1106
1061
  Select item for new note from a menu of matching entries
1107
1062
 
@@ -1319,11 +1274,6 @@ Reset last entry matching tag
1319
1274
  [Default Value] None
1320
1275
 
1321
1276
 
1322
- ===== --fuzzy
1323
- Use alternative fuzzy matching for search string
1324
-
1325
-
1326
-
1327
1277
  ===== -i|--interactive
1328
1278
  Select from a menu of matching entries
1329
1279
 
@@ -1402,11 +1352,6 @@ Tag filter, combine multiple tags with a comma. Added for compatibility with oth
1402
1352
  [Default Value] None
1403
1353
 
1404
1354
 
1405
- ===== --fuzzy
1406
- Use alternative fuzzy matching for search string
1407
-
1408
-
1409
-
1410
1355
  ===== --not
1411
1356
  Rotate items that *don't* match search string or tag filter
1412
1357
 
@@ -1650,11 +1595,6 @@ Sort tags by (name|time)
1650
1595
  [Must Match] (?i-mx:^(?:name|time))
1651
1596
 
1652
1597
 
1653
- ===== --fuzzy
1654
- Use alternative fuzzy matching for search string
1655
-
1656
-
1657
-
1658
1598
  ===== -i|--interactive
1659
1599
  Select from a menu of matching entries to perform additional operations
1660
1600
 
@@ -1808,11 +1748,6 @@ Don't ask permission to tag all entries when count is 0
1808
1748
 
1809
1749
 
1810
1750
 
1811
- ===== --fuzzy
1812
- Use alternative fuzzy matching for search string
1813
-
1814
-
1815
-
1816
1751
  ===== -i|--interactive
1817
1752
  Select item(s) to tag from a menu of matching entries
1818
1753
 
@@ -2018,11 +1953,6 @@ Include colors in output
2018
1953
 
2019
1954
 
2020
1955
 
2021
- ===== --fuzzy
2022
- Use alternative fuzzy matching for search string
2023
-
2024
-
2025
-
2026
1956
  ===== -i|--interactive
2027
1957
  Select from a menu of matching entries to perform additional operations
2028
1958