clean-architecture 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -1
- data/Gemfile.lock +1 -1
- data/clean-architecture-1.0.0.gem +0 -0
- data/lib/clean_architecture/commands/all.rb +1 -1
- data/lib/clean_architecture/commands/{write_use_case_audit_trail.rb → create_use_case_history_entry.rb} +1 -1
- data/lib/clean_architecture/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 63e62f5c4c98c68040555f7ec75e8534ea8ad156
|
4
|
+
data.tar.gz: b8733811bd709e89f908adfdbe11d3837c27ad6b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6bd73590b3adfc630ace980caa7ca877ec9cc932c871d3548111d283e7728b0089fe0c7131cbd67831d11578a005e40ddc81a945c77a37741c1b9ddff3e78eed
|
7
|
+
data.tar.gz: db454b09088fb826011ff8438f92025adf25e8fa120db1be66ae0f546ccde5d8fcb2b9f0b8d33b9c8db281c5f7e93bc7a64e3f986e817fa088fbcb2c44bb2d8d
|
data/CHANGELOG.md
CHANGED
@@ -1,10 +1,14 @@
|
|
1
|
+
1.0.1
|
2
|
+
|
3
|
+
* Rename WithAuditTrail command
|
4
|
+
|
1
5
|
1.0.0
|
2
6
|
|
3
7
|
* Remove strategy and command interfaces
|
4
8
|
* Turn Authorization into a virtual class rather than an interface
|
5
9
|
* Remove ActorGetsAuthorizedThenDoesWork in favour of having the Authorization virtual class
|
6
10
|
return a result type (use .bind in the client)
|
7
|
-
* Change WithAuditTrail to
|
11
|
+
* Change WithAuditTrail to command with a result
|
8
12
|
|
9
13
|
0.2.0
|
10
14
|
|
data/Gemfile.lock
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: clean-architecture
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bellroy Tech Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-10-
|
11
|
+
date: 2018-10-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: dry-matcher
|
@@ -142,6 +142,7 @@ files:
|
|
142
142
|
- Guardfile
|
143
143
|
- README.md
|
144
144
|
- Rakefile
|
145
|
+
- clean-architecture-1.0.0.gem
|
145
146
|
- clean-architecture.gemspec
|
146
147
|
- generate_require_files.rb
|
147
148
|
- lib/clean-architecture.rb
|
@@ -151,7 +152,7 @@ files:
|
|
151
152
|
- lib/clean_architecture/checks/all.rb
|
152
153
|
- lib/clean_architecture/checks/authorization.rb
|
153
154
|
- lib/clean_architecture/commands/all.rb
|
154
|
-
- lib/clean_architecture/commands/
|
155
|
+
- lib/clean_architecture/commands/create_use_case_history_entry.rb
|
155
156
|
- lib/clean_architecture/entities/all.rb
|
156
157
|
- lib/clean_architecture/entities/failure_details.rb
|
157
158
|
- lib/clean_architecture/entities/targeted_parameters.rb
|