brpm_content 0.1.47 → 0.1.48
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 +8 -8
- data/Rakefile +0 -1
- data/brpm_content.gemspec +1 -1
- data/config.yml +2 -1
- data/modules/framework/tests/gemspec_spec.rb +15 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MmRkMzlmNjY2ZTBjYjUwOTM5YzE0ODgxMjM4ZGFmZDg3NzAwMzYxNg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
N2VhOGIxYjY4MTg0ZTY0Y2ZmMmYzODcxMmI4MGVkOTkxNjU4NjE5MA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MWJjY2VmNGNmM2NkZTVlNmE2YTNjYWQyYjUwOGViNWU3OTQ1ODA2OTc0MmVi
|
10
|
+
NmE5YmU1ZmExZTM0M2M4MjJmMTlkY2JhZjZmNDQwYTAwZDFiOTBjYmQyN2M5
|
11
|
+
OTExYmZhZjc2ZTNlM2JhY2JkN2E4NmE5MTcyNjMyNGFhODBiYzE=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NzE3OTIwNmRhMjg4MmIxYTIyYzQ2YTMzNTUzZjQ5NjQ5NWUzYWNiYmUxNmJm
|
14
|
+
MTRkMzQxMGIyYzZmYzE3Zjg0YjQ0NmI5MWI2ZWQ3MzY2MDBiMjEzYzI4M2Fl
|
15
|
+
NTlhYzYwZWY4ZTc2NWEyMTEwZWUxYWE0ZGIzNzkyN2ZkY2EwZmY=
|
data/Rakefile
CHANGED
data/brpm_content.gemspec
CHANGED
@@ -6,7 +6,7 @@ Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = File.basename(File.expand_path(File.dirname(__FILE__)))
|
7
7
|
spec.version = config["version"]
|
8
8
|
spec.platform = Gem::Platform::RUBY
|
9
|
-
spec.license = "
|
9
|
+
spec.license = config["license"]
|
10
10
|
spec.authors = [config["author"]]
|
11
11
|
spec.email = config["email"]
|
12
12
|
spec.homepage = config["homepage"]
|
data/config.yml
CHANGED
@@ -1,7 +1,8 @@
|
|
1
|
-
version: 0.1.
|
1
|
+
version: 0.1.48
|
2
2
|
|
3
3
|
author: Niek Bartholomeus
|
4
4
|
email: niek.bartholomeus@gmail.com
|
5
5
|
homepage: https://github.com/BMC-RLM/brpm_content
|
6
|
+
license: MIT
|
6
7
|
summary: BRPM Content Framework
|
7
8
|
description: The BRPM Content Framework is a lightweight framework that allows to run automation logic on top of BRPM in a modular, re-usable, testable and developer-friendly way
|
@@ -0,0 +1,15 @@
|
|
1
|
+
require_relative "spec_helper"
|
2
|
+
|
3
|
+
describe 'Gemspec' do
|
4
|
+
before(:each) do
|
5
|
+
cleanup_request_params
|
6
|
+
end
|
7
|
+
|
8
|
+
it 'should have the right license' do
|
9
|
+
config = YAML.load_file(File.expand_path("#{File.dirname(__FILE__)}../../../../config.yml"))
|
10
|
+
|
11
|
+
expect(config).to have_key("license")
|
12
|
+
expect(config["license"].downcase).not_to include("gpl")
|
13
|
+
expect(config["license"].downcase).not_to include("gnu")
|
14
|
+
end
|
15
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: brpm_content
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.48
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Niek Bartholomeus
|
@@ -314,6 +314,7 @@ files:
|
|
314
314
|
- modules/framework/tests/customer_include/config/customer_include.rb
|
315
315
|
- modules/framework/tests/customer_include/config/server.yml
|
316
316
|
- modules/framework/tests/customer_include_spec.rb
|
317
|
+
- modules/framework/tests/gemspec_spec.rb
|
317
318
|
- modules/framework/tests/local_jirb.rb
|
318
319
|
- modules/framework/tests/module_installer_spec.rb
|
319
320
|
- modules/framework/tests/params_spec.rb
|
@@ -376,7 +377,7 @@ files:
|
|
376
377
|
- modules/windows/lib/samba.rb
|
377
378
|
homepage: https://github.com/BMC-RLM/brpm_content
|
378
379
|
licenses:
|
379
|
-
-
|
380
|
+
- MIT
|
380
381
|
metadata: {}
|
381
382
|
post_install_message:
|
382
383
|
rdoc_options: []
|