todotxt 0.0.1 → 0.0.2

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.
data/README.md CHANGED
@@ -11,11 +11,18 @@ Todotxt is a ruby CLI interface to work with a
11
11
 
12
12
  ## Install
13
13
 
14
+ ### From RubyGems.org
15
+
16
+ gem install todotxt
17
+
18
+ ### Manually
19
+
14
20
  Clone from [jsahlen/todotxt](http://github.com/jsahlen/todotxt) and do
15
21
 
16
22
  rake install
17
23
 
18
- I might release it as a proper gem in the future…
24
+
25
+ ## Configuration
19
26
 
20
27
  Todotxt relies on a configuration file (`.todotxt.cfg`) in your home directory,
21
28
  which points to the location of your todo.txt. You can run
@@ -36,7 +43,7 @@ todo.txt.
36
43
  todotxt del | rm ITEM#[, ITEM#, ITEM#, ...] # Remove ITEM#
37
44
  todotxt do ITEM#[, ITEM#, ITEM#, ...] # Mark ITEM# as done
38
45
  todotxt dp | depri ITEM#[, ITEM#, ITEM#, ...] # Remove priority for ITEM#
39
- todotxt generate_cfg # Create a sample todo.txt
46
+ todotxt generate_txt # Create a sample todo.txt
40
47
  todotxt generate_config # Create a .todotxt.cfg file in your home folder, containing the path to todo.txt
41
48
  todotxt help [TASK] # Describe available tasks or one specific task
42
49
  todotxt list | ls [SEARCH] # List all todos, or todos matching SEARCH
data/lib/todotxt/cli.rb CHANGED
@@ -213,7 +213,7 @@ module Todotxt
213
213
  parse_config
214
214
  end
215
215
 
216
- desc "generate_cfg", "Create a sample todo.txt"
216
+ desc "generate_txt", "Create a sample todo.txt"
217
217
  def generate_txt
218
218
  copy_file "todo.txt", @txt_path
219
219
  puts ""
@@ -1,3 +1,3 @@
1
1
  module Todotxt
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: todotxt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2011-08-09 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: thor
16
- requirement: &2164860840 !ruby/object:Gem::Requirement
16
+ requirement: &2160821940 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: 0.14.6
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *2164860840
24
+ version_requirements: *2160821940
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: rainbow
27
- requirement: &2164860340 !ruby/object:Gem::Requirement
27
+ requirement: &2160821440 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: 1.1.1
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *2164860340
35
+ version_requirements: *2160821440
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: parseconfig
38
- requirement: &2164859880 !ruby/object:Gem::Requirement
38
+ requirement: &2160820980 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ! '>='
@@ -43,10 +43,10 @@ dependencies:
43
43
  version: 0.5.2
44
44
  type: :runtime
45
45
  prerelease: false
46
- version_requirements: *2164859880
46
+ version_requirements: *2160820980
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: rspec
49
- requirement: &2164859420 !ruby/object:Gem::Requirement
49
+ requirement: &2160820520 !ruby/object:Gem::Requirement
50
50
  none: false
51
51
  requirements:
52
52
  - - ! '>='
@@ -54,7 +54,7 @@ dependencies:
54
54
  version: 2.6.0
55
55
  type: :development
56
56
  prerelease: false
57
- version_requirements: *2164859420
57
+ version_requirements: *2160820520
58
58
  description: Interact with your todo.txt using a Ruby-base command-line tool
59
59
  email:
60
60
  - johan@monospace.se