brpm_content_framework 0.1.55
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 +15 -0
- data/.gitignore +38 -0
- data/.travis.yml +17 -0
- data/Gemfile +3 -0
- data/LICENSE +21 -0
- data/README.md +308 -0
- data/Rakefile +23 -0
- data/TO_BE_MIGRATED.txt +9 -0
- data/architecture.png +0 -0
- data/automations/direct_execute.meta +10 -0
- data/automations/direct_execute.rb +10 -0
- data/automations/install_module.meta +10 -0
- data/automations/install_module.rb +13 -0
- data/bin/brpm_install +30 -0
- data/bin/brpm_uninstall +30 -0
- data/bin/event_handler +63 -0
- data/bin/webhook_receiver +49 -0
- data/brpm_content.gemspec +31 -0
- data/config.yml +8 -0
- data/infrastructure/.bashrc +6 -0
- data/infrastructure/.brpm +2 -0
- data/infrastructure/config/customer_include.rb +26 -0
- data/infrastructure/config/server.yml +3 -0
- data/infrastructure/log.html +39 -0
- data/infrastructure/scripts/backup_database.sh +19 -0
- data/infrastructure/scripts/ddns.sh +10 -0
- data/infrastructure/scripts/install_brpm.sh +63 -0
- data/infrastructure/scripts/maintenance.sh +4 -0
- data/infrastructure/scripts/patch_brpm.sh +90 -0
- data/infrastructure/scripts/restore_database.sh +33 -0
- data/infrastructure/scripts/run_event_handler.cmd +19 -0
- data/infrastructure/scripts/run_event_handler.sh +20 -0
- data/infrastructure/scripts/run_webhook_receiver.cmd +15 -0
- data/infrastructure/scripts/run_webhook_receiver.sh +15 -0
- data/infrastructure/silent_install_options_4.6.txt +93 -0
- data/infrastructure/silent_install_options_upgrade_4.6.txt +92 -0
- data/infrastructure/smtp_settings.rb +42 -0
- data/lib/brpm_auto.rb +358 -0
- data/lib/brpm_script_executor.rb +80 -0
- data/lib/logging/brpm_logger.rb +39 -0
- data/lib/logging/logger_base.rb +36 -0
- data/lib/logging/simple_logger.rb +27 -0
- data/lib/module_installer.rb +483 -0
- data/lib/params/all_params.rb +80 -0
- data/lib/params/integration_settings.rb +27 -0
- data/lib/params/params.rb +174 -0
- data/lib/params/params_base.rb +81 -0
- data/lib/params/request_params.rb +38 -0
- data/lib/rest_api.rb +155 -0
- data/lib/semaphore.rb +79 -0
- data/lib/utilities.rb +317 -0
- data/lib/version_control/git.rb +192 -0
- data/lib/version_control/svn.rb +221 -0
- data/lib/write_to.rb +1 -0
- data/tests/all_params_spec.rb +116 -0
- data/tests/brpm_auto_spec.rb +84 -0
- data/tests/customer_include/config/customer_include.rb +10 -0
- data/tests/customer_include/config/server.yml +3 -0
- data/tests/customer_include_spec.rb +29 -0
- data/tests/gemspec_spec.rb +11 -0
- data/tests/module_installer_spec.rb +46 -0
- data/tests/params_spec.rb +172 -0
- data/tests/request_params_spec.rb +86 -0
- data/tests/server_yaml_spec.rb +19 -0
- data/tests/spec_helper.rb +64 -0
- data/to_be_migrated/brpm_framework.rb +88 -0
- data/to_be_migrated/customer_include_default.rb +25 -0
- data/to_be_migrated/local_jirb.rb +15 -0
- data/to_be_migrated/resource_framework.rb +211 -0
- data/transport/dispatch_baa.rb +355 -0
- data/transport/dispatch_base.rb +345 -0
- data/transport/dispatch_nsh.rb +248 -0
- data/transport/dispatch_ssh.rb +154 -0
- data/transport/transport_baa.rb +1095 -0
- data/transport/transport_nsh.rb +359 -0
- data/transport/transport_ssh.rb +220 -0
- metadata +204 -0
metadata
ADDED
@@ -0,0 +1,204 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: brpm_content_framework
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.55
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Niek Bartholomeus
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-08-26 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rest-client
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ! '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ! '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: json
|
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
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: savon
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 1.1.0
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 1.1.0
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: capistrano
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 2.15.5
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 2.15.5
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rake
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ! '>='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ! '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rspec
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ! '>='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ! '>='
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
description: The BRPM Content Framework is a lightweight framework that allows to
|
98
|
+
run automation logic on top of BRPM in a modular, re-usable, testable and developer-friendly
|
99
|
+
way
|
100
|
+
email: niek.bartholomeus@gmail.com
|
101
|
+
executables: []
|
102
|
+
extensions: []
|
103
|
+
extra_rdoc_files: []
|
104
|
+
files:
|
105
|
+
- .gitignore
|
106
|
+
- .travis.yml
|
107
|
+
- Gemfile
|
108
|
+
- LICENSE
|
109
|
+
- README.md
|
110
|
+
- Rakefile
|
111
|
+
- TO_BE_MIGRATED.txt
|
112
|
+
- architecture.png
|
113
|
+
- automations/direct_execute.meta
|
114
|
+
- automations/direct_execute.rb
|
115
|
+
- automations/install_module.meta
|
116
|
+
- automations/install_module.rb
|
117
|
+
- bin/brpm_install
|
118
|
+
- bin/brpm_uninstall
|
119
|
+
- bin/event_handler
|
120
|
+
- bin/webhook_receiver
|
121
|
+
- brpm_content.gemspec
|
122
|
+
- config.yml
|
123
|
+
- infrastructure/.bashrc
|
124
|
+
- infrastructure/.brpm
|
125
|
+
- infrastructure/config/customer_include.rb
|
126
|
+
- infrastructure/config/server.yml
|
127
|
+
- infrastructure/log.html
|
128
|
+
- infrastructure/scripts/backup_database.sh
|
129
|
+
- infrastructure/scripts/ddns.sh
|
130
|
+
- infrastructure/scripts/install_brpm.sh
|
131
|
+
- infrastructure/scripts/maintenance.sh
|
132
|
+
- infrastructure/scripts/patch_brpm.sh
|
133
|
+
- infrastructure/scripts/restore_database.sh
|
134
|
+
- infrastructure/scripts/run_event_handler.cmd
|
135
|
+
- infrastructure/scripts/run_event_handler.sh
|
136
|
+
- infrastructure/scripts/run_webhook_receiver.cmd
|
137
|
+
- infrastructure/scripts/run_webhook_receiver.sh
|
138
|
+
- infrastructure/silent_install_options_4.6.txt
|
139
|
+
- infrastructure/silent_install_options_upgrade_4.6.txt
|
140
|
+
- infrastructure/smtp_settings.rb
|
141
|
+
- lib/brpm_auto.rb
|
142
|
+
- lib/brpm_script_executor.rb
|
143
|
+
- lib/logging/brpm_logger.rb
|
144
|
+
- lib/logging/logger_base.rb
|
145
|
+
- lib/logging/simple_logger.rb
|
146
|
+
- lib/module_installer.rb
|
147
|
+
- lib/params/all_params.rb
|
148
|
+
- lib/params/integration_settings.rb
|
149
|
+
- lib/params/params.rb
|
150
|
+
- lib/params/params_base.rb
|
151
|
+
- lib/params/request_params.rb
|
152
|
+
- lib/rest_api.rb
|
153
|
+
- lib/semaphore.rb
|
154
|
+
- lib/utilities.rb
|
155
|
+
- lib/version_control/git.rb
|
156
|
+
- lib/version_control/svn.rb
|
157
|
+
- lib/write_to.rb
|
158
|
+
- tests/all_params_spec.rb
|
159
|
+
- tests/brpm_auto_spec.rb
|
160
|
+
- tests/customer_include/config/customer_include.rb
|
161
|
+
- tests/customer_include/config/server.yml
|
162
|
+
- tests/customer_include_spec.rb
|
163
|
+
- tests/gemspec_spec.rb
|
164
|
+
- tests/module_installer_spec.rb
|
165
|
+
- tests/params_spec.rb
|
166
|
+
- tests/request_params_spec.rb
|
167
|
+
- tests/server_yaml_spec.rb
|
168
|
+
- tests/spec_helper.rb
|
169
|
+
- to_be_migrated/brpm_framework.rb
|
170
|
+
- to_be_migrated/customer_include_default.rb
|
171
|
+
- to_be_migrated/local_jirb.rb
|
172
|
+
- to_be_migrated/resource_framework.rb
|
173
|
+
- transport/dispatch_baa.rb
|
174
|
+
- transport/dispatch_base.rb
|
175
|
+
- transport/dispatch_nsh.rb
|
176
|
+
- transport/dispatch_ssh.rb
|
177
|
+
- transport/transport_baa.rb
|
178
|
+
- transport/transport_nsh.rb
|
179
|
+
- transport/transport_ssh.rb
|
180
|
+
homepage: https://github.com/BMC-RLM/brpm_content
|
181
|
+
licenses:
|
182
|
+
- MIT
|
183
|
+
metadata: {}
|
184
|
+
post_install_message:
|
185
|
+
rdoc_options: []
|
186
|
+
require_paths:
|
187
|
+
- lib
|
188
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
189
|
+
requirements:
|
190
|
+
- - ! '>='
|
191
|
+
- !ruby/object:Gem::Version
|
192
|
+
version: '0'
|
193
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
194
|
+
requirements:
|
195
|
+
- - '='
|
196
|
+
- !ruby/object:Gem::Version
|
197
|
+
version: 2.1.9
|
198
|
+
requirements: []
|
199
|
+
rubyforge_project:
|
200
|
+
rubygems_version: 2.1.9
|
201
|
+
signing_key:
|
202
|
+
specification_version: 4
|
203
|
+
summary: BRPM Content Framework
|
204
|
+
test_files: []
|