activejob-google_cloud_pubsub 0.7.0 → 0.7.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/.travis.yml +6 -1
- data/README.md +1 -1
- data/lib/activejob-google_cloud_pubsub/version.rb +1 -1
- data/lib/activejob-google_cloud_pubsub/worker.rb +2 -0
- 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: 45b8b415db47c7e4695cb58398bb919953de99a1
|
|
4
|
+
data.tar.gz: 59e9f651d1940d24211f7de7f5275cca06679dea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7751a1cb0cbeb517587ebd674027945bf1ec0a3db124f74ea8dd220dd09dae335ab7463a43ba90f4847d06c9ccec5acf15fa843f5827c73c8d4a00fa2629a32d
|
|
7
|
+
data.tar.gz: 06f005e625209f40f36fda1287b047eb14683629f040389a784f47de07a30668e2b16e5da49e2be88ba455940338d82b23f1a0b24147ca09c19aacab21388995
|
data/.travis.yml
CHANGED
|
@@ -2,9 +2,14 @@ sudo: false
|
|
|
2
2
|
language: ruby
|
|
3
3
|
|
|
4
4
|
rvm:
|
|
5
|
-
- 2.4
|
|
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.
|
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.
|
|
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:
|
|
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.
|
|
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
|