brpm_content_framework 0.2.21 → 0.2.22

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ODQ5NDZjMjlmN2Q5MGZmNGFlNjBiNTg1ODI0YjMwZDA0NWEzOGM2NQ==
4
+ NjE2MTE5YzcxZTIwM2FlNjc0MzdmYzA4Zjk1MzYwNDY3NzIyODVlMw==
5
5
  data.tar.gz: !binary |-
6
- ZmIyZDk1OGViMzFhNjBmNzcyMDdhOTk2MmM4YjM3NmVjODY1MTRiOA==
6
+ ZDk3YjcyNTAwOGJkYjQ1ZDkwY2U3OGMwZmYzNzVmZjhkZjUxODJlZg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ZTNlMWYwOTJiOGE2ZGJhNWJlYmJmNmFjZDcwYzRlNjBjNTllMjRlNmMzMmQz
10
- MmUxZTVkODAwYmY5OTcwZmIwMDExODE1ZDBkMDA2M2RkYzljOTlmZmVkNmI4
11
- NDM5MDQ4Y2QyOWYxMWJkMWUxODMzY2Q2NDY4MzA1MzI0Y2NiNjQ=
9
+ MjQ2N2I1ZWEzMmVmM2EyNWM1NGM0MWQwMWE0NmNhN2JlOTQ4OTI2ZDQ0OTFm
10
+ OWQ0MjJlNDkzMTA2NDdkNWIxMTVlOTE2NDdmYzJjNzc0OWRiOGQxMTU5OTVh
11
+ NmVmOGUwYWNiNDRhNTJjMjNiMzcyNjUwZjI5YmRlN2M5YWRjYzI=
12
12
  data.tar.gz: !binary |-
13
- ZThhNmU3ZjFlMDA3ZGE0NjU2OGYyYWRmY2IzMjczZTE2MWVkODRkZTllNjA0
14
- MjJhMzY2Mjk2ZjRjOWQ2NDdmZGVlYTYyN2Y4MjUzNTE0NzI2OTdiNDJhOWFm
15
- NjRmZWRiMGZkNjAyYWY4NzdlZWVjNTIyYTYwZTNlYjkxY2U0MjQ=
13
+ ZGRhNWFiYjMyOGU3ZWU3Y2JmMjZjNTE0ZDdhNWM3YjgzY2E5OGU1NmYxZTMx
14
+ MThmZTIxN2UwY2UxYzVhNzUzOWU0NTc3ZmFhNTExOGFlOTZlODNiOGE1M2Rk
15
+ YTU1N2Q4OTI1MjEyNjU4NjNmYTk2N2Q1MzU3NWQwM2YzMWZkZmQ=
data/bin/brpm_install CHANGED
@@ -7,6 +7,7 @@ end
7
7
 
8
8
  require "yaml"
9
9
  require "brpm_auto"
10
+ require "module_installer"
10
11
 
11
12
  params = {}
12
13
  params["log_file"] = "/tmp/brpm_install.log"
data/config.yml CHANGED
@@ -1,4 +1,4 @@
1
- version: 0.2.21
1
+ version: 0.2.22
2
2
 
3
3
  author: Niek Bartholomeus
4
4
  email: niek.bartholomeus@gmail.com
data/lib/brpm_auto.rb CHANGED
@@ -1,5 +1,18 @@
1
1
  require "yaml"
2
2
 
3
+ print "Loading all files from #{File.dirname(__FILE__)}...\n"
4
+ require_relative "logging/brpm_logger"
5
+ require_relative "logging/simple_logger"
6
+
7
+ require_relative "params/params"
8
+ require_relative "params/request_params"
9
+ require_relative "params/all_params"
10
+ require_relative "params/integration_settings"
11
+
12
+ require_relative "utilities"
13
+ require_relative "rest_api"
14
+ require_relative "semaphore"
15
+
3
16
  class BrpmAuto
4
17
  private_class_method :new
5
18
 
@@ -18,10 +31,6 @@ class BrpmAuto
18
31
  def init
19
32
  @framework_root_path = File.expand_path("#{File.dirname(__FILE__)}/..")
20
33
 
21
- require_relative "logging/brpm_logger"
22
-
23
- require_libs_no_file_logging @framework_root_path
24
-
25
34
  self.extend Utilities
26
35
 
27
36
  @config = get_config
@@ -1,3 +1,5 @@
1
+ require_relative "params_base"
2
+
1
3
  class AllParams < ParamsBase
2
4
  def initialize(params, request_params)
3
5
  @params = params
data/lib/params/params.rb CHANGED
@@ -1,3 +1,5 @@
1
+ require_relative "params_base"
2
+
1
3
  class Params < ParamsBase
2
4
  attr_reader :application
3
5
  attr_reader :component
@@ -1,3 +1,5 @@
1
+ require_relative "params_base"
2
+
1
3
  class RequestParams < ParamsBase
2
4
  attr_reader :file_path
3
5
 
@@ -54,6 +54,7 @@ end
54
54
 
55
55
  def setup_brpm_auto
56
56
  require_relative "../lib/brpm_auto" #require_relative because we can't run inside bundler, we can't run inside bundler because we need the brpm_module_test which is not included in the brpm_content_framework Gemfile
57
+ require_relative "../lib/module_installer" #require_relative because we can't run inside bundler, we can't run inside bundler because we need the brpm_module_test which is not included in the brpm_content_framework Gemfile
57
58
  BrpmAuto.setup(get_default_params)
58
59
  end
59
60
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brpm_content_framework
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.21
4
+ version: 0.2.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - Niek Bartholomeus