icalia-sdk-event-core 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (29) hide show
  1. checksums.yaml +4 -4
  2. data/lib/icalia-sdk-event-core/models/cloud_identity.rb +12 -0
  3. data/lib/icalia-sdk-event-core/models/code_commit.rb +9 -0
  4. data/lib/icalia-sdk-event-core/models/code_merge_request.rb +25 -0
  5. data/lib/icalia-sdk-event-core/models/code_merge_request_event.rb +13 -0
  6. data/lib/icalia-sdk-event-core/models/code_repository.rb +15 -0
  7. data/lib/icalia-sdk-event-core/models/code_repository_reference.rb +12 -0
  8. data/lib/icalia-sdk-event-core/models/model_base.rb +31 -0
  9. data/lib/icalia-sdk-event-core/models/model_proxy.rb +15 -0
  10. data/lib/icalia-sdk-event-core/models/organization.rb +8 -0
  11. data/lib/icalia-sdk-event-core/models/person.rb +8 -0
  12. data/lib/icalia-sdk-event-core/models/resource_action.rb +11 -0
  13. data/lib/icalia-sdk-event-core/models/resource_identity.rb +15 -0
  14. data/lib/icalia-sdk-event-core/models/resource_timestamps.rb +11 -0
  15. data/lib/icalia-sdk-event-core/models.rb +26 -0
  16. data/lib/icalia-sdk-event-core/serialization/deserializable_code_commit.rb +18 -0
  17. data/lib/icalia-sdk-event-core/serialization/deserializable_code_merge_request.rb +42 -0
  18. data/lib/icalia-sdk-event-core/serialization/deserializable_code_merge_request_event.rb +18 -0
  19. data/lib/icalia-sdk-event-core/serialization/deserializable_code_repository.rb +13 -1
  20. data/lib/icalia-sdk-event-core/serialization/deserializable_code_repository_reference.rb +18 -0
  21. data/lib/icalia-sdk-event-core/serialization/deserializable_organization.rb +1 -1
  22. data/lib/icalia-sdk-event-core/serialization/deserializable_resource_action.rb +6 -0
  23. data/lib/icalia-sdk-event-core/serialization/deserializable_resource_creation_timestamp.rb +1 -1
  24. data/lib/icalia-sdk-event-core/serialization/deserializable_resource_timestamps.rb +1 -1
  25. data/lib/icalia-sdk-event-core/serialization/deserializer.rb +97 -0
  26. data/lib/icalia-sdk-event-core/serialization.rb +16 -0
  27. data/lib/icalia-sdk-event-core/version.rb +1 -1
  28. data/lib/icalia-sdk-event-core.rb +1 -0
  29. metadata +35 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 43488c6953f28c70bfbc4d9074e300f8be2914f81f8cc7e524b33b356d14ee63
4
- data.tar.gz: f076c5767906a3550dba2ec87fcf5bad4f3b1109a264bfd0c67ca820595d8846
3
+ metadata.gz: cd11240d756598d2e451fddddd7283e486dd2fe48e82ccc46ceffb1369655a36
4
+ data.tar.gz: 388c39da2cc6d4e3c4c549679610178ee231babb3d407a866269cd325be8931a
5
5
  SHA512:
6
- metadata.gz: 9fc061f761c0df3953816bbda6fbd15253c8a655297ea2293a704603f393231220a58265068b59f2ad298d50eb15757380fb78d0e8eba565e2c61bde7acf82c4
7
- data.tar.gz: ed407ccf9d6396b8beb280b2830d3b89d0e0bb5ac2bed840250356881e1878b0b79cef95ae890ed9befe0435cc5182da487155eff1e3d36ddf6a6301c5807101
6
+ metadata.gz: 3a219480bdd8c1997153cecd3789c6b2f7663bf349927319e2898bfb8cc993293023af77301bbff322fed031f3c0944c18bfe8dcbd1252a62b526a0a01057976
7
+ data.tar.gz: cd6db26e70dcdf41efda361068d487d99a9bae07319b645aa1dd6c1dfea1a7da731d6340da78e956b3628d85ba77f4f1f9cd2e7c0847738e1d11af11259e86b5
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Icalia
4
+ class CloudIdentity < ModelBase
5
+ attr_reader :provider,
6
+ :id_at_provider,
7
+ :created_at,
8
+ :updated_at,
9
+ :name,
10
+ :identity_type
11
+ end
12
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Icalia
4
+ class CodeCommit < ModelBase
5
+ attr_reader :sha
6
+
7
+ attr_reader :repository
8
+ end
9
+ end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Icalia
4
+ class CodeMergeRequest < ModelBase
5
+ attr_reader :number,
6
+ :provider,
7
+ :id_at_provider,
8
+ :created_at,
9
+ :updated_at,
10
+ :number,
11
+ :body,
12
+ :state,
13
+ :title,
14
+ :url,
15
+ :additions,
16
+ :deletions,
17
+ :added_line_count,
18
+ :deleted_line_count,
19
+ :changed_file_count
20
+
21
+ attr_reader :base, :head, :author, :committer
22
+
23
+ def closed?; state == 'closed'; end
24
+ end
25
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Icalia
4
+ class CodeMergeRequestEvent < ModelBase
5
+ include ResourceAction
6
+ attr_reader :merge_request
7
+
8
+ def opened?; action == 'opened'; end
9
+ def updated?; action == 'updated'; end
10
+ def merged?; action == 'merged'; end
11
+ def declined?; action == 'declined'; end
12
+ end
13
+ end
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Icalia
4
+ class CodeRepository < ModelBase
5
+ include ResourceIdentity
6
+
7
+ attr_reader :owner # DeserializablePropertyResource # has one owner
8
+
9
+ attr_reader :created_at # include DeserializableResourceCreationTimestamp
10
+
11
+ attr_reader :name, :private, :fork, :provider, :description, :url, :fork,
12
+ :exists, :archived, :html_url, :full_name, :id_at_provider,
13
+ :default_branch
14
+ end
15
+ end
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Icalia
4
+ class CodeRepositoryReference < ModelBase
5
+ include ResourceIdentity
6
+ attr_reader :name, :label
7
+
8
+ attr_reader :commit
9
+
10
+ delegate :sha, :repository, to: :commit, allow_nil: true
11
+ end
12
+ end
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'active_model'
4
+
5
+ module Icalia
6
+ class ModelBase
7
+ extend ActiveModel::Naming
8
+ include ResourceIdentity
9
+
10
+ attr_reader :serialization_context
11
+
12
+ def initialize(object_attributes = {})
13
+ @serialization_context = object_attributes.delete :serialization_context
14
+
15
+ object_attributes.each do |key, value|
16
+ attribute_name = "#{key}".underscore
17
+ next register_stand_in(attribute_name, value) if value.is_a? ModelProxy
18
+ instance_variable_set("@#{attribute_name}", value)
19
+ end
20
+ end
21
+
22
+ private
23
+
24
+ def register_stand_in(association, stand_in)
25
+ instance_variable_set("@#{association}", stand_in)
26
+ serialization_context.register_stand_in model: self,
27
+ stand_in: stand_in,
28
+ association: association
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Icalia
4
+ # ModelProxy: Acts as a stand-in for an associated model, which may be
5
+ # awaiting for de-serialization at the time the parent object was being
6
+ # de-serialized
7
+ class ModelProxy
8
+ include ResourceIdentity
9
+
10
+ def initialize(id:, type:)
11
+ @id = id
12
+ @type = type
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Icalia
4
+ class Organization < ModelBase
5
+ include ResourceTimestamps
6
+ attr_reader :name
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Icalia
4
+ class Person < ModelBase
5
+ include ResourceTimestamps
6
+ attr_reader :name
7
+ end
8
+ end
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Icalia
4
+ module ResourceAction
5
+ extend ActiveSupport::Concern
6
+
7
+ included do
8
+ attr_reader :action, :actor, :timestamp
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Icalia
4
+ module ResourceIdentity
5
+ extend ActiveSupport::Concern
6
+
7
+ included do
8
+ attr_reader :id, :type
9
+ end
10
+
11
+ def to_key
12
+ { id: id, type: type }
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Icalia
4
+ module ResourceTimestamps
5
+ extend ActiveSupport::Concern
6
+
7
+ included do
8
+ attr_reader :created_at, :updated_at
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,26 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Icalia
4
+ models_path = 'icalia-sdk-event-core/models'
5
+
6
+ autoload :ModelBase, "#{models_path}/model_base"
7
+ autoload :ModelProxy, "#{models_path}/model_proxy"
8
+
9
+
10
+ autoload :ResourceIdentity, "#{models_path}/resource_identity"
11
+ autoload :ResourceAction, "#{models_path}/resource_action"
12
+ autoload :ResourceTimestamps, "#{models_path}/resource_timestamps"
13
+
14
+ # Core Models:
15
+ autoload :Person, "#{models_path}/person"
16
+ autoload :Organization, "#{models_path}/organization"
17
+
18
+ autoload :CodeCommit, "#{models_path}/code_commit"
19
+ autoload :CodeRepository, "#{models_path}/code_repository"
20
+ autoload :CodeRepositoryReference, "#{models_path}/code_repository_reference"
21
+
22
+ autoload :CodeMergeRequest, "#{models_path}/code_merge_request"
23
+
24
+ # Event Models:
25
+ autoload :CodeMergeRequestEvent, "#{models_path}/code_merge_request_event"
26
+ end
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Icalia::Event
4
+ #= DeserializableCodeCommit
5
+ #
6
+ # This class is responsible for converting a JSONAPI.org representation of an
7
+ # Icalia `CodeCommitReference` object
8
+ class DeserializableCodeCommit < JSONAPI::Deserializable::Resource
9
+ include DeserializableResourceIdentity # id and type
10
+
11
+ attributes :sha
12
+
13
+ has_one(:repository) do |_rel, id, type|
14
+ stand_in = Icalia::ModelProxy.new id: id, type: classify_type(type)
15
+ Hash[repository: stand_in]
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,42 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Icalia::Event
4
+ #= DeserializableCodeMergeRequest
5
+ #
6
+ # This class is responsible for converting a JSONAPI.org representation of an
7
+ # Icalia Event's `CodeMergeRequestEvent` object that can be used to create or
8
+ # update a code-repository data
9
+ class DeserializableCodeMergeRequest < JSONAPI::Deserializable::Resource
10
+ include DeserializableResourceIdentity
11
+ include DeserializableResourceTimestamps
12
+
13
+ attributes :number, :provider, :body, :state, :title, :url, :additions, :deletions
14
+
15
+ attribute(:'id-at-provider') { |value| Hash[id_at_provider: value] }
16
+ attribute(:'added-line-count') { |value| Hash[added_line_count: value] }
17
+ attribute(:'deleted-line-count') { |value| Hash[deleted_line_count: value] }
18
+ attribute(:'changed-line-count') { |value| Hash[changed_line_count: value] }
19
+
20
+ has_one :author do |_rel, id, type|
21
+ stand_in = Icalia::ModelProxy.new id: id, type: classify_type(type)
22
+ Hash[author: stand_in]
23
+ end
24
+
25
+ has_one :base do |_rel, id, type|
26
+ stand_in = Icalia::ModelProxy.new id: id, type: classify_type(type)
27
+ Hash[base: stand_in]
28
+ end
29
+
30
+ has_one :head do |_rel, id, type|
31
+ stand_in = Icalia::ModelProxy.new id: id, type: classify_type(type)
32
+ Hash[head: stand_in]
33
+ end
34
+
35
+ has_one :committer do |rel, id, type|
36
+ next Hash[committer: nil] unless rel[:data].present?
37
+
38
+ stand_in = Icalia::ModelProxy.new id: id, type: classify_type(type)
39
+ Hash[committer: stand_in]
40
+ end
41
+ end
42
+ end
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Icalia::Event
4
+ #= DeserializableCodeMergeRequestEvent
5
+ #
6
+ # This class is responsible for converting a JSONAPI.org representation of an
7
+ # Icalia Event's `CodeMergeRequestEvent` object that can be used to create or
8
+ # update a code-repository data
9
+ class DeserializableCodeMergeRequestEvent < JSONAPI::Deserializable::Resource
10
+ include DeserializableResourceIdentity
11
+ include DeserializableResourceAction
12
+
13
+ has_one :'merge-request' do |_rel, id, type|
14
+ stand_in = Icalia::ModelProxy.new id: id, type: classify_type(type)
15
+ Hash[merge_request: stand_in]
16
+ end
17
+ end
18
+ end
@@ -10,6 +10,18 @@ module Icalia::Event
10
10
  include DeserializablePropertyResource # has one owner
11
11
  include DeserializableResourceCreationTimestamp
12
12
 
13
- attributes :name, :private, :fork, :'default-branch'
13
+ attributes :name, :private, :fork, :provider, :description, :url, :fork,
14
+ :exists, :archived
15
+
16
+ attribute(:'html-url') { |value| Hash[html_url: value]}
17
+ attribute(:'full-name') { |value| Hash[full_name: value] }
18
+
19
+ attribute(:'id-at-provider') { |value| Hash[id_at_provider: value] }
20
+ attribute(:'default-branch') { |value| Hash[default_branch: value] }
21
+
22
+ has_one :owner do |_rel, id, type|
23
+ stand_in = Icalia::ModelProxy.new id: id, type: classify_type(type)
24
+ Hash[owner: stand_in]
25
+ end
14
26
  end
15
27
  end
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Icalia::Event
4
+ #= DeserializableCodeRepositoryReference
5
+ #
6
+ # This class is responsible for converting a JSONAPI.org representation of an
7
+ # Icalia `CodeRepositoryReference` object
8
+ class DeserializableCodeRepositoryReference < JSONAPI::Deserializable::Resource
9
+ include DeserializableResourceIdentity # id and type
10
+
11
+ attributes :name, :label
12
+
13
+ has_one(:commit) do |_rel, id, type|
14
+ stand_in = Icalia::ModelProxy.new id: id, type: classify_type(type)
15
+ Hash[commit: stand_in]
16
+ end
17
+ end
18
+ end
@@ -10,6 +10,6 @@ module Icalia::Event
10
10
  include DeserializablePropertyResource # has one owner
11
11
  include DeserializableResourceTimestamps # created_at and updated_at
12
12
 
13
- attributes :name, :email
13
+ attributes :name
14
14
  end
15
15
  end
@@ -6,6 +6,12 @@ module Icalia::Event
6
6
 
7
7
  included do
8
8
  attribute(:action) { |value| Hash[action: value] }
9
+ attribute(:timestamp) { |value| Hash[timestamp: Time.parse(value)] }
10
+
11
+ has_one :actor do |_rel, id, type|
12
+ stand_in = Icalia::ModelProxy.new id: id, type: classify_type(type)
13
+ Hash[actor: stand_in]
14
+ end
9
15
  end
10
16
  end
11
17
  end
@@ -5,7 +5,7 @@ module Icalia::Event
5
5
  extend ActiveSupport::Concern
6
6
 
7
7
  included do
8
- attribute(:'created-at') { |value| Hash[created_at: value] }
8
+ attribute(:'created-at') { |value| Hash[created_at: Time.parse(value)] }
9
9
  end
10
10
  end
11
11
  end
@@ -6,7 +6,7 @@ module Icalia::Event
6
6
 
7
7
  included do
8
8
  include DeserializableResourceCreationTimestamp
9
- attribute(:'updated-at') { |value| Hash[updated_at: value] }
9
+ attribute(:'updated-at') { |value| Hash[updated_at: Time.parse(value)] }
10
10
  end
11
11
  end
12
12
  end
@@ -0,0 +1,97 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Icalia::Event
4
+ class Deserializer
5
+ attr_reader :data
6
+
7
+ class StandInReplacement
8
+ attr_reader :model, :association, :stand_in
9
+
10
+ def initialize(model:, association:, stand_in:)
11
+ @model = model
12
+ @association = association
13
+ @stand_in = stand_in
14
+ end
15
+ end
16
+
17
+ def initialize(jsonapi_data)
18
+ @jsonapi_data = jsonapi_data
19
+ @objects = {}
20
+ @pending_stand_in_replacements = []
21
+ end
22
+
23
+ def perform
24
+ return @data if @data.present?
25
+ deserialize_included
26
+ deserialize_data
27
+ replace_stand_ins
28
+ finalize
29
+ @data
30
+ end
31
+
32
+ def register_stand_in(model:, association:, stand_in:)
33
+ @pending_stand_in_replacements << StandInReplacement.new(
34
+ model: model,
35
+ association: association,
36
+ stand_in: stand_in
37
+ )
38
+ end
39
+
40
+ def to_s
41
+ '(...to_s...)'
42
+ end
43
+
44
+ def inspect
45
+ '(...inspect...)'
46
+ end
47
+
48
+ private
49
+
50
+ def replace_stand_ins
51
+ @pending_stand_in_replacements.each do |replacement|
52
+ associated_object = @objects[replacement.stand_in.to_key]
53
+ next unless associated_object.present?
54
+ variable = "@#{replacement.association}".to_sym
55
+ replacement.model.instance_variable_set(variable, associated_object)
56
+ end
57
+ end
58
+
59
+ def finalize
60
+ # debugger
61
+ end
62
+
63
+ def deserialize_included
64
+ @jsonapi_data.fetch('included', []).each do |object_data|
65
+ if object = deserialize_object_data(object_data)
66
+ add_object_to_index object
67
+ end
68
+ end
69
+ end
70
+
71
+ def add_object_to_index(object)
72
+ @objects[object.to_key] = object
73
+ end
74
+
75
+ def deserialize_data
76
+ root_data = @jsonapi_data.fetch('data')
77
+ if @data = add_object_to_index(deserialize_object_data(root_data))
78
+ add_object_to_index @data
79
+ end
80
+ end
81
+
82
+ def deserialize_object_data(object_data)
83
+ object_class_name = object_data['type'].underscore.classify
84
+ object_class = "::Icalia::#{object_class_name}".safe_constantize
85
+ return unless object_class.present?
86
+
87
+ deserializer_class = "::Icalia::Event::Deserializable#{object_class_name}".safe_constantize
88
+ return unless deserializer_class.present?
89
+
90
+ object_attributes = deserializer_class
91
+ .call(object_data)
92
+ .merge(serialization_context: self)
93
+
94
+ object_class.new object_attributes
95
+ end
96
+ end
97
+ end
@@ -1,9 +1,13 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'jsonapi/deserializable'
4
+
3
5
  module Icalia
4
6
  module Event
5
7
  serialization_path = "icalia-sdk-event-core/serialization"
6
8
 
9
+ autoload :Deserializer, "#{serialization_path}/deserializer"
10
+
7
11
  # Deserialization Modules:
8
12
  autoload :DeserializableResourceIdentity,
9
13
  "#{serialization_path}/deserializable_resource_identity"
@@ -57,9 +61,21 @@ module Icalia
57
61
  autoload :DeserializableCodeRepositoryEvent,
58
62
  "#{serialization_path}/deserializable_code_repository_event"
59
63
 
64
+ autoload :DeserializableCodeMergeRequest,
65
+ "#{serialization_path}/deserializable_code_merge_request"
66
+
67
+ autoload :DeserializableCodeMergeRequestEvent,
68
+ "#{serialization_path}/deserializable_code_merge_request_event"
69
+
70
+ autoload :DeserializableCodeCommit,
71
+ "#{serialization_path}/deserializable_code_commit"
72
+
60
73
  autoload :DeserializableCodeRepository,
61
74
  "#{serialization_path}/deserializable_code_repository"
62
75
 
76
+ autoload :DeserializableCodeRepositoryReference,
77
+ "#{serialization_path}/deserializable_code_repository_reference"
78
+
63
79
  autoload :DeserializableCloudIdentity,
64
80
  "#{serialization_path}/deserializable_cloud_identity"
65
81
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Icalia
4
4
  module Event
5
- CORE_VERSION = '0.3.0'
5
+ CORE_VERSION = '0.3.1'
6
6
  end
7
7
  end
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'icalia-sdk-event-core/version'
4
+ require 'icalia-sdk-event-core/models'
4
5
  require 'icalia-sdk-event-core/serialization'
5
6
 
6
7
  module Icalia::Event
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: icalia-sdk-event-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roberto Quintanilla
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-02-03 00:00:00.000000000 Z
11
+ date: 2020-02-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jsonapi-deserializable
@@ -24,6 +24,20 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: 0.2.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: activemodel
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '5.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '5.0'
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: bundler
29
43
  requirement: !ruby/object:Gem::Requirement
@@ -75,15 +89,33 @@ extensions: []
75
89
  extra_rdoc_files: []
76
90
  files:
77
91
  - lib/icalia-sdk-event-core.rb
92
+ - lib/icalia-sdk-event-core/models.rb
93
+ - lib/icalia-sdk-event-core/models/cloud_identity.rb
94
+ - lib/icalia-sdk-event-core/models/code_commit.rb
95
+ - lib/icalia-sdk-event-core/models/code_merge_request.rb
96
+ - lib/icalia-sdk-event-core/models/code_merge_request_event.rb
97
+ - lib/icalia-sdk-event-core/models/code_repository.rb
98
+ - lib/icalia-sdk-event-core/models/code_repository_reference.rb
99
+ - lib/icalia-sdk-event-core/models/model_base.rb
100
+ - lib/icalia-sdk-event-core/models/model_proxy.rb
101
+ - lib/icalia-sdk-event-core/models/organization.rb
102
+ - lib/icalia-sdk-event-core/models/person.rb
103
+ - lib/icalia-sdk-event-core/models/resource_action.rb
104
+ - lib/icalia-sdk-event-core/models/resource_identity.rb
105
+ - lib/icalia-sdk-event-core/models/resource_timestamps.rb
78
106
  - lib/icalia-sdk-event-core/serialization.rb
79
107
  - lib/icalia-sdk-event-core/serialization/deserializable_cloud_identity.rb
80
108
  - lib/icalia-sdk-event-core/serialization/deserializable_code_check_run.rb
81
109
  - lib/icalia-sdk-event-core/serialization/deserializable_code_check_run_event.rb
82
110
  - lib/icalia-sdk-event-core/serialization/deserializable_code_check_suite.rb
111
+ - lib/icalia-sdk-event-core/serialization/deserializable_code_commit.rb
83
112
  - lib/icalia-sdk-event-core/serialization/deserializable_code_issue.rb
84
113
  - lib/icalia-sdk-event-core/serialization/deserializable_code_issue_occurrence.rb
114
+ - lib/icalia-sdk-event-core/serialization/deserializable_code_merge_request.rb
115
+ - lib/icalia-sdk-event-core/serialization/deserializable_code_merge_request_event.rb
85
116
  - lib/icalia-sdk-event-core/serialization/deserializable_code_repository.rb
86
117
  - lib/icalia-sdk-event-core/serialization/deserializable_code_repository_event.rb
118
+ - lib/icalia-sdk-event-core/serialization/deserializable_code_repository_reference.rb
87
119
  - lib/icalia-sdk-event-core/serialization/deserializable_email_account.rb
88
120
  - lib/icalia-sdk-event-core/serialization/deserializable_membership.rb
89
121
  - lib/icalia-sdk-event-core/serialization/deserializable_membership_event.rb
@@ -99,6 +131,7 @@ files:
99
131
  - lib/icalia-sdk-event-core/serialization/deserializable_resource_identity.rb
100
132
  - lib/icalia-sdk-event-core/serialization/deserializable_resource_timestamps.rb
101
133
  - lib/icalia-sdk-event-core/serialization/deserializable_user.rb
134
+ - lib/icalia-sdk-event-core/serialization/deserializer.rb
102
135
  - lib/icalia-sdk-event-core/version.rb
103
136
  homepage: https://github.com/IcaliaLabs/icalia-sdk-ruby
104
137
  licenses: