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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d751cba3aff6904c1fc224d28039d479ea698805
4
- data.tar.gz: 37182b20aab7f39b7caf92aae13db1efb186ba10
3
+ metadata.gz: 63e62f5c4c98c68040555f7ec75e8534ea8ad156
4
+ data.tar.gz: b8733811bd709e89f908adfdbe11d3837c27ad6b
5
5
  SHA512:
6
- metadata.gz: f003370b9134dcc89007f48a3d754c4e55603aa191a12ad599107f46cc2d91088cad2d4c2f6accf61ebe87819126d289f645f0e0858dee418ca839838b93a6b7
7
- data.tar.gz: 5479aaa78c7e438f581af8f8481fa025f40b6705b55181aae59389492f74d927d63a3e709b48aa7cd3377953808075968c4198591ca6697de6cc1978931c8847
6
+ metadata.gz: 6bd73590b3adfc630ace980caa7ca877ec9cc932c871d3548111d283e7728b0089fe0c7131cbd67831d11578a005e40ddc81a945c77a37741c1b9ddff3e78eed
7
+ data.tar.gz: db454b09088fb826011ff8438f92025adf25e8fa120db1be66ae0f546ccde5d8fcb2b9f0b8d33b9c8db281c5f7e93bc7a64e3f986e817fa088fbcb2c44bb2d8d
@@ -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 WriteUseCaseAuditTrail command with a result
11
+ * Change WithAuditTrail to command with a result
8
12
 
9
13
  0.2.0
10
14
 
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- clean-architecture (1.0.0)
4
+ clean-architecture (1.0.1)
5
5
  dry-matcher (~> 0.0)
6
6
  dry-monads (~> 1.0)
7
7
  dry-struct (~> 0.0)
@@ -2,4 +2,4 @@
2
2
 
3
3
  # THIS FILE IS AUTOGENERATED AND SHOULD NOT BE MANUALLY MODIFIED
4
4
 
5
- require 'clean_architecture/commands/write_use_case_audit_trail'
5
+ require 'clean_architecture/commands/create_use_case_history_entry'
@@ -5,7 +5,7 @@ require 'duckface'
5
5
 
6
6
  module CleanArchitecture
7
7
  module Commands
8
- class WriteUseCaseAuditTrail
8
+ class CreateUseCaseHistoryEntry
9
9
  extend Forwardable
10
10
 
11
11
  def initialize(use_case_target)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CleanArchitecture
4
- VERSION = '1.0.0'
4
+ VERSION = '1.0.1'
5
5
  end
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.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-19 00:00:00.000000000 Z
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/write_use_case_audit_trail.rb
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