theunraveler / taskwarrior-web

A web interface for the Taskwarrior todo application. Because being a neckbeard is only fun sometimes.
http://theunraveler.github.com/taskwarrior-web
MIT License
527 stars 63 forks source link

parse error when launched from clean install #90

Open masukomi opened 7 years ago

masukomi commented 7 years ago

gem install task-web then task-web

load http://0.0.0.0:5678/

Versionomy::Errors::ParseError at /
Extra characters: " (8f09a35)"
file: delimiter.rb location: parse line: 199
ghost commented 7 years ago

Same for me on a clean install.

DisSsha commented 7 years ago

same for me

Zebradil commented 7 years ago

Strange. gem search task-web doesn't give me anything. But gem search taskwarrior-web does.

cilynx commented 6 years ago

@masukomi, can you confirm that you're installing the correct gem? As @Zebradil points out, task-web is not the correct package name:

rcw@burner:~$ sudo gem install task-web
ERROR:  Could not find a valid gem 'task-web' (>= 0) in any repository
ERROR:  Possible alternatives: task_rb, taskee, tasker, tasklet
rcw@burner:~$

You want to be installing taskwarrior-web:

rcw@burner:~$ sudo gem install taskwarrior-web
Fetching: taskwarrior-web-1.1.12.gem (100%)
Successfully installed taskwarrior-web-1.1.12
Parsing documentation for taskwarrior-web-1.1.12
Installing ri documentation for taskwarrior-web-1.1.12
Done installing documentation for taskwarrior-web after 0 seconds
1 gem installed
rcw@burner:~$

Now, for the actual issue, can anyone who is seeing this (cc @DisSsha) provide the output of task _version and also the debug output from the server when loading the main page? task-web -dF will get you a foreground process with debug output.