taskwarrior-web 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/.gitignore +1 -0
- data/README.md +43 -3
- data/lib/taskwarrior-web/version.rb +1 -1
- data/public/css/styles.css +1 -1
- data/public/images/logo.png +0 -0
- metadata +2 -3
- data/.rvmrc +0 -1
data/.gitignore
CHANGED
data/README.md
CHANGED
|
@@ -1,6 +1,46 @@
|
|
|
1
1
|
# Web Interface for Taskwarrior
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
wonderful (
|
|
3
|
+
A lightweight, Sinatra-based web interface for the
|
|
4
|
+
wonderful [Taskwarrior](http://taskwarrior.org/) todo application.
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
## Installation
|
|
7
|
+
|
|
8
|
+
`gem install taskwarrior-web`
|
|
9
|
+
|
|
10
|
+
This will install an executable called `task-web`
|
|
11
|
+
|
|
12
|
+
## Usage
|
|
13
|
+
|
|
14
|
+
`task-web` at your terminal to start it up. This will start the process,
|
|
15
|
+
background it, and open the URL in your browser.
|
|
16
|
+
|
|
17
|
+
It uses [Vegas](https://github.com/quirkey/vegas/) to make the Sinatra app into
|
|
18
|
+
an executable, so all options for Vegas are valid for `task-web`. Type
|
|
19
|
+
`task-web -h` for more options.
|
|
20
|
+
|
|
21
|
+
## Features
|
|
22
|
+
|
|
23
|
+
The current featureset includes:
|
|
24
|
+
|
|
25
|
+
* Viewing tasks (duh) sorted and grouped in various ways.
|
|
26
|
+
* Marking a pending task as done.
|
|
27
|
+
* Creating a new task with a due date, project, and tags.
|
|
28
|
+
* `task-web` will pull your `task` config (from `.taskrc`) and use it to
|
|
29
|
+
determine date formatting and when an upcoming task should be marked as
|
|
30
|
+
"due".
|
|
31
|
+
|
|
32
|
+
I'm looking to include more features once `task` supports issuing commands via
|
|
33
|
+
UUID.
|
|
34
|
+
|
|
35
|
+
## Known Issues
|
|
36
|
+
|
|
37
|
+
* The "View as list"/"View as Grid" links do nothing right now. (They will
|
|
38
|
+
soon).
|
|
39
|
+
* There are occasionally pretty severe race conditions due to the way that
|
|
40
|
+
`task` assigns IDs to tasks. This will no longer be the case when UUIDs are
|
|
41
|
+
implemented in `task`.
|
|
42
|
+
|
|
43
|
+
## Marginalia
|
|
44
|
+
|
|
45
|
+
This project is not developed by the Taskwarrior team. Obviously,
|
|
46
|
+
taskwarrior-web extends Taskwarrior, but the projects are separate.
|
data/public/css/styles.css
CHANGED
data/public/images/logo.png
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: taskwarrior-web
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.0.
|
|
5
|
+
version: 0.0.2
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Jake Bell
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2011-05-
|
|
13
|
+
date: 2011-05-08 00:00:00 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: sinatra
|
|
@@ -56,7 +56,6 @@ extra_rdoc_files: []
|
|
|
56
56
|
|
|
57
57
|
files:
|
|
58
58
|
- .gitignore
|
|
59
|
-
- .rvmrc
|
|
60
59
|
- Gemfile
|
|
61
60
|
- README.md
|
|
62
61
|
- Rakefile
|
data/.rvmrc
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
rvm ruby-1.9.2@taskwarrior-web
|