todo_rails 0.1.0 → 0.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b1a9be8af5ff36eb5aad57c29f54706c41913828
4
- data.tar.gz: 261c2d0354496615ff584e758a2d87c042edef70
3
+ metadata.gz: b9d7c9be52a239ce40819ff050d98c5ca5c09e87
4
+ data.tar.gz: 3c698f3589042c23ed572f42ee0acb80e7f9315e
5
5
  SHA512:
6
- metadata.gz: cbed0d7fe59b75eab20bfc6bde5dc9edfbbac2457772d359ca419757d7cdf3bfc0932ec62b4f11cfb81849647555372e8a3e679081d4fd7cd7ceef0653dac00c
7
- data.tar.gz: 77853c93caac5ef43d5e0a6fa7a3f17a99d8affc03b115f0efb030f8d98441bf58e29f11f1f6cd9e52089e5893f6b64b26a09ec3c11ce6c24b245c2719b49106
6
+ metadata.gz: 2088725182f08385a7f4b7c920eefa9c5f2e7844fb901576fe2ab8746023bc036f0aea3ae10971013b509fdbedfbef0b61cf6e97e9331f611b58d167c4d3c9ae
7
+ data.tar.gz: 18a803094d93adf5578cbf57995348c0ed8a84059efda3da4eea2273254adc8341c0c18a79847c52ba43a3646ce97da7a4a88cc0936d81c302dea0ffd54ea597
data/README.md CHANGED
@@ -27,9 +27,15 @@ Run
27
27
  ``` ruby
28
28
  mount TodoRails::Engine => "/todos", as: 'todo'
29
29
  ```
30
- to your ``` routes.rb ``` and open ``` http://localhost:3000/todos ```.
31
-
30
+ to your ``` routes.rb ```.
32
31
 
32
+ Create ``` config/todo-rails.yml ``` with the following:
33
+ ``` ruby
34
+ title: 'TODO'
35
+ add_label: 'Add tasks'
36
+ remaining_label: '{{remaining()}} of {{todos.length}} remaining'
37
+ ```
38
+ and open ``` http://localhost:3000/todos ```.
33
39
  ## TODO:
34
40
  * Comments
35
41
  * Archieve items
@@ -1,3 +1,3 @@
1
1
  module TodoRails
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: todo_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - goooseman