brpm_module_brpm 0.1.29 → 0.1.30

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
- ZjcyMjNiYmZkM2E4Njk4ZGE4NGFiYzBkMzhmNzhhMDgwZmZmNjZkNA==
4
+ ZDRiOTU1NjRmZTk4ZjY1MjMzZGY1ODgzZDkwOGMyMjJjNjExZmU5OA==
5
5
  data.tar.gz: !binary |-
6
- ZDRiYzMzOTBmZjBiZDNiMjc0NDdlYjEzMmRkNjFhY2ZhYzFmZTk2OA==
6
+ NWMxNzE1MTEyODdiMDE0NGE5ZWUxODhkNTlmNDM2Y2VmY2Q1YTE2NQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YWJjYmE1NGY5MDlkYjAxZDgyMjE3ZDgyZTZmNTM1M2RmODJmY2UzMzU0YzEx
10
- YmVlODBjN2YyZDczOTQxNmRlOGY3MGNhYzNhOTM0NmU4ZWRmOGVjZDNmZGU3
11
- OWM2YjgwOTFmNzUxZTdhNGEyMTY3NmJkZWExNTRlYjI1NDdkNzk=
9
+ ZGMwMTUxNzEwYmNiYmQ1NzIyOWIxNDMyZTVhNWExMjljZmRjYzU5YTdiYjg5
10
+ MGE2YTE4NTU2MTJlNjNhYzk4YjE5Yzk5M2Y5ZTRiOWZlZTgzNzU5Y2JhMTJj
11
+ OGYwYmJlNzgzNjMzNDA3NTZlMDQ5NTNiMDMxNDhlY2VkY2E4OWE=
12
12
  data.tar.gz: !binary |-
13
- NDkzNjQ4NzlmMzY1NThlZGJlMjVjYzZkMjM3ZjdmZjliY2QzYzJiMjg5MmRj
14
- ZjVjMzMwZmY0M2EwM2M0Mzc2ZDNjNTJmNDNhMmU4NGVlNjM2ZmMyMzNiNDZl
15
- ZjhlZmVkOThiZDQyMDExNjQ1NjM5NmE1MDRjODZkYTM5NWQ5YzM=
13
+ YWVlYjZhNGU3ODk4MjMzYjMyYTZlYWZlNTY0NjZhZjg5MWFkOWJjMDRkY2Qw
14
+ MGMyYjBjZTdjZjdiMDZhNTdjN2Y5NWFiOTdkOGQwMGE5ZGExMTI2NzY5NTEz
15
+ ZDRjY2NiNzMwZDkyOWRhYjEzZmIwYmEwMmQ2MmQ5YWI0MDk4NmE=
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- brpm_module_brpm (0.1.29)
4
+ brpm_module_brpm (0.1.30)
5
5
  brpm_content (>= 0.1.11)
6
6
 
7
7
  GEM
@@ -10,7 +10,7 @@ GEM
10
10
  akami (1.2.2)
11
11
  gyoku (>= 0.4.0)
12
12
  nokogiri
13
- brpm_content (0.1.43)
13
+ brpm_content (0.1.48)
14
14
  capistrano (= 2.15.5)
15
15
  json
16
16
  rest-client
@@ -27,7 +27,7 @@ GEM
27
27
  unf (>= 0.0.5, < 1.0.0)
28
28
  gyoku (0.4.6)
29
29
  builder (>= 2.1.2)
30
- highline (1.7.2)
30
+ highline (1.7.3)
31
31
  http-cookie (1.0.2)
32
32
  domain_name (~> 0.5)
33
33
  httpi (1.1.1)
@@ -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 = "GNU General Public License v2.0"
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.29
1
+ version: 0.1.30
2
2
 
3
3
  author: Niek Bartholomeus
4
4
  email: niek.bartholomeus@gmail.com
5
5
  homepage: https://github.com/BMC-RLM/brpm_module_brpm
6
+ license: MIT
6
7
  summary: BRPM automation scripts and libraries to run on top of the BRPM Content framework
7
8
  description: BRPM 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,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brpm_module_brpm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.29
4
+ version: 0.1.30
5
5
  platform: ruby
6
6
  authors:
7
7
  - Niek Bartholomeus
@@ -97,13 +97,14 @@ files:
97
97
  - resource_automations/select_step_in_request.rb
98
98
  - tests/create_release_request_spec.rb
99
99
  - tests/create_request_spec.rb
100
+ - tests/gemspec_spec.rb
100
101
  - tests/rest/list_items_spec.rb
101
102
  - tests/rest/lists_spec.rb
102
103
  - tests/select_application_version_spec.rb
103
104
  - tests/spec_helper.rb
104
105
  homepage: https://github.com/BMC-RLM/brpm_module_brpm
105
106
  licenses:
106
- - GNU General Public License v2.0
107
+ - MIT
107
108
  metadata: {}
108
109
  post_install_message:
109
110
  rdoc_options: []