brpm_module_bladelogic 0.1.18 → 0.1.19
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/.travis.yml +2 -0
- data/brpm_module_bladelogic.gemspec +1 -1
- data/config.yml +2 -1
- data/tests/gemspec_spec.rb +15 -0
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
Mjg4MzVjYmZmNTZkYTM2YmI0ZmNjMWJiYjk2NzI2NGZhYWJkNzhkYw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
OWFmYWY3OGFkZWNjZGI0MmM1YTlkYjYyMDE3MDVlOTQ1MjZjMDZlYQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MTNhZTAxNmEwZjczYTg1YjI4Nzc5ZGUzMjQ5ZTAzOWZjMDY5MzUzMGM3MjNh
|
10
|
+
ZDUyNzNhZmFkZmUzNTc3YThkOTFjYWI1ZDM2MTE1MjI1MTVlYTcyNjU5ZjMw
|
11
|
+
ZmU5MTNjOGQzYmY4ZjQ2ZjFjZDhjMTdlODRkOWZkY2NiMTZhZTg=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NTJiMDY0MGEyODUzMGEzOGFlN2Y1Y2FkZGRiNmNkMWNlYmM2MTQ0NmNmYjhi
|
14
|
+
NzdiYTI3Njc1NDhjZGFjZDI3ZTAxNjU4N2EwMDBkN2E3MTZhYzM3YjlkNjll
|
15
|
+
NjA0NGYzMjQxNmYzNTgwZjlkMjMyMzk1OTYzZTM4OTYyYTlmYjI=
|
data/.travis.yml
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,11 +1,12 @@
|
|
1
1
|
dependencies:
|
2
2
|
- brpm_module_brpm
|
3
3
|
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.19
|
5
5
|
|
6
6
|
name: Blade
|
7
7
|
author: Niek Bartholomeus
|
8
8
|
email: niek.bartholomeus@gmail.com
|
9
9
|
homepage: https://github.com/BMC-RLM/brpm_module_bladelogic
|
10
|
+
license: MIT
|
10
11
|
summary: BladeLogic automation scripts and libraries to run on top of the BRPM Content framework
|
11
12
|
description: BladeLogic automation scripts and libraries to run on top of the BRPM Content framework. See https://github.com/BMC-RLM/brpm_content for more information about the BRPM Content framework
|
@@ -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,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: brpm_module_bladelogic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.19
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Niek Bartholomeus
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-08-
|
11
|
+
date: 2015-08-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: brpm_content
|
@@ -118,10 +118,11 @@ files:
|
|
118
118
|
- resource_automations/select_job.rb
|
119
119
|
- tests/create_package_spec.rb
|
120
120
|
- tests/deploy_package_spec.rb
|
121
|
+
- tests/gemspec_spec.rb
|
121
122
|
- tests/spec_helper.rb
|
122
123
|
homepage: https://github.com/BMC-RLM/brpm_module_bladelogic
|
123
124
|
licenses:
|
124
|
-
-
|
125
|
+
- MIT
|
125
126
|
metadata: {}
|
126
127
|
post_install_message:
|
127
128
|
rdoc_options: []
|