https://github.com/uko/cmd-challenge
https://github.com/uko/cmd-challenge
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/uko/cmd-challenge
- Owner: Uko
- Created: 2012-09-22T21:49:46.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2012-10-01T18:55:49.000Z (almost 14 years ago)
- Last Synced: 2023-04-01T08:09:05.425Z (over 3 years ago)
- Language: Ruby
- Size: 184 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Task Manager
============
General info
------------
For sub/pub notifications a _Private Pub_ gem is used. It uses [Faye](http://faye.jcoglan.com/) to handle all the stuff so separate server should be started with
rackup private_pub.ru -s thin -E production
for shared task dynamic loading to work.
Goals
-----
User should be able to:
- `[x]` register in system
- `[x]` login into system
- `[x]` add new task
- `[x]` edit task
- `[x]` delete task
- `[x]` share task (share using email of another user in the system who will be also able to manage task afterwards )
- `[x]` see list of tasks
- `[x]` list should auto-update when someone shares tasks with user
- `[x]` in the list user should see who has shared task
_Use Twitter Bootstrap for UI, please (or something analogical). Cover code by Rspec tests, preferably_