dronejob 1.2.2 → 1.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +4 -4
- data/lib/dronejob/modules/queue.rb +3 -2
- data/lib/dronejob/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: da0cace21897e8fce5682474c2bf4eef70c1d8f2
|
4
|
+
data.tar.gz: cd7e5f520cf71ce324da88c3d83808e04f5f59c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 49d34a33436c5fcfd18349467262aff8aef9ce30fa8aad37a107198d7215c9243151cabec61a84884a5fc3ce0815c446b20a1dfa3cfd6d924d6f0ba123e8c3ee
|
7
|
+
data.tar.gz: 5009298949088660ef5ef22c616c6376bc6999cbf8293a22a9de1b71bfa01e7039066f00e6bb662b92f16e0b61ddeb8568c616806bfc9b084556a4a96c8cbdd3
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
dronejob (1.2.
|
4
|
+
dronejob (1.2.3)
|
5
5
|
activejob (~> 4.2)
|
6
6
|
bundler (>= 1.3.0, < 2.0)
|
7
7
|
git (~> 1.2)
|
@@ -27,7 +27,7 @@ GEM
|
|
27
27
|
tzinfo (~> 1.1)
|
28
28
|
coderay (1.1.1)
|
29
29
|
concurrent-ruby (1.0.2)
|
30
|
-
connection_pool (2.2.
|
30
|
+
connection_pool (2.2.1)
|
31
31
|
diff-lcs (1.2.5)
|
32
32
|
ethon (0.9.1)
|
33
33
|
ffi (>= 1.3.0)
|
@@ -64,7 +64,7 @@ GEM
|
|
64
64
|
rspec-support (~> 3.4.0)
|
65
65
|
rspec-support (3.4.1)
|
66
66
|
rubyzip (1.2.0)
|
67
|
-
sidekiq (4.2.
|
67
|
+
sidekiq (4.2.6)
|
68
68
|
concurrent-ruby (~> 1.0)
|
69
69
|
connection_pool (~> 2.2, >= 2.2.0)
|
70
70
|
rack-protection (>= 1.5.0)
|
@@ -89,4 +89,4 @@ DEPENDENCIES
|
|
89
89
|
rspec (~> 3.3)
|
90
90
|
|
91
91
|
BUNDLED WITH
|
92
|
-
1.
|
92
|
+
1.13.2
|
@@ -47,8 +47,9 @@ module Dronejob
|
|
47
47
|
self.class.notify? and param(:notify) and !param(:run)
|
48
48
|
end
|
49
49
|
|
50
|
-
def publish_progress(progress, description=nil)
|
51
|
-
|
50
|
+
def publish_progress(progress, description=nil, details={})
|
51
|
+
message = {title: self.title, description: description, phase: @phase, progress: progress, details: details}
|
52
|
+
publish_status(message, "working") if should_notify?
|
52
53
|
end
|
53
54
|
end
|
54
55
|
end
|
data/lib/dronejob/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dronejob
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tobias Strebitzer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-11-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -244,7 +244,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
244
244
|
version: '2.4'
|
245
245
|
requirements: []
|
246
246
|
rubyforge_project:
|
247
|
-
rubygems_version: 2.
|
247
|
+
rubygems_version: 2.5.1
|
248
248
|
signing_key:
|
249
249
|
specification_version: 4
|
250
250
|
summary: DroneJob Drone Factory
|