todo-curses 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.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/README.rdoc +15 -0
- data/lib/todo/version.rb +1 -1
- data/todo-curses.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 335f049d67bf461300eaa0cce286d153aa0de637
|
4
|
+
data.tar.gz: fc64bdb0bcf7ec17bb5f4a2fa287018bd87f4e3f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5ece725d69bacae4257cede9d232fb01802754037f86c47d73f85edf8bc4be2434def5a75d6727cdf81079e506b23c0b7911c00a3e124d613a852e20a514b21d
|
7
|
+
data.tar.gz: 042a44bf0266c779e6c54eaf75d363d8f3f17804df6ccf065d9ecd11d4c7ec9ca78abc3001e69578ed175532bb202bb15617100b847b453393688423a2134128
|
data/Gemfile.lock
CHANGED
data/README.rdoc
CHANGED
@@ -11,6 +11,20 @@ files, and Ncurses was something I'd been meaning to learn for a while.
|
|
11
11
|
No doubt there's a ton of nasty code in here. Please help me along if you're
|
12
12
|
interested. I'm sure there's a lot that can be refactored.
|
13
13
|
|
14
|
+
{Gem available on Rubygems.org}[https://rubygems.org/gems/todo-curses]
|
15
|
+
|
16
|
+
{Source on github.com}[https://github.com/lorentrogers/todo-curses]
|
17
|
+
|
18
|
+
== Installation
|
19
|
+
|
20
|
+
Grab the gem:
|
21
|
+
|
22
|
+
gem install todo-curses
|
23
|
+
|
24
|
+
Then you'll probably want to make an alias in your .*rc file. Here's mine:
|
25
|
+
|
26
|
+
alias tt="todo-curses list ~/dev/todo/todo.txt"
|
27
|
+
|
14
28
|
== Current features
|
15
29
|
|
16
30
|
- Open todo.txt files and view a scrollable list of items
|
@@ -24,6 +38,7 @@ interested. I'm sure there's a lot that can be refactored.
|
|
24
38
|
|
25
39
|
== Planned features
|
26
40
|
|
41
|
+
- Safer file handling (confirmations, errors, etc.)
|
27
42
|
- Use ctrl instead of shift for priority change
|
28
43
|
- Color code priorities
|
29
44
|
- Add a spacer between priority groups
|
data/lib/todo/version.rb
CHANGED
data/todo-curses.gemspec
CHANGED
@@ -5,7 +5,7 @@ spec = Gem::Specification.new do |s|
|
|
5
5
|
s.version = Todo::VERSION
|
6
6
|
s.author = 'Loren Rogers'
|
7
7
|
s.email = 'loren@lorentrogers.com'
|
8
|
-
s.homepage = '
|
8
|
+
s.homepage = 'https://github.com/lorentrogers/todo-curses'
|
9
9
|
s.platform = Gem::Platform::RUBY
|
10
10
|
s.summary = 'An interactive terminal application for managing todo.txt files.'
|
11
11
|
s.files = `git ls-files`.split("
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: todo-curses
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Loren Rogers
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-01-
|
11
|
+
date: 2016-01-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -97,7 +97,7 @@ files:
|
|
97
97
|
- test/test_helper.rb
|
98
98
|
- todo-curses.gemspec
|
99
99
|
- todo.rdoc
|
100
|
-
homepage:
|
100
|
+
homepage: https://github.com/lorentrogers/todo-curses
|
101
101
|
licenses: []
|
102
102
|
metadata: {}
|
103
103
|
post_install_message:
|