dronejob 2.0.2 → 2.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6bff9afaf42c47bfef7c92aa1bdb85ddeaea4b95
4
- data.tar.gz: c2501b9caf0652c31961330d0a3e01d1fe4a46a1
3
+ metadata.gz: a034d6d5da2d540f8022247605e4df6ea5845961
4
+ data.tar.gz: 3d733689d10e4af70288d2bd69bfa0501e0c5bff
5
5
  SHA512:
6
- metadata.gz: 9e350ca252faff036e8e0b5c12f8a9992a1fa5302bae81f920cb342f773240471ebcf08cff6c1928ba1ca73442a8d84a5dbf1e50c3d1eaa40a0e9460d0268544
7
- data.tar.gz: ce1ed5b23071458a2269b1451cc91ca56f8338279220293a7237131beda50eb0c620a0b660413ba6aebd0767e6801bc6210548f2570e01cc231fa875b2538dca
6
+ metadata.gz: a635793436b14370c86cf28fb79fbcd4787ed61a194bb728e98e9a607e780db3d1ecc14c87497d4f14fed3353dd6d7c6ed8ebda48ec6b1e3de6053f7e7c42552
7
+ data.tar.gz: 4792c5bdb287e7946e90cdb76a5a2b4327bb8f3d55e6f42d618f0f6bcffd1d37c7fbd9019fe8f25df8abd6fc1533b530e12459c8aa9fc14033d9395483ac9117
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dronejob (2.0.2)
4
+ dronejob (2.0.3)
5
5
  actionpack (>= 4.0.2)
6
6
  activejob (>= 4.0.2)
7
7
  activejob-google_cloud_pubsub (>= 0.7)
@@ -58,7 +58,7 @@ GEM
58
58
  ffi (>= 1.3.0)
59
59
  faraday (0.15.4)
60
60
  multipart-post (>= 1.2, < 3)
61
- ffi (1.11.0)
61
+ ffi (1.11.1)
62
62
  git (1.5.0)
63
63
  globalid (0.4.2)
64
64
  activesupport (>= 4.2.0)
@@ -72,18 +72,19 @@ GEM
72
72
  google-gax (~> 1.3)
73
73
  googleapis-common-protos-types (>= 1.0.2)
74
74
  stackdriver-core (~> 1.3)
75
- google-cloud-pubsub (0.35.0)
75
+ google-cloud-pubsub (0.36.0)
76
76
  concurrent-ruby (~> 1.0)
77
77
  google-cloud-core (~> 1.2)
78
78
  google-gax (~> 1.3)
79
+ googleapis-common-protos (>= 1.3.9, < 2.0)
79
80
  grpc-google-iam-v1 (~> 0.6.9)
80
- google-gax (1.5.0)
81
+ google-gax (1.6.1)
81
82
  google-protobuf (~> 3.2)
82
83
  googleapis-common-protos (>= 1.3.5, < 2.0)
83
84
  googleauth (>= 0.6.2, < 0.10.0)
84
85
  grpc (>= 1.7.2, < 2.0)
85
86
  rly (~> 0.2.3)
86
- google-protobuf (3.7.1-universal-darwin)
87
+ google-protobuf (3.8.0-universal-darwin)
87
88
  googleapis-common-protos (1.3.9)
88
89
  google-protobuf (~> 3.0)
89
90
  googleapis-common-protos-types (~> 1.0)
@@ -103,14 +104,14 @@ GEM
103
104
  grpc-google-iam-v1 (0.6.9)
104
105
  googleapis-common-protos (>= 1.3.1, < 2.0)
105
106
  grpc (~> 1.0)
106
- haml (5.1.0)
107
+ haml (5.1.1)
107
108
  temple (>= 0.8.0)
108
109
  tilt
109
110
  httpclient (2.8.3)
110
111
  i18n (1.6.0)
111
112
  concurrent-ruby (~> 1.0)
112
113
  jaro_winkler (1.5.2)
113
- jwt (2.1.0)
114
+ jwt (2.2.1)
114
115
  loofah (2.2.3)
115
116
  crass (~> 1.0.2)
116
117
  nokogiri (>= 1.5.9)
@@ -135,7 +136,7 @@ GEM
135
136
  pry (0.12.2)
136
137
  coderay (~> 1.1.0)
137
138
  method_source (~> 0.9.0)
138
- public_suffix (3.0.3)
139
+ public_suffix (3.1.0)
139
140
  pusher (1.3.2)
140
141
  httpclient (~> 2.7)
141
142
  multi_json (~> 1.0)
@@ -173,7 +174,7 @@ GEM
173
174
  ruby-progressbar (~> 1.7)
174
175
  unicode-display_width (>= 1.4.0, < 1.7)
175
176
  ruby-progressbar (1.10.0)
176
- rubyzip (1.2.2)
177
+ rubyzip (1.2.3)
177
178
  signet (0.11.0)
178
179
  addressable (~> 2.3)
179
180
  faraday (~> 0.9)
@@ -13,7 +13,7 @@ module Dronejob
13
13
 
14
14
  class_methods do
15
15
  def pubsub
16
- @pubsub ||= Google::Cloud::Pubsub.new(project_id: option(:google_cloud_project_id), credentials: option(:google_cloud_service_account))
16
+ @pubsub ||= Google::Cloud::Pubsub.new(project_id: option(:google_cloud_project_id), credentials: option(:google_cloud_service_account), timeout: 60)
17
17
  end
18
18
 
19
19
  def queue_adapter
@@ -1,3 +1,3 @@
1
1
  module Dronejob
2
- VERSION = "2.0.2"
2
+ VERSION = "2.0.3"
3
3
  end
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: 2.0.2
4
+ version: 2.0.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: 2019-05-21 00:00:00.000000000 Z
11
+ date: 2019-05-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler