activejob-google_cloud_tasks 0.1.2 → 0.1.3
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/.gitignore +0 -3
- data/.travis.yml +0 -3
- data/Gemfile.lock +5 -5
- data/README.md +4 -0
- data/lib/activejob/google_cloud_tasks/version.rb +1 -1
- metadata +2 -3
- data/credentials.tar.gz.enc +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 137174f62c755c161748b355d4fdd62f4363ada0
|
|
4
|
+
data.tar.gz: 7bb6a101dc513315019267688d188e5aff8ff2e8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 60ce8566bcfd1519fe057368471ede2ad976dcc8cf8999865ba27b06b043c27f119d5fcac4eff8739b19c741b7b7b7f834134b77e040c9bc10990fc949ac44fa
|
|
7
|
+
data.tar.gz: 1eb6e7ee063f83df5deb85932da0bb25e73d0edeb5fd02fd14cdce4a2d51f1ad37716ed65882210e90c8098689a05944660c8a1e1dfe831ab8a1b7d13bdee1fa
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
|
@@ -5,9 +5,6 @@ rvm:
|
|
|
5
5
|
- 2.4
|
|
6
6
|
- 2.5
|
|
7
7
|
before_install:
|
|
8
|
-
- openssl aes-256-cbc -K $encrypted_63c75f50f8e0_key -iv $encrypted_63c75f50f8e0_iv -in credentials.tar.gz.enc -out credentials.tar.gz -d
|
|
9
|
-
- tar -xzf credentials.tar.gz
|
|
10
|
-
- export GOOGLE_APPLICATION_CREDENTIALS=${TRAVIS_BUILD_DIR}/client-secret.json
|
|
11
8
|
- gem install bundler -v 1.17.1
|
|
12
9
|
script:
|
|
13
10
|
- bundle exec rake spec
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
activejob-google_cloud_tasks (0.1.
|
|
4
|
+
activejob-google_cloud_tasks (0.1.3)
|
|
5
5
|
activejob
|
|
6
6
|
activesupport
|
|
7
7
|
google-cloud-tasks (~> 0.2.6)
|
|
@@ -10,10 +10,10 @@ PATH
|
|
|
10
10
|
GEM
|
|
11
11
|
remote: https://rubygems.org/
|
|
12
12
|
specs:
|
|
13
|
-
activejob (5.2.1)
|
|
14
|
-
activesupport (= 5.2.1)
|
|
13
|
+
activejob (5.2.1.1)
|
|
14
|
+
activesupport (= 5.2.1.1)
|
|
15
15
|
globalid (>= 0.3.6)
|
|
16
|
-
activesupport (5.2.1)
|
|
16
|
+
activesupport (5.2.1.1)
|
|
17
17
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
18
18
|
i18n (>= 0.7, < 2)
|
|
19
19
|
minitest (~> 5.1)
|
|
@@ -22,7 +22,7 @@ GEM
|
|
|
22
22
|
public_suffix (>= 2.0.2, < 4.0)
|
|
23
23
|
concurrent-ruby (1.1.3)
|
|
24
24
|
diff-lcs (1.3)
|
|
25
|
-
faraday (0.15.
|
|
25
|
+
faraday (0.15.4)
|
|
26
26
|
multipart-post (>= 1.2, < 3)
|
|
27
27
|
globalid (0.4.1)
|
|
28
28
|
activesupport (>= 4.2.0)
|
data/README.md
CHANGED
|
@@ -56,6 +56,10 @@ class SampleController < ApplicationController
|
|
|
56
56
|
end
|
|
57
57
|
```
|
|
58
58
|
|
|
59
|
+
[kawabatas/rails_activejob_sample](https://github.com/kawabatas/rails_activejob_sample) is rails example.
|
|
60
|
+
|
|
61
|
+
## Configuration
|
|
62
|
+
|
|
59
63
|
### Adapter
|
|
60
64
|
``` ruby
|
|
61
65
|
Rails.application.config.active_job.queue_adapter = Activejob::GoogleCloudTasks::Adapter.new(
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: activejob-google_cloud_tasks
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kawabata Shintaro
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-11-
|
|
11
|
+
date: 2018-11-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rack
|
|
@@ -140,7 +140,6 @@ files:
|
|
|
140
140
|
- activejob-google_cloud_tasks.gemspec
|
|
141
141
|
- bin/console
|
|
142
142
|
- bin/setup
|
|
143
|
-
- credentials.tar.gz.enc
|
|
144
143
|
- lib/activejob/google_cloud_tasks.rb
|
|
145
144
|
- lib/activejob/google_cloud_tasks/adapter.rb
|
|
146
145
|
- lib/activejob/google_cloud_tasks/config.rb
|
data/credentials.tar.gz.enc
DELETED
|
Binary file
|