activejob-google_cloud_pubsub 0.7.0 → 0.7.1

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: db8cb5dcd87c4c044f590ff7159aeae92b9005fe
4
- data.tar.gz: af83887bfe5e38ee312dd88290615a81448c0a0c
3
+ metadata.gz: 45b8b415db47c7e4695cb58398bb919953de99a1
4
+ data.tar.gz: 59e9f651d1940d24211f7de7f5275cca06679dea
5
5
  SHA512:
6
- metadata.gz: a6ec0ba0e29951b8ee8678e07b67589612ae97568c553ed2d107273ff51902c071afd5671038a948c637cf0d97b24b4694901c8b65a4fb2b965f65a0a3316ee9
7
- data.tar.gz: 1c7adfbc95a95a3b46528ca3b9aefe26ab536213b195a4b8ebea8b588c8fe165fac5c09527e13cd21cf263f3a857328c224c12579813bf07eb329fafefef6e89
6
+ metadata.gz: 7751a1cb0cbeb517587ebd674027945bf1ec0a3db124f74ea8dd220dd09dae335ab7463a43ba90f4847d06c9ccec5acf15fa843f5827c73c8d4a00fa2629a32d
7
+ data.tar.gz: 06f005e625209f40f36fda1287b047eb14683629f040389a784f47de07a30668e2b16e5da49e2be88ba455940338d82b23f1a0b24147ca09c19aacab21388995
@@ -2,9 +2,14 @@ sudo: false
2
2
  language: ruby
3
3
 
4
4
  rvm:
5
- - 2.4.1
5
+ - 2.4
6
+ - 2.5
6
7
 
7
8
  before_install:
8
9
  - curl -sL https://dl.google.com/dl/cloudsdk/channels/rapid/google-cloud-sdk.tar.gz | tar xz
9
10
  - google-cloud-sdk/install.sh --override-components beta pubsub-emulator --quiet
10
11
  - export PATH=$PATH:$PWD/google-cloud-sdk/bin
12
+
13
+ matrix:
14
+ allow_failures:
15
+ - rvm: 2.5 # grpc does not yet support Ruby 2.5
data/README.md CHANGED
@@ -48,7 +48,7 @@ $ gcloud beta emulators pubsub start
48
48
 
49
49
  $ eval `gcloud beta emulators pubsub env-init`
50
50
  $ cd path/to/your-app
51
- $ bundle exec activejob-google_cloud_pubsub-worker
51
+ $ bundle exec activejob-google_cloud_pubsub-worker --project_id=dummy
52
52
  ```
53
53
 
54
54
  If you hit the previous action, the job will be executed.
@@ -1,5 +1,5 @@
1
1
  module ActiveJob
2
2
  module GoogleCloudPubsub
3
- VERSION = '0.7.0'
3
+ VERSION = '0.7.1'
4
4
  end
5
5
  end
@@ -43,6 +43,8 @@ module ActiveJob
43
43
  }
44
44
  end
45
45
  }.start
46
+
47
+ sleep
46
48
  end
47
49
 
48
50
  def ensure_subscription
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activejob-google_cloud_pubsub
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Keita Urashima
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-12-24 00:00:00.000000000 Z
11
+ date: 2018-02-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activejob
@@ -152,7 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
152
152
  version: '0'
153
153
  requirements: []
154
154
  rubyforge_project:
155
- rubygems_version: 2.6.13
155
+ rubygems_version: 2.6.14
156
156
  signing_key:
157
157
  specification_version: 4
158
158
  summary: Google Cloud Pub/Sub adapter and worker for ActiveJob