brpm_module_jira 0.1.8 → 0.1.9
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/brpm_module_jira.gemspec +1 -1
- data/config.yml +3 -1
- data/tests/gemspec_spec.rb +11 -0
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MjM5ZWQzZjRlNjFmNjQ3Y2Q0NzU1ODEzMDBkYTlmYTZjMGMzMGIyYw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NjdkM2M3YmY0OWQ4OTg1ZWQ0N2E4M2M0M2JjYmFlMDAyYzExOTUwZg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YmVlZTRiOTJkMzZhYWY3NjkzOGU1YTUwZTQ4YzdkY2FhYmVlYzE3NTUzOTEz
|
10
|
+
YzhhOWM2NWI2MTA4MTRhNDI3ZjRlZTYyYWU1MDQ4OWI3NjA2MzU2NWU3NmVl
|
11
|
+
N2U4ODNmZGE3YmE0MWZlYzY4NjNmNGZjMjBmMGY5OTYzN2E5ZTQ=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NzllM2IwNGIzMWI0MDk5ODZjYTJkNGYwYzQ3YjRkYmEyMTJlNGIxYzFlNjI2
|
14
|
+
YTE1MTk1OWZiMzY1YzY2YjY5YzMwZGY0NTM3ZGE4ZTM0OGZjYzYyZWFhZDZi
|
15
|
+
NmEzODZmN2I2YzQwZGYzM2E0ZWVkYjljMTRjNjI3ZWRlMTBlYTY=
|
data/brpm_module_jira.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,10 +1,12 @@
|
|
1
1
|
dependencies:
|
2
2
|
- brpm_module_brpm
|
3
3
|
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.9
|
5
5
|
|
6
6
|
author: Niek Bartholomeus
|
7
7
|
email: niek.bartholomeus@gmail.com
|
8
8
|
homepage: https://github.com/BMC-RLM/brpm_module_jira
|
9
|
+
license: MIT
|
9
10
|
summary: JIRA automation scripts and libraries to run on top of the BRPM Content framework
|
10
11
|
description: JIRA 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
|
12
|
+
n
|
@@ -0,0 +1,11 @@
|
|
1
|
+
require_relative "spec_helper"
|
2
|
+
|
3
|
+
describe 'Gemspec' do
|
4
|
+
it 'should have the right license' do
|
5
|
+
config = YAML.load_file(File.expand_path("#{File.dirname(__FILE__)}/../config.yml"))
|
6
|
+
|
7
|
+
expect(config).to have_key("license")
|
8
|
+
expect(config["license"].downcase).not_to include("gpl")
|
9
|
+
expect(config["license"].downcase).not_to include("gnu")
|
10
|
+
end
|
11
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: brpm_module_jira
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.9
|
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
|
@@ -68,7 +68,7 @@ dependencies:
|
|
68
68
|
version: '0'
|
69
69
|
description: JIRA automation scripts and libraries to run on top of the BRPM Content
|
70
70
|
framework. See https://github.com/BMC-RLM/brpm_content for more information about
|
71
|
-
the BRPM Content framework
|
71
|
+
the BRPM Content framework n
|
72
72
|
email: niek.bartholomeus@gmail.com
|
73
73
|
executables: []
|
74
74
|
extensions: []
|
@@ -99,11 +99,12 @@ files:
|
|
99
99
|
- config.yml
|
100
100
|
- lib/jira_rest_client.rb
|
101
101
|
- tests/create_read_update_delete_release_spec.rb
|
102
|
+
- tests/gemspec_spec.rb
|
102
103
|
- tests/spec_helper.rb
|
103
104
|
- tests/transition_issue_spec.rb
|
104
105
|
homepage: https://github.com/BMC-RLM/brpm_module_jira
|
105
106
|
licenses:
|
106
|
-
-
|
107
|
+
- MIT
|
107
108
|
metadata: {}
|
108
109
|
post_install_message:
|
109
110
|
rdoc_options: []
|