brpm_module_jira 0.1.10 → 0.1.11
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 +1 -1
- data/README.md +2 -2
- data/config.yml +2 -2
- data/{brpm_module_jira.gemspec → module.gemspec} +2 -5
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MWE4ZWY2MWQzNTIxYTU2NWNmZThlZTE3N2ZkNjZmNjkwNzgwNmEzZQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NjQwOTgxOTEyMTkxZGI3NWJmMjcyOWNjZGJjNmNjZmVmZTFkYzBjMQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
OTNmZmU3YWU0ZTE5MGE1ZTdlZWJmNGY0OTIyNGM5ODBhY2VhOThmZjg5MWNl
|
10
|
+
M2NiOWE4YjEwNGIwYTlkZTFmYzMxODA5Y2UwNDIwMGE5ZDM1NzEyZjZmODkw
|
11
|
+
OGZlOWJhNTFmN2NjMTM4NTdiMDRiYmE3OTU0MmRkZWVhNzEwMDM=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ODU5OTU2Y2FlMmNmMTA0ZDhlOTJkYjU4NGQzNjczYzk4NmM0NThhNzMzNTA5
|
14
|
+
NmI3YTkwYWU5NmQxZDc4MjZmMTdkNWE4ZjIyYjA3ZTNiM2VlODM1MDcwOWI4
|
15
|
+
NjM3ZjAwZGVhNjgxODNlZWYxZWRmOTJhMWRhYTllMjExN2RiYzI=
|
data/.travis.yml
CHANGED
@@ -6,7 +6,7 @@ before_install:
|
|
6
6
|
bundler_args: '' #remove the --deployment flag that causes the gems to be installed in .../1.9.1/...
|
7
7
|
|
8
8
|
script:
|
9
|
-
- rspec tests --format documentation --color
|
9
|
+
- bundle exec rspec tests --format documentation --color
|
10
10
|
|
11
11
|
notifications:
|
12
12
|
email:
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
#
|
1
|
+
# BRPM module for JIRA
|
2
2
|
|
3
3
|
[](https://travis-ci.org/BMC-RLM/brpm_module_jira)
|
4
4
|
|
5
5
|
[](http://badge.fury.io/rb/brpm_module_jira)
|
6
6
|
|
7
|
-
This repository represents an
|
7
|
+
This repository represents an BRPM module for JIRA, to be used on top of the [BRPM content framework](https://github.com/BMC-RLM/brpm_content_framework). It contains automation scripts to create, update and delete releases, to transition issues and to add comments in JIRA. It also contains a JIRA REST API client library.
|
data/config.yml
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
dependencies:
|
2
2
|
- brpm_module_brpm
|
3
3
|
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.11
|
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
9
|
license: MIT
|
10
10
|
summary: JIRA automation scripts and libraries to run on top of the BRPM Content framework
|
11
|
-
description: JIRA automation scripts and libraries to run on top of the BRPM Content framework. See https://github.com/BMC-RLM/
|
11
|
+
description: JIRA automation scripts and libraries to run on top of the BRPM Content framework. See https://github.com/BMC-RLM/brpm_content_framework for more information about the BRPM Content framework
|
12
12
|
n
|
@@ -3,7 +3,7 @@ require "yaml"
|
|
3
3
|
config = YAML.load_file(File.join(File.dirname(__FILE__), "config.yml"))
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
|
-
spec.name = File.basename(File.expand_path(File.dirname(__FILE__)))
|
6
|
+
spec.name = File.basename(File.expand_path(File.dirname(__FILE__))).sub("-#{config["version"]}", "")
|
7
7
|
spec.version = config["version"]
|
8
8
|
spec.platform = Gem::Platform::RUBY
|
9
9
|
spec.license = config["license"]
|
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
|
|
13
13
|
spec.summary = config["summary"]
|
14
14
|
spec.description = config["description"]
|
15
15
|
|
16
|
-
spec.add_runtime_dependency "brpm_content_framework", ">=0.
|
16
|
+
spec.add_runtime_dependency "brpm_content_framework", ">=0.2.8"
|
17
17
|
|
18
18
|
if config["dependencies"]
|
19
19
|
config["dependencies"].each do |dependency|
|
@@ -32,8 +32,5 @@ Gem::Specification.new do |spec|
|
|
32
32
|
spec.add_development_dependency "rspec"
|
33
33
|
|
34
34
|
spec.files = `git ls-files`.split("\n")
|
35
|
-
spec.require_path = 'lib'
|
36
|
-
|
37
35
|
spec.executables = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
38
|
-
spec.bindir = "bin"
|
39
36
|
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.11
|
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-
|
11
|
+
date: 2015-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: brpm_content_framework
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ! '>='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.2.8
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ! '>='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.
|
26
|
+
version: 0.2.8
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: brpm_module_brpm
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -67,8 +67,8 @@ dependencies:
|
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
69
|
description: JIRA automation scripts and libraries to run on top of the BRPM Content
|
70
|
-
framework. See https://github.com/BMC-RLM/
|
71
|
-
the BRPM Content framework n
|
70
|
+
framework. See https://github.com/BMC-RLM/brpm_content_framework for more information
|
71
|
+
about the BRPM Content framework n
|
72
72
|
email: niek.bartholomeus@gmail.com
|
73
73
|
executables: []
|
74
74
|
extensions: []
|
@@ -95,9 +95,9 @@ files:
|
|
95
95
|
- automations/transition_issues_for_run.rb
|
96
96
|
- automations/update_release.meta
|
97
97
|
- automations/update_release.rb
|
98
|
-
- brpm_module_jira.gemspec
|
99
98
|
- config.yml
|
100
99
|
- lib/jira_rest_client.rb
|
100
|
+
- module.gemspec
|
101
101
|
- tests/create_read_update_delete_release_spec.rb
|
102
102
|
- tests/gemspec_spec.rb
|
103
103
|
- tests/spec_helper.rb
|