wolf_core 1.0.97 → 1.0.98

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: 2accd189d02f0e22881b710dd9204000706752af0e147af54526124bc632c038
4
- data.tar.gz: 0a688b6ea5ddae130815583ada2d88a16c3e196bbebefe7003972331fab68038
3
+ metadata.gz: 7fcff3e10ecdc206d869c70ac0dced97a765ff728ae1adfead5bd9a8c7517ef0
4
+ data.tar.gz: 2ab68b2045262544f85e0f6ca12de574eaea2abe6949ff8eb114a3cec6b0eb49
5
5
  SHA512:
6
- metadata.gz: 4dd53dc9c2a4d76285b235f601b9f810c26dc28b356fd72310fcf1e6a21e1269cbdc0c063a0b160d30f1b0e329a46e1183ce10f854ba7831adc91e25d897f8c8
7
- data.tar.gz: 1842f34f4119e378004d8473f2138a450e20788847c5d84245d8144e184bcae10637e822f2b606d8db8daeaa4ad916ed99c3572ab74edfbe39fee269ecb99828
6
+ metadata.gz: '087bf812f94ef912454aba5b75cf1569a13f2bce575ea25452bf33afe5cab9fb210523e776780e2e61e7db5f013b4eda3e0ee9180b34798556c7e0d92d4ca380'
7
+ data.tar.gz: 60f839cf74c4277a169f90d7b627a9493d017b3be902aa0ec8c1d691a08246e4057a4ddc51fd3546b648b158a13077577f97fd9317e247dc6efc3df56e79d1f4
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WolfCore
4
- VERSION = "1.0.97"
4
+ VERSION = "1.0.98"
5
5
  end
data/lib/wolf_core.rb CHANGED
@@ -1,59 +1,22 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- puts 'Loading nokogiri...'
4
- require 'nokogiri'
5
- puts 'nokogiri Loaded'
6
- puts 'Loading json...'
7
3
  require 'json'
8
- puts 'json Loaded'
9
- puts 'Loading ostruct...'
10
4
  require 'ostruct'
11
- puts 'ostruct Loaded'
12
- puts 'Loading httparty...'
13
5
  require 'httparty'
14
- puts 'httparty Loaded'
15
- puts 'Loading active_support...'
16
6
  require 'active_support'
17
- puts 'active_support Loaded'
18
- puts 'Loading active_model...'
19
7
  require 'active_model'
20
- puts 'active_model Loaded'
21
- puts 'Loading active_model_serializers...'
22
8
  require 'active_model_serializers'
23
- puts 'active_model_serializers Loaded'
24
- puts 'Loading active_support/core_ext...'
25
9
  require 'active_support/core_ext'
26
- puts 'active_support/core_ext Loaded'
27
- puts 'Loading aws-sdk-lambda...'
28
10
  require 'aws-sdk-lambda'
29
- puts 'aws-sdk-lambda Loaded'
30
- puts 'Loading redis...'
31
11
  require 'redis'
32
- puts 'redis Loaded'
33
- puts 'Loading aws-sdk-dynamodb...'
34
12
  require 'aws-sdk-dynamodb'
35
- puts 'aws-sdk-dynamodb Loaded'
36
- puts 'Loading honeybadger...'
37
13
  require 'honeybadger'
38
- puts 'honeybadger Loaded'
39
14
 
40
- puts 'Loading wolf_core...'
41
15
  module WolfCore; end
42
- puts 'wolf_core Loaded'
43
16
 
44
- puts 'Require wolf_core/utils/file_utils...'
45
17
  require 'wolf_core/utils/file_utils'
46
- puts 'wolf_core/utils/file_utils Required'
47
18
 
48
- puts 'Require wolf_core source files...'
49
19
  WolfCore::FileUtils.require_relative_folder(__dir__, 'wolf_core')
50
- puts 'wolf_core source files Required'
51
- puts 'initiating lambda function data source...'
52
20
  WolfCore::LambdaFunctionDataSource.init
53
- puts 'Lambda function data source initiated'
54
- puts 'initiating in memory storage data source...'
55
21
  WolfCore::InMemoryStorageDataSource.init
56
- puts 'In memory storage data source initiated'
57
- puts 'initiating no sql db data source...'
58
- WolfCore::NoSqlDbDataSource.init
59
- puts 'No sql db data source initiated'
22
+ WolfCore::NoSqlDbDataSource.init
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wolf_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.97
4
+ version: 1.0.98
5
5
  platform: ruby
6
6
  authors:
7
7
  - Javier Roncallo
@@ -24,20 +24,6 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
- - !ruby/object:Gem::Dependency
28
- name: nokogiri
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: '0'
34
- type: :runtime
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - ">="
39
- - !ruby/object:Gem::Version
40
- version: '0'
41
27
  - !ruby/object:Gem::Dependency
42
28
  name: activesupport
43
29
  requirement: !ruby/object:Gem::Requirement