right_develop 2.1.2 → 2.1.3
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.
- data/VERSION +1 -1
- data/lib/right_develop/ci/java_spec_formatter.rb +4 -1
- data/right_develop.gemspec +2 -2
- metadata +4 -4
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.1.
|
1
|
+
2.1.3
|
@@ -113,22 +113,25 @@ module RightDevelop::CI
|
|
113
113
|
end
|
114
114
|
|
115
115
|
def example_started(example)
|
116
|
-
@test_groups[example]
|
116
|
+
@test_groups[example] ||= @current_example_group
|
117
117
|
@example_started_at = Time.now
|
118
118
|
end
|
119
119
|
|
120
120
|
def example_passed(example)
|
121
|
+
@test_groups[example] ||= @current_example_group
|
121
122
|
@test_times[example] = Time.now - @example_started_at
|
122
123
|
@test_results[example] = 'passed'
|
123
124
|
end
|
124
125
|
|
125
126
|
def example_failed(example, counter, failure)
|
127
|
+
@test_groups[example] ||= @current_example_group
|
126
128
|
@test_times[example] = Time.now - @example_started_at
|
127
129
|
@test_results[example] = 'failed'
|
128
130
|
@test_failures[example] = failure
|
129
131
|
end
|
130
132
|
|
131
133
|
def example_pending(example, message, deprecated_pending_location=nil)
|
134
|
+
@test_groups[example] ||= @current_example_group
|
132
135
|
@test_times[example] = Time.now - @example_started_at
|
133
136
|
@test_results[example] = 'pending'
|
134
137
|
end
|
data/right_develop.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{right_develop}
|
8
|
-
s.version = "2.1.
|
8
|
+
s.version = "2.1.3"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Tony Spataro"]
|
12
|
-
s.date = %q{2014-03-
|
12
|
+
s.date = %q{2014-03-25}
|
13
13
|
s.default_executable = %q{right_develop}
|
14
14
|
s.description = %q{A toolkit of development tools created by RightScale.}
|
15
15
|
s.email = %q{support@rightscale.com}
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: right_develop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 13
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 2
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 2.1.
|
9
|
+
- 3
|
10
|
+
version: 2.1.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Tony Spataro
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2014-03-
|
18
|
+
date: 2014-03-25 00:00:00 -07:00
|
19
19
|
default_executable: right_develop
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|