activejob-google_cloud_tasks 0.1.2 → 0.1.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: cef40a41790c74095ed991cd458ed8763162a88d
4
- data.tar.gz: f475614b69bcb9399a6c2aa599efacc3676cf706
3
+ metadata.gz: 137174f62c755c161748b355d4fdd62f4363ada0
4
+ data.tar.gz: 7bb6a101dc513315019267688d188e5aff8ff2e8
5
5
  SHA512:
6
- metadata.gz: 6aad201da402e146372e57efda259511ea85385ec373a1f4af9251de6d171f89e8066675a4afbdfced02cd4d7d36a682024f562336b99959e2d3325e359a5b4d
7
- data.tar.gz: 5720b7da001b0e62fc1a87c4b4939599085f02b824a640e85b1181fc716f338bd15864526602165d42cb63276fc7ffcf6da5cac1276a37d3665cdf0cdd18192f
6
+ metadata.gz: 60ce8566bcfd1519fe057368471ede2ad976dcc8cf8999865ba27b06b043c27f119d5fcac4eff8739b19c741b7b7b7f834134b77e040c9bc10990fc949ac44fa
7
+ data.tar.gz: 1eb6e7ee063f83df5deb85932da0bb25e73d0edeb5fd02fd14cdce4a2d51f1ad37716ed65882210e90c8098689a05944660c8a1e1dfe831ab8a1b7d13bdee1fa
data/.gitignore CHANGED
@@ -9,6 +9,3 @@
9
9
 
10
10
  # rspec failure tracking
11
11
  .rspec_status
12
-
13
- /credentials.tar.gz
14
- /client-secret.json
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.2)
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.3)
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(
@@ -1,5 +1,5 @@
1
1
  module Activejob
2
2
  module GoogleCloudTasks
3
- VERSION = "0.1.2"
3
+ VERSION = "0.1.3"
4
4
  end
5
5
  end
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.2
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-26 00:00:00.000000000 Z
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
Binary file