Sha256: 7d44ca71148f774f59f7217ae9b67f6b2bd26158934305170f8799a49099cb90

Contents?: true

Size: 749 Bytes

Versions: 7

Compression:

Stored size: 749 Bytes

Contents

# TODO-Rails

Make a simple TODO app on your web app with just two line of codes. It is really easy to share your tasks about your web app with other with this app.



## Installation

Add this line to your application's Gemfile:

```ruby

gem 'todo-rails'

```

And then execute:

    $ bundle

Run
``` ruby
 rake db:migrate
```

 Add
``` ruby
mount TodoRails::Engine => "/todos", as: 'todo'
```
to your ``` routes.rb ```.

 Create ``` config/todo-rails.yml ``` with the following:
``` ruby
title: 'TODO'
add_label: 'Add tasks'
remaining_label: '{{remaining()}} of {{todos.length}} remaining'
```
and open ``` http://localhost:3000/todos ```.
## TODO:
* Comments
* Archieve items
* The name of the person, whom this task belongs to
* Date and time

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
todo_rails-0.1.7 README.md
todo_rails-0.1.6 README.md
todo_rails-0.1.5 README.md
todo_rails-0.1.4 README.md
todo_rails-0.1.3 README.md
todo_rails-0.1.2 README.md
todo_rails-0.1.1 README.md