wolf_core 1.0.96 → 1.0.97
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 +4 -4
- data/lib/wolf_core/version.rb +1 -1
- data/lib/wolf_core.rb +37 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2accd189d02f0e22881b710dd9204000706752af0e147af54526124bc632c038
|
4
|
+
data.tar.gz: 0a688b6ea5ddae130815583ada2d88a16c3e196bbebefe7003972331fab68038
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4dd53dc9c2a4d76285b235f601b9f810c26dc28b356fd72310fcf1e6a21e1269cbdc0c063a0b160d30f1b0e329a46e1183ce10f854ba7831adc91e25d897f8c8
|
7
|
+
data.tar.gz: 1842f34f4119e378004d8473f2138a450e20788847c5d84245d8144e184bcae10637e822f2b606d8db8daeaa4ad916ed99c3572ab74edfbe39fee269ecb99828
|
data/lib/wolf_core/version.rb
CHANGED
data/lib/wolf_core.rb
CHANGED
@@ -1,23 +1,59 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
puts 'Loading nokogiri...'
|
3
4
|
require 'nokogiri'
|
5
|
+
puts 'nokogiri Loaded'
|
6
|
+
puts 'Loading json...'
|
4
7
|
require 'json'
|
8
|
+
puts 'json Loaded'
|
9
|
+
puts 'Loading ostruct...'
|
5
10
|
require 'ostruct'
|
11
|
+
puts 'ostruct Loaded'
|
12
|
+
puts 'Loading httparty...'
|
6
13
|
require 'httparty'
|
14
|
+
puts 'httparty Loaded'
|
15
|
+
puts 'Loading active_support...'
|
7
16
|
require 'active_support'
|
17
|
+
puts 'active_support Loaded'
|
18
|
+
puts 'Loading active_model...'
|
8
19
|
require 'active_model'
|
20
|
+
puts 'active_model Loaded'
|
21
|
+
puts 'Loading active_model_serializers...'
|
9
22
|
require 'active_model_serializers'
|
23
|
+
puts 'active_model_serializers Loaded'
|
24
|
+
puts 'Loading active_support/core_ext...'
|
10
25
|
require 'active_support/core_ext'
|
26
|
+
puts 'active_support/core_ext Loaded'
|
27
|
+
puts 'Loading aws-sdk-lambda...'
|
11
28
|
require 'aws-sdk-lambda'
|
29
|
+
puts 'aws-sdk-lambda Loaded'
|
30
|
+
puts 'Loading redis...'
|
12
31
|
require 'redis'
|
32
|
+
puts 'redis Loaded'
|
33
|
+
puts 'Loading aws-sdk-dynamodb...'
|
13
34
|
require 'aws-sdk-dynamodb'
|
35
|
+
puts 'aws-sdk-dynamodb Loaded'
|
36
|
+
puts 'Loading honeybadger...'
|
14
37
|
require 'honeybadger'
|
38
|
+
puts 'honeybadger Loaded'
|
15
39
|
|
40
|
+
puts 'Loading wolf_core...'
|
16
41
|
module WolfCore; end
|
42
|
+
puts 'wolf_core Loaded'
|
17
43
|
|
44
|
+
puts 'Require wolf_core/utils/file_utils...'
|
18
45
|
require 'wolf_core/utils/file_utils'
|
46
|
+
puts 'wolf_core/utils/file_utils Required'
|
19
47
|
|
48
|
+
puts 'Require wolf_core source files...'
|
20
49
|
WolfCore::FileUtils.require_relative_folder(__dir__, 'wolf_core')
|
50
|
+
puts 'wolf_core source files Required'
|
51
|
+
puts 'initiating lambda function data source...'
|
21
52
|
WolfCore::LambdaFunctionDataSource.init
|
53
|
+
puts 'Lambda function data source initiated'
|
54
|
+
puts 'initiating in memory storage data source...'
|
22
55
|
WolfCore::InMemoryStorageDataSource.init
|
23
|
-
|
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'
|