coderunner 0.16.17 → 0.16.18
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/VERSION +1 -1
- data/coderunner.gemspec +2 -2
- data/lib/coderunner/run.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 24e1d40b5039aa83c1f523978438f2dd68011b6c
|
|
4
|
+
data.tar.gz: 5a03886c56b241ae3e990ba1b5eda9c529ad0cd8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c4537db3cc996f2cd264e8d32d5ed754020278036c829c6156b5020310909ccbba3c23dbea41e39ed8959331a08bd36784e47c6c1e217287a28eb04f88b2a4fe
|
|
7
|
+
data.tar.gz: 84274c118cc1e15b05a6544a5c9715f2d2bffef2cd1293f0aff66c9072825a7960b59de6d313cf75a0beac066af248ef4f5eaa145c3673c7f8721547550558c6
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.16.
|
|
1
|
+
0.16.18
|
data/coderunner.gemspec
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: coderunner 0.16.
|
|
5
|
+
# stub: coderunner 0.16.18 ruby lib
|
|
6
6
|
# stub: ext/extconf.rb
|
|
7
7
|
|
|
8
8
|
Gem::Specification.new do |s|
|
|
9
9
|
s.name = "coderunner"
|
|
10
|
-
s.version = "0.16.
|
|
10
|
+
s.version = "0.16.18"
|
|
11
11
|
|
|
12
12
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
13
13
|
s.require_paths = ["lib"]
|
data/lib/coderunner/run.rb
CHANGED
|
@@ -293,7 +293,7 @@ def process_directory
|
|
|
293
293
|
end
|
|
294
294
|
|
|
295
295
|
@running = (@@current_status =~ Regexp.new(@job_no.to_s)) ? true : false
|
|
296
|
-
if methods.include? :get_run_status
|
|
296
|
+
if @running and methods.include? :get_run_status
|
|
297
297
|
@status = get_run_status(@job_no, @@current_status) rescue :Unknown
|
|
298
298
|
else
|
|
299
299
|
@status ||= :Unknown
|