jujube 0.5.2 → 0.6.0
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 +4 -4
- data/lib/jujube/components/publishers.rb +2 -1
- data/lib/jujube/driver.rb +6 -1
- data/lib/jujube/version.rb +1 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9ba3b21e05c514931114ac2dd613f783e3a552fd
|
|
4
|
+
data.tar.gz: f2b71977e9e4692ab5d79365b8f607482493a3d6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1fe3624538c5ff052a0fc48e8a5785b674616c9630de439c07c9a48ecf9688da4808df0fa0dcb41dc9acc726c0f815f57e5c3b46d3030c1cfc21781360fb6741
|
|
7
|
+
data.tar.gz: 1a69120b5c82a0949712c395bec634b2937fab5f6aee8df44cd68b50ebd9bcbff866639e7e154cc367e15b94da2eb03b1ea2f248b694ae9782f192ecb58e24d2
|
|
@@ -35,7 +35,8 @@ module Jujube
|
|
|
35
35
|
# @!method fitnesse(options = {})
|
|
36
36
|
# Specify a `fitnesse` publisher for a job.
|
|
37
37
|
#
|
|
38
|
-
# This publisher requires support in jenkins-job-builder that has not yet been
|
|
38
|
+
# This publisher requires support in jenkins-job-builder that has not yet been merged.
|
|
39
|
+
# See {https://review.openstack.org/87711} for the patch.
|
|
39
40
|
#
|
|
40
41
|
# @param options [Hash] The configuration options for the component.
|
|
41
42
|
# @return [Hash] The specification for the component.
|
data/lib/jujube/driver.rb
CHANGED
|
@@ -52,10 +52,15 @@ module Jujube
|
|
|
52
52
|
options.output = Pathname.new(file)
|
|
53
53
|
end
|
|
54
54
|
|
|
55
|
-
opts.
|
|
55
|
+
opts.on_tail('-h', '--help', "Display this screen") do
|
|
56
56
|
puts opts
|
|
57
57
|
exit
|
|
58
58
|
end
|
|
59
|
+
|
|
60
|
+
opts.on_tail('--version', "Show version") do
|
|
61
|
+
puts VERSION
|
|
62
|
+
exit
|
|
63
|
+
end
|
|
59
64
|
end.parse!(argv)
|
|
60
65
|
|
|
61
66
|
options.paths = argv.map { |file| Pathname.new(file) } unless argv.empty?
|
data/lib/jujube/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jujube
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Randy Coulman
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-08-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|