wolf_core 1.0.88 → 1.0.90

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: 4c9b18a3bc27663bbadcfb5d14982424574280b16346fd93a63edee396425b44
4
- data.tar.gz: 7ab5549f523329749819b6ac450d3880bb022c0f6d555b81f919b7ddbbda3214
3
+ metadata.gz: 2c418670e6c67ff34988b86d67169af4b9516daf79872be6831c8812267dc1c4
4
+ data.tar.gz: 0d6b4fa0a8377fdfd89ec9b24c834e342b59487d9401d8d3d8d563f2c4efe697
5
5
  SHA512:
6
- metadata.gz: 236260ec58fd951be549cacd1fcf1d326ea5698d50b78fa4a9dd89f1f6382825a3ce9a35518576f8a59ffa076769e823e6dbb75794de6f4026bbabefbf2c56d1
7
- data.tar.gz: 7598d705a89daabc408cc9e3b96ad0624f2cdfbe3df5173ddd9f36e196c751786c49340f04f45128f86afaa0d1ae8ce13b932917a249d9dbcca3258bc2d6c995
6
+ metadata.gz: dc53fb7c1efb44810944647f8cce199b0d6c966eb4c3a9092c86ecaf2d695665ee1989bd9e43f34d8a7047b3afd2a15816fe15ecae5d3159b6e9685c334c3968
7
+ data.tar.gz: d3c4e50ff16403f4f49e9e3ddd67651789aefceb2837f7cc0e51e0b0b2ffa14421337331f42a4c1dd3510651f6a03db6e4ae71abeda265f8ca505b840d5f3afa
@@ -4,5 +4,6 @@ module WolfCore
4
4
  class ApplicationRepository
5
5
  include WolfCore::NoSqlDbOperations
6
6
  include WolfCore::HttpOperations
7
+ include WolfCore::Serializable
7
8
  end
8
9
  end
@@ -0,0 +1,5 @@
1
+ module WolfCore
2
+ class ApplicationSerializer < ActiveModel::Serializer
3
+ include WolfCore::Serializable
4
+ end
5
+ end
@@ -23,5 +23,13 @@ module WolfCore
23
23
  key: key
24
24
  }).item
25
25
  end
26
+
27
+ def query(table_name:, key_condition_expression:, expression_attribute_values: nil)
28
+ instance.query({
29
+ table_name: table_name,
30
+ key_condition_expression: key_condition_expression,
31
+ expression_attribute_values: expression_attribute_values
32
+ }).items
33
+ end
26
34
  end
27
35
  end
@@ -1,5 +1,15 @@
1
1
  module WolfCore
2
2
  module NoSqlDbOperations
3
+ module_function
4
+
5
+ def query_no_sql_items(table_name:, key_condition_expression:, expression_attribute_values: nil)
6
+ NoSqlDbDataSource.query(
7
+ table_name: table_name,
8
+ key_condition_expression: key_condition_expression,
9
+ expression_attribute_values: expression_attribute_values
10
+ )
11
+ end
12
+
3
13
  def put_no_sql_item(table_name:, item:)
4
14
  WolfCore::NoSqlDbDataSource.put_item(
5
15
  table_name: table_name,
@@ -0,0 +1,17 @@
1
+ module WolfCore
2
+ module Serializable
3
+ def serialize_with(serializer, entity, options = {})
4
+ serializer.new(entity, options).as_json.with_indifferent_access
5
+ end
6
+
7
+ def serialize_all_with(serializer, collection, options = {})
8
+ collection.map do |item|
9
+ serialize_with(
10
+ serializer,
11
+ item,
12
+ options
13
+ )
14
+ end
15
+ end
16
+ end
17
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WolfCore
4
- VERSION = "1.0.88"
4
+ VERSION = "1.0.90"
5
5
  end
data/lib/wolf_core.rb CHANGED
@@ -5,6 +5,7 @@ require 'ostruct'
5
5
  require 'httparty'
6
6
  require 'active_support'
7
7
  require 'active_model'
8
+ require 'active_model_serializers'
8
9
  require 'active_support/core_ext'
9
10
  require 'aws-sdk-lambda'
10
11
  require 'redis'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wolf_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.88
4
+ version: 1.0.90
5
5
  platform: ruby
6
6
  authors:
7
7
  - Javier Roncallo
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-02-27 00:00:00.000000000 Z
11
+ date: 2025-02-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -108,6 +108,20 @@ dependencies:
108
108
  - - ">="
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: active_model_serializers
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
111
125
  description: Repository to store shared code among Ruby projects.
112
126
  email:
113
127
  - jroncallo96@gmail.com
@@ -137,6 +151,7 @@ files:
137
151
  - lib/wolf_core/domain/entity.rb
138
152
  - lib/wolf_core/domain/value_object.rb
139
153
  - lib/wolf_core/infrastructure/application_repository.rb
154
+ - lib/wolf_core/infrastructure/application_serializer.rb
140
155
  - lib/wolf_core/infrastructure/fkm_operations.rb
141
156
  - lib/wolf_core/infrastructure/http_data_source.rb
142
157
  - lib/wolf_core/infrastructure/http_operations.rb
@@ -146,6 +161,7 @@ files:
146
161
  - lib/wolf_core/infrastructure/lambda_function_operations.rb
147
162
  - lib/wolf_core/infrastructure/no_sql_db_data_source.rb
148
163
  - lib/wolf_core/infrastructure/no_sql_db_operations.rb
164
+ - lib/wolf_core/infrastructure/serializable.rb
149
165
  - lib/wolf_core/utils/array_utils.rb
150
166
  - lib/wolf_core/utils/async_utils.rb
151
167
  - lib/wolf_core/utils/file_utils.rb