bulldoggy 0.0.5.alpha → 0.0.6.alpha

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ef772b794d9e848bd2fb6c51125b182703cb24e9
4
- data.tar.gz: 1c23bff72019e5fcc1356ba10aed40054d3851a5
3
+ metadata.gz: 1b41989bb826910d417a76482acf1b948afd8d58
4
+ data.tar.gz: ef06915807d3f2a28422644534d3106cf684fd25
5
5
  SHA512:
6
- metadata.gz: 231e7e5b21e17931455ddfea9556c22c1183fdd340778c5c0adb321b1828dc5bcd3ce7470b3ffa505d55fa2c3f72a7b7de67b58b4dc2c5ba384367392e27ccd0
7
- data.tar.gz: f59a347042979b583069d8aec33d1862337cd7a30683a0bb61de3f10b5d4bb9e1633f893a44027594187e49da569dd0bd7aa66e572bbe450a6baef2cc68f1a5c
6
+ metadata.gz: 7bdcee0b7e16a0ee1fd5065efb1859a92c911619814fd6b925e77223b1da3db46ec4b2f124eaacfbe3956b20c18986bd04a22b73f5b05bff572605631984f746
7
+ data.tar.gz: c8d0c51b83e12c853af7f7f50a0ebf305b0fa7948091bfef4dca29b77330765c42d07ac3bae889060068b986528948f3b8a764a880e0d65247f60f59bbf31918
data/README.md CHANGED
@@ -7,7 +7,15 @@ A **to-do list app** inspired by Uncle Bob's Clean Architecture.
7
7
 
8
8
  The idea of is to have a concrete implementation of the architecture and use various deliveries mechanisms and storages that will act as plugins to the core app.
9
9
 
10
- Implementations of the delivery mechanisms are welcome and will be listed here.
10
+ Implementations of the delivery mechanisms are welcome and will be listed here:
11
+
12
+ # Web as the delivery mechanism:
13
+
14
+ * [bulldoggy-sinatra](https://github.com/bezelga/bulldoggy-sinatra)
15
+
16
+ # CLI the delivery mechanism:
17
+
18
+ * [bulldoggy-thor](https://github.com/philss/bulldoggy-thor)
11
19
 
12
20
  ## Installation
13
21
 
@@ -4,7 +4,7 @@ module Bulldoggy
4
4
  def fetch
5
5
  Bulldoggy::Repository.for(:task).all.map do |id, task|
6
6
  # IMPROVE: create a TaskSerializer to do this job
7
- { id: id, description: task.description }
7
+ { id: id, description: task.description, :done => task.done }
8
8
  end
9
9
  end
10
10
  end
@@ -1,3 +1,3 @@
1
1
  module Bulldoggy
2
- VERSION = "0.0.5.alpha"
2
+ VERSION = "0.0.6.alpha"
3
3
  end
@@ -21,8 +21,8 @@ module Bulldoggy
21
21
  end
22
22
  end
23
23
 
24
- let(:task1) { { id: 1, description: 'task#0' } }
25
- let(:task2) { { id: 2, description: 'task#1' } }
24
+ let(:task1) { { id: 1, description: 'task#0', :done => false } }
25
+ let(:task2) { { id: 2, description: 'task#1', :done => false } }
26
26
 
27
27
  it { should == [task1, task2] }
28
28
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bulldoggy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5.alpha
4
+ version: 0.0.6.alpha
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fabiano B.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-31 00:00:00.000000000 Z
11
+ date: 2014-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler