simpleworker 0.1.0 → 0.1.1
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/.rspec +1 -1
- data/examples/cucumber_worker.rb +2 -2
- data/lib/simpleworker/event_server.rb +2 -1
- data/lib/simpleworker/version.rb +1 -1
- 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: e7442ecb87191808798147eec30e107b072ff7c6
|
|
4
|
+
data.tar.gz: ab1315ea022b49139adfa29d63cb95e127bd4b7d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1cbc4a90a6b5b2357032b601c796f6bac7df6ff2035f50ca147469e09376934ed44dc4d230781e0678e12bb34e3cdbd50c74129e669c55c369174d42ff3ad442
|
|
7
|
+
data.tar.gz: 740b2599336438855cd6b063c39070aad8d91947ae045f252fc1788d9882a8ce8babe37e92e137f68e544f6b9065d26fcf16d46e78a84e4a934e145a21c3c228
|
data/.rspec
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
--color
|
|
1
|
+
--color -fs
|
data/examples/cucumber_worker.rb
CHANGED
|
@@ -9,12 +9,12 @@ task_queue.fire_start
|
|
|
9
9
|
task_queue.each_task do |task|
|
|
10
10
|
status = nil
|
|
11
11
|
begin
|
|
12
|
-
Cucumber::Cli::Main.execute task
|
|
12
|
+
Cucumber::Cli::Main.execute [task]
|
|
13
13
|
rescue SystemExit => e
|
|
14
14
|
status = e.success?
|
|
15
15
|
end
|
|
16
16
|
|
|
17
|
-
fire_log_message "Cucumber task: #{task} status: #{status}"
|
|
17
|
+
task_queue.fire_log_message "Cucumber task: #{task} status: #{status}"
|
|
18
18
|
end
|
|
19
19
|
|
|
20
20
|
task_queue.fire_stop
|
data/lib/simpleworker/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simpleworker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jason Gowan
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-12-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: childprocess
|