doing 1.0.0pre → 1.0.1pre

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +19 -2
  3. data/bin/doing +0 -3
  4. data/lib/doing/version.rb +1 -1
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 74966c0e6ac08312d5b1ebb980795e47a19ae278
4
- data.tar.gz: 746b50bfae984c7f95e3b64a7bb095a185d2208e
3
+ metadata.gz: d81d4068acde0a73c9c4cc7cd51d61ed3ac082e3
4
+ data.tar.gz: d3d242a8ea49ad277dd37b829fc121e0bee46ca6
5
5
  SHA512:
6
- metadata.gz: 7968dfa76f2c4b6aef6a8ae098f86df6286d5968330a1cebb471d1d13978c5ccfe1aa0bbda49e2bc74af83cadd7aae37197719f33b4336f51d25bc6f001c8ff1
7
- data.tar.gz: 5fcf33fccaa418ba41c5f1c79515bb341024b9363a95adc07b7479163bd4eb5de96912d8c0b9994d4e6d6bdd0649ff8baf82628f996040ee993d90b8099b08bd
6
+ metadata.gz: 333bc1be56d38238b60cfcdefaa0c8b259d87fb038b798963f4e405a8d4085f95758a3dc0f9765a0ab56d1f7cced5cfe8dedd1236598988d06631a23b32fd38f
7
+ data.tar.gz: 75aaf396ffccd4e620e6a637a37e9d42b5ffc24c02e6a3e7e43d3210ce62627942e582cc049bf4ec20a2d843983e37ff06ea8010ffeb779d84f56a9c597ec1c2
data/README.md CHANGED
@@ -6,6 +6,18 @@ _If you're one of the rare people like me who find this useful, feel free to con
6
6
 
7
7
  [Changelog](#changelog)
8
8
 
9
+ ## Contents
10
+
11
+ - [What and why](#what-and-why)
12
+ - [Installation](#installation)
13
+ - [The "doing" file](#the-doing-file)
14
+ - [Configuration](#configuration)
15
+ - [Usage](#usage)
16
+ - [Extras](#extras)
17
+ - [Troubleshooting](#troubleshooting)
18
+
19
+ <!-- end toc -->
20
+
9
21
  ## What and why
10
22
 
11
23
  `doing` is a basic CLI for adding and listing "what was I doing" reminders in a [TaskPaper-formatted](http://www.hogbaysoftware.com/products/taskpaper) text file. It allows for multiple sections/categories and flexible output formatting.
@@ -241,7 +253,7 @@ Outputs:
241
253
 
242
254
  ![](http://ckyp.us/XKpj+)
243
255
 
244
- ## Usage:
256
+ ## Usage
245
257
 
246
258
  doing [global options] command [command options] [arguments...]
247
259
 
@@ -421,7 +433,7 @@ Ruby is rife with encoding inconsistencies across platforms and versions. Feel f
421
433
 
422
434
  I'm not making any money on `doing`, and I don't plan to spend a lot of time fixing errors on an array of operating systems and platforms I don't even have access to. You'll probably have to solve some things on your own.
423
435
 
424
- That said, you can get support from other users (and occasionally me) on GitHub. If you run into a replicatable issue in your environment, please [post an issue](https://github.com/ttscoff/doing/issues) and include your platform, OS version, and the result of `ruby -v`, along with a copy/paste of the error message.
436
+ That said, you can get support from other users (and occasionally me) on GitHub. If you run into a replicatable bug in your environment, please [post an issue](https://github.com/ttscoff/doing/issues) and include your platform, OS version, and the result of `ruby -v`, along with a copy/paste of the error message. To get a more verbose error message, try running `GLI_DEBUG=true doing [...]` for a full trace.
425
437
 
426
438
  Please try not to email me directly about GitHub projects.
427
439
 
@@ -431,6 +443,11 @@ I'll try to document some of the code structure as I flesh it out. I'm currently
431
443
 
432
444
  ### Changelog
433
445
 
446
+ #### 1.0.0pre
447
+
448
+ * Skipped ahead in the version numbering. Because I don't care.
449
+ * Added a `note` command and `--note` flags for entry creation commands
450
+
434
451
  #### 0.2.6pre
435
452
 
436
453
  * --totals, --[no-]times, --output [csv,html] options for yesterday command.
data/bin/doing CHANGED
@@ -48,7 +48,6 @@ command :now do |c|
48
48
 
49
49
  c.desc 'Note'
50
50
  c.arg_name 'note_text'
51
- c.default_value wwid.current_section
52
51
  c.flag [:n,:note]
53
52
 
54
53
  # c.desc "Edit entry with specified app"
@@ -168,7 +167,6 @@ command :meanwhile do |c|
168
167
 
169
168
  c.desc 'Note'
170
169
  c.arg_name 'note_text'
171
- c.default_value wwid.current_section
172
170
  c.flag [:n,:note]
173
171
 
174
172
  c.action do |global_options,options,args|
@@ -218,7 +216,6 @@ command :later do |c|
218
216
 
219
217
  c.desc 'Note'
220
218
  c.arg_name 'note_text'
221
- c.default_value wwid.current_section
222
219
  c.flag [:n,:note]
223
220
 
224
221
  c.action do |global_options,options,args|
data/lib/doing/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Doing
2
- VERSION = '1.0.0pre'
2
+ VERSION = '1.0.1pre'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: doing
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0pre
4
+ version: 1.0.1pre
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brett Terpstra
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-01 00:00:00.000000000 Z
11
+ date: 2014-07-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake