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 +4 -4
- data/README.md +9 -1
- data/lib/bulldoggy/use_cases/tasks_fetcher.rb +1 -1
- data/lib/bulldoggy/version.rb +1 -1
- data/spec/use_cases/tasks_fetcher_spec.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1b41989bb826910d417a76482acf1b948afd8d58
|
4
|
+
data.tar.gz: ef06915807d3f2a28422644534d3106cf684fd25
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
|
data/lib/bulldoggy/version.rb
CHANGED
@@ -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.
|
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-
|
11
|
+
date: 2014-02-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|