activeinteractor 2.0.0.alpha.2.3.0 → 2.0.0.alpha.2.3.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
  SHA256:
3
- metadata.gz: c201330d4b6c13c9b409888776d669e0b1ea73fcae310f4869de55fc0bbcc500
4
- data.tar.gz: 62be913b6bee629928ba114f82a7c2a526610cab1d9978459fc8e9f4f70869b3
3
+ metadata.gz: e8af4270754db50c59e2c28fd5877446d12e1d15617ff8ce2dc67b97a0a95830
4
+ data.tar.gz: 43d1b328973b54ef6623db8e216a2d5a6d84098582ccb674e998ae181b88171a
5
5
  SHA512:
6
- metadata.gz: ef8f56b5ca0f79d60b9f45b3c8a1e9e394b15c15c89c98e7f747eaecf6621671020b624a0d5ba141d7948468eb83938ecd8bf62849038ad39e2f974a03bfce11
7
- data.tar.gz: ed637132df8ef4ae80843e042d780b0423480e74f5d4cd9d12128118c10e3197467cb2e31f49d2d6a62cbadfd9c83ef4abad0beb123959ddb908d2f5f39fadc2
6
+ metadata.gz: 5a9e727d815c173b8be85a47cf65110a48e5e3e65bf370764a29d12060f5da85e2b4a444f35e87c15e4c328795834f3e315a351993deb46fad1d8e7432b78a06
7
+ data.tar.gz: 655d2a8362d581afb7074b8b00abbd97e496071bb5ce373dd4f475c04e881dc5a8406d4ecd95d7921c29d5e2346aaac7b6f532f54a2c7b31223f5dee38a4ab9f
@@ -5,6 +5,14 @@ module ActiveInteractor
5
5
  module AttributeAssignment
6
6
  extend ActiveSupport::Concern
7
7
 
8
+ def initialize(attributes = {})
9
+ attribute_set.attributes.each do |attribute|
10
+ next unless attributes.with_indifferent_access.key?(attribute.name)
11
+
12
+ assign_attribute_value(attribute.name, attributes.with_indifferent_access[attribute.name])
13
+ end
14
+ end
15
+
8
16
  def [](attribute_name)
9
17
  read_attribute_value(attribute_name)
10
18
  end
@@ -9,15 +9,9 @@ module ActiveInteractor
9
9
  include AttributeAssignment
10
10
  include Type::HasTypes
11
11
 
12
- attr_reader :errors
13
-
14
12
  def initialize(attributes = {})
13
+ super
15
14
  @errors = ActiveModel::Errors.new(self)
16
- attribute_set.attributes.each do |attribute|
17
- next unless attributes.with_indifferent_access.key?(attribute.name)
18
-
19
- assign_attribute_value(attribute.name, attributes.with_indifferent_access[attribute.name])
20
- end
21
15
  end
22
16
 
23
17
  def validate!
@@ -4,12 +4,14 @@ module ActiveInteractor
4
4
  module HasActiveModelErrors
5
5
  extend ActiveSupport::Concern
6
6
 
7
+ attr_reader :errors
8
+
7
9
  module ClassMethods
8
- def self.human_attribute_name(attribute, _options = {})
10
+ def human_attribute_name(attribute, _options = {})
9
11
  attribute.respond_to?(:to_s) ? attribute.to_s.humanize : attribute
10
12
  end
11
13
 
12
- def self.lookup_ancestors
14
+ def lookup_ancestors
13
15
  [self]
14
16
  end
15
17
  end
@@ -17,8 +19,6 @@ module ActiveInteractor
17
19
  included do
18
20
  extend ActiveModel::Naming
19
21
  extend ClassMethods
20
-
21
- attr_reader :errors
22
22
  end
23
23
 
24
24
  def read_attribute_for_validation(attribute_name)
@@ -13,7 +13,7 @@ module ActiveInteractor
13
13
  failed_at_output: 3
14
14
  }.freeze
15
15
 
16
- attr_reader :data, :errors
16
+ attr_reader :data
17
17
 
18
18
  class << self
19
19
  def success(data: {})
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activeinteractor
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.alpha.2.3.0
4
+ version: 2.0.0.alpha.2.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron Allen
@@ -88,9 +88,9 @@ licenses:
88
88
  - MIT
89
89
  metadata:
90
90
  bug_tracker_uri: https://github.com/activeinteractor/activeinteractor/issues
91
- changelog_uri: https://github.com/activeinteractor/activeinteractor/blob/v2.0.0-alpha.2.3.0/CHANGELOG.md
91
+ changelog_uri: https://github.com/activeinteractor/activeinteractor/blob/v2.0.0-alpha.2.3.1/CHANGELOG.md
92
92
  homepage_uri: https://github.com/activeinteractor/activeinteractor
93
- source_code_uri: https://github.com/activeinteractor/activeinteractor/tree/v2.0.0-alpha.2.3.0
93
+ source_code_uri: https://github.com/activeinteractor/activeinteractor/tree/v2.0.0-alpha.2.3.1
94
94
  wiki_uri: https://github.com/activeinteractor/activeinteractor/wiki
95
95
  rubygems_mfa_required: 'true'
96
96
  post_install_message:
@@ -108,7 +108,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
108
108
  - !ruby/object:Gem::Version
109
109
  version: 1.3.1
110
110
  requirements: []
111
- rubygems_version: 3.4.19
111
+ rubygems_version: 3.4.20
112
112
  signing_key:
113
113
  specification_version: 4
114
114
  summary: Ruby interactors with ActiveModel::Validations