cloudtasker 0.12.2 → 0.13.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/lint_rubocop.yml +20 -0
  3. data/.github/workflows/{test.yml → test_ruby_2.5_2.6.yml} +7 -8
  4. data/.github/workflows/test_ruby_2.7.yml +40 -0
  5. data/.github/workflows/test_ruby_3.x.yml +39 -0
  6. data/.rubocop.yml +5 -0
  7. data/Appraisals +20 -0
  8. data/CHANGELOG.md +9 -0
  9. data/README.md +10 -2
  10. data/Rakefile +0 -6
  11. data/cloudtasker.gemspec +0 -5
  12. data/gemfiles/google_cloud_tasks_1.0.gemfile +1 -0
  13. data/gemfiles/google_cloud_tasks_1.0.gemfile.lock +4 -173
  14. data/gemfiles/google_cloud_tasks_1.1.gemfile +1 -0
  15. data/gemfiles/google_cloud_tasks_1.1.gemfile.lock +4 -173
  16. data/gemfiles/google_cloud_tasks_1.2.gemfile +1 -0
  17. data/gemfiles/google_cloud_tasks_1.2.gemfile.lock +4 -173
  18. data/gemfiles/google_cloud_tasks_1.3.gemfile +1 -0
  19. data/gemfiles/google_cloud_tasks_1.3.gemfile.lock +4 -173
  20. data/gemfiles/rails_5.2.gemfile +1 -0
  21. data/gemfiles/rails_5.2.gemfile.lock +4 -53
  22. data/gemfiles/rails_6.0.gemfile +1 -0
  23. data/gemfiles/rails_6.0.gemfile.lock +4 -53
  24. data/gemfiles/rails_6.1.gemfile +8 -0
  25. data/gemfiles/rails_7.0.gemfile +8 -0
  26. data/gemfiles/semantic_logger_3.4.gemfile +1 -0
  27. data/gemfiles/semantic_logger_4.6.gemfile +1 -0
  28. data/gemfiles/semantic_logger_4.7.0.gemfile +1 -0
  29. data/gemfiles/semantic_logger_4.7.2.gemfile +1 -0
  30. data/lib/cloudtasker/backend/google_cloud_task.rb +12 -8
  31. data/lib/cloudtasker/backend/memory_task.rb +1 -1
  32. data/lib/cloudtasker/backend/redis_task.rb +7 -3
  33. data/lib/cloudtasker/cloud_task.rb +2 -2
  34. data/lib/cloudtasker/cron/schedule.rb +7 -7
  35. data/lib/cloudtasker/redis_client.rb +39 -14
  36. data/lib/cloudtasker/unique_job/job.rb +3 -2
  37. data/lib/cloudtasker/unique_job/middleware/client.rb +2 -1
  38. data/lib/cloudtasker/version.rb +1 -1
  39. data/lib/cloudtasker/worker.rb +3 -3
  40. data/lib/cloudtasker/worker_wrapper.rb +1 -1
  41. metadata +11 -62
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2d051d238265fe5c1b1e48203c121e7284a26340026ff481e4c6240703de073b
4
- data.tar.gz: bb785d5f8f7834bb1ef885c9bb939a43925e933c34abcf94a9609b292813b03d
3
+ metadata.gz: bad50ce6f1fb0a4293c26d53530b47dae74a577f7bcddaa9a3d3092e5baeec56
4
+ data.tar.gz: 484a11cbfb894334d2b3dc17bbf06877a0b4002852066d197fd0e038dbe8918e
5
5
  SHA512:
6
- metadata.gz: 81926768a084ba79aff1ae466f7dc2a11ac883c0b57f6fd41787dbedf3434d0979762158728c4548217bd06b0df2692e8bffe8cbd3d02bda447336610d4de2c0
7
- data.tar.gz: 1ce88e8633716f8ea379affd0ef7c705ec7fc48ebdd100c0e6f525fd0e5ca61ac4f3349dde3c53ee7815e23761dbd8cfa9e1d6d2f0b1e80f9892d1b92065c61b
6
+ metadata.gz: c865c34712cdc8fc97d33563a1450daa9705d75458687c04e74e15f26e7180f8534e107c6994e6402de703a3b7060fbc29f1a0e1f00c2361084f3613dfbb9ae5
7
+ data.tar.gz: 31fd6ebc1b253db4f6accd747ae871c97d521c089b7682ac0755be8c0a4a17ea504c4b38db9fd84a35a8cdd78f407714e266a58d3a8f19919abbed8ea5378ebb
@@ -0,0 +1,20 @@
1
+ name: Rubocop
2
+
3
+ on: [push, pull_request]
4
+
5
+ jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - uses: zhulik/redis-action@1.1.0
11
+ - name: Set up Ruby
12
+ uses: ruby/setup-ruby@v1
13
+ with:
14
+ ruby-version: '3.0.1'
15
+ bundler-cache: true
16
+ - name: Lint codebase
17
+ run: |
18
+ gem install bundler
19
+ bundle install --jobs 4 --retry 3
20
+ bundle exec rubocop
@@ -1,4 +1,4 @@
1
- name: Test
1
+ name: Ruby 2.5/2.6
2
2
 
3
3
  on: [push, pull_request]
4
4
 
@@ -8,8 +8,8 @@ jobs:
8
8
  strategy:
9
9
  matrix:
10
10
  ruby:
11
- - '2.5.x'
12
- - '2.6.x'
11
+ - '2.5.9'
12
+ - '2.6.7'
13
13
  appraisal:
14
14
  - 'google-cloud-tasks-1.0'
15
15
  - 'google-cloud-tasks-1.1'
@@ -17,25 +17,24 @@ jobs:
17
17
  - 'google-cloud-tasks-1.3'
18
18
  - 'rails-5.2'
19
19
  - 'rails-6.0'
20
+ - 'rails-6.1'
20
21
  - 'semantic_logger-3.4'
21
22
  - 'semantic_logger-4.6'
22
23
  - 'semantic_logger-4.7.0'
23
24
  - 'semantic_logger-4.7.2'
24
25
  steps:
25
- - name: Setup System
26
- run: sudo apt-get install libsqlite3-dev
27
26
  - uses: actions/checkout@v2
28
27
  - uses: zhulik/redis-action@1.1.0
29
- - name: Set up Ruby 2.6
30
- uses: actions/setup-ruby@v1
28
+ - name: Set up Ruby
29
+ uses: ruby/setup-ruby@v1
31
30
  with:
32
31
  ruby-version: ${{ matrix.ruby }}
32
+ bundler-cache: true
33
33
  - name: Build and test with Rake
34
34
  env:
35
35
  APPRAISAL_CONTEXT: ${{ matrix.appraisal }}
36
36
  run: |
37
37
  gem install bundler
38
38
  bundle install --jobs 4 --retry 3
39
- bundle exec rubocop
40
39
  bundle exec appraisal ${APPRAISAL_CONTEXT} bundle
41
40
  bundle exec appraisal ${APPRAISAL_CONTEXT} rspec
@@ -0,0 +1,40 @@
1
+ name: Ruby 2.7
2
+
3
+ on: [push, pull_request]
4
+
5
+ jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ strategy:
9
+ matrix:
10
+ ruby:
11
+ - '2.7.5'
12
+ appraisal:
13
+ - 'google-cloud-tasks-1.0'
14
+ - 'google-cloud-tasks-1.1'
15
+ - 'google-cloud-tasks-1.2'
16
+ - 'google-cloud-tasks-1.3'
17
+ - 'rails-5.2'
18
+ - 'rails-6.0'
19
+ - 'rails-6.1'
20
+ - 'rails-7.0'
21
+ - 'semantic_logger-3.4'
22
+ - 'semantic_logger-4.6'
23
+ - 'semantic_logger-4.7.0'
24
+ - 'semantic_logger-4.7.2'
25
+ steps:
26
+ - uses: actions/checkout@v2
27
+ - uses: zhulik/redis-action@1.1.0
28
+ - name: Set up Ruby
29
+ uses: ruby/setup-ruby@v1
30
+ with:
31
+ ruby-version: ${{ matrix.ruby }}
32
+ bundler-cache: true
33
+ - name: Build and test with Rake
34
+ env:
35
+ APPRAISAL_CONTEXT: ${{ matrix.appraisal }}
36
+ run: |
37
+ gem install bundler
38
+ bundle install --jobs 4 --retry 3
39
+ bundle exec appraisal ${APPRAISAL_CONTEXT} bundle
40
+ bundle exec appraisal ${APPRAISAL_CONTEXT} rspec
@@ -0,0 +1,39 @@
1
+ name: Ruby 3.x
2
+
3
+ on: [push, pull_request]
4
+
5
+ jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ strategy:
9
+ matrix:
10
+ ruby:
11
+ - '3.0.1'
12
+ - '3.1.0'
13
+ appraisal:
14
+ - 'google-cloud-tasks-1.0'
15
+ - 'google-cloud-tasks-1.1'
16
+ - 'google-cloud-tasks-1.2'
17
+ - 'google-cloud-tasks-1.3'
18
+ - 'rails-6.1'
19
+ - 'rails-7.0'
20
+ - 'semantic_logger-3.4'
21
+ - 'semantic_logger-4.6'
22
+ - 'semantic_logger-4.7.0'
23
+ - 'semantic_logger-4.7.2'
24
+ steps:
25
+ - uses: actions/checkout@v2
26
+ - uses: zhulik/redis-action@1.1.0
27
+ - name: Set up Ruby
28
+ uses: ruby/setup-ruby@v1
29
+ with:
30
+ ruby-version: ${{ matrix.ruby }}
31
+ bundler-cache: true
32
+ - name: Build and test with Rake
33
+ env:
34
+ APPRAISAL_CONTEXT: ${{ matrix.appraisal }}
35
+ run: |
36
+ gem install bundler
37
+ bundle install --jobs 4 --retry 3
38
+ bundle exec appraisal ${APPRAISAL_CONTEXT} bundle
39
+ bundle exec appraisal ${APPRAISAL_CONTEXT} rspec
data/.rubocop.yml CHANGED
@@ -5,6 +5,11 @@ AllCops:
5
5
  - 'gemfiles/**/*'
6
6
  - 'vendor/**/*'
7
7
 
8
+ # Ruby 3.0: curly braces around last argument has meaning
9
+ # See: https://github.com/rubocop/rubocop/issues/7641
10
+ Style/BracesAroundHashParameters:
11
+ Enabled: false
12
+
8
13
  Metrics/ClassLength:
9
14
  Max: 200
10
15
 
data/Appraisals CHANGED
@@ -1,41 +1,61 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  appraise 'google-cloud-tasks-1.0' do
4
+ gem 'activesupport', '6.1' # ruby 2.5 / 2.6 compatibility
4
5
  gem 'google-cloud-tasks', '1.0'
5
6
  end
6
7
 
7
8
  appraise 'google-cloud-tasks-1.1' do
9
+ gem 'activesupport', '6.1' # ruby 2.5 / 2.6 compatibility
8
10
  gem 'google-cloud-tasks', '1.1'
9
11
  end
10
12
 
11
13
  appraise 'google-cloud-tasks-1.2' do
14
+ gem 'activesupport', '6.1' # ruby 2.5 / 2.6 compatibility
12
15
  gem 'google-cloud-tasks', '1.2'
13
16
  end
14
17
 
15
18
  appraise 'google-cloud-tasks-1.3' do
19
+ gem 'activesupport', '6.1' # ruby 2.5 / 2.6 compatibility
16
20
  gem 'google-cloud-tasks', '1.3'
17
21
  end
18
22
 
19
23
  appraise 'rails-5.2' do
20
24
  gem 'rails', '5.2'
25
+ gem 'rspec-rails'
21
26
  end
22
27
 
23
28
  appraise 'rails-6.0' do
24
29
  gem 'rails', '6.0'
30
+ gem 'rspec-rails'
31
+ end
32
+
33
+ appraise 'rails-6.1' do
34
+ gem 'rails', '6.1'
35
+ gem 'rspec-rails'
36
+ end
37
+
38
+ appraise 'rails-7.0' do
39
+ gem 'rails', '7.0'
40
+ gem 'rspec-rails'
25
41
  end
26
42
 
27
43
  appraise 'semantic_logger-3.4' do
44
+ gem 'activesupport', '6.1' # ruby 2.5 / 2.6 compatibility
28
45
  gem 'semantic_logger', '3.4.1'
29
46
  end
30
47
 
31
48
  appraise 'semantic_logger-4.6' do
49
+ gem 'activesupport', '6.1' # ruby 2.5 / 2.6 compatibility
32
50
  gem 'semantic_logger', '4.6.1'
33
51
  end
34
52
 
35
53
  appraise 'semantic_logger-4.7.0' do
54
+ gem 'activesupport', '6.1' # ruby 2.5 / 2.6 compatibility
36
55
  gem 'semantic_logger', '4.7.0'
37
56
  end
38
57
 
39
58
  appraise 'semantic_logger-4.7.2' do
59
+ gem 'activesupport', '6.1' # ruby 2.5 / 2.6 compatibility
40
60
  gem 'semantic_logger', '4.7.2'
41
61
  end
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## [v0.13.rc1](https://github.com/keypup-io/cloudtasker/tree/v0.13.rc1) (2022-01-03)
4
+
5
+ [Full Changelog](https://github.com/keypup-io/cloudtasker/compare/v0.12.2...v0.13.rc1)
6
+
7
+ **Improvements:**
8
+ - Ruby 3: Rework method arguments to be compatible with Ruby 3
9
+ - Tests: Separate test environment for Ruby 2 and Ruby 3
10
+ - Tests: Do not load Rails by default and skip Rails-specific tests in non-Rails appraisals
11
+
3
12
  ## [v0.12.2](https://github.com/keypup-io/cloudtasker/tree/v0.12.2) (2021-12-31)
4
13
 
5
14
  [Full Changelog](https://github.com/keypup-io/cloudtasker/compare/v0.12.1...v0.12.2)
data/README.md CHANGED
@@ -1087,9 +1087,17 @@ To size the concurrency of your queues you should therefore take the most limiti
1087
1087
 
1088
1088
  ## Development
1089
1089
 
1090
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
1090
+ After checking out the repo, run `bin/setup` to install dependencies.
1091
1091
 
1092
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
1092
+ For tests, run `rake` to run the tests. Note that Rails is not in context by default, which means Rails-specific test will not run.
1093
+ For tests including Rails-specific tests, run `bundle exec appraisal rails-7.0 rake`
1094
+ For all context-specific tests (incl. Rails), run the [appraisal tests](Appraisals) using `bundle exec appraisal rake`.
1095
+
1096
+ You can run `bin/console` for an interactive prompt that will allow you to experiment.
1097
+
1098
+ To install this gem onto your local machine, run `bundle exec rake install`.
1099
+
1100
+ To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
1093
1101
 
1094
1102
  ## Contributing
1095
1103
 
data/Rakefile CHANGED
@@ -2,13 +2,7 @@
2
2
 
3
3
  require 'bundler/gem_tasks'
4
4
  require 'rspec/core/rake_task'
5
- require 'github_changelog_generator/task'
6
5
 
7
6
  RSpec::Core::RakeTask.new(:spec)
8
7
 
9
8
  task default: :spec
10
-
11
- GitHubChangelogGenerator::RakeTask.new :changelog do |config|
12
- config.user = 'keypup-io'
13
- config.project = 'cloudtasker'
14
- end
data/cloudtasker.gemspec CHANGED
@@ -38,7 +38,6 @@ Gem::Specification.new do |spec|
38
38
 
39
39
  spec.add_development_dependency 'appraisal'
40
40
  spec.add_development_dependency 'bundler', '~> 2.0'
41
- spec.add_development_dependency 'github_changelog_generator'
42
41
  spec.add_development_dependency 'rake', '>= 12.3.3'
43
42
  spec.add_development_dependency 'rspec', '~> 3.0'
44
43
  spec.add_development_dependency 'rspec-json_expectations', '~> 2.2'
@@ -47,8 +46,4 @@ Gem::Specification.new do |spec|
47
46
  spec.add_development_dependency 'semantic_logger'
48
47
  spec.add_development_dependency 'timecop'
49
48
  spec.add_development_dependency 'webmock'
50
-
51
- spec.add_development_dependency 'rails'
52
- spec.add_development_dependency 'rspec-rails'
53
- spec.add_development_dependency 'sqlite3'
54
49
  end
@@ -2,6 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
+ gem "activesupport", "6.1"
5
6
  gem "google-cloud-tasks", "1.0"
6
7
 
7
8
  gemspec path: "../"
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- cloudtasker (0.12.2)
4
+ cloudtasker (0.13.rc1)
5
5
  activesupport
6
6
  connection_pool
7
7
  fugit
@@ -13,60 +13,7 @@ PATH
13
13
  GEM
14
14
  remote: https://rubygems.org/
15
15
  specs:
16
- actioncable (6.1.4.4)
17
- actionpack (= 6.1.4.4)
18
- activesupport (= 6.1.4.4)
19
- nio4r (~> 2.0)
20
- websocket-driver (>= 0.6.1)
21
- actionmailbox (6.1.4.4)
22
- actionpack (= 6.1.4.4)
23
- activejob (= 6.1.4.4)
24
- activerecord (= 6.1.4.4)
25
- activestorage (= 6.1.4.4)
26
- activesupport (= 6.1.4.4)
27
- mail (>= 2.7.1)
28
- actionmailer (6.1.4.4)
29
- actionpack (= 6.1.4.4)
30
- actionview (= 6.1.4.4)
31
- activejob (= 6.1.4.4)
32
- activesupport (= 6.1.4.4)
33
- mail (~> 2.5, >= 2.5.4)
34
- rails-dom-testing (~> 2.0)
35
- actionpack (6.1.4.4)
36
- actionview (= 6.1.4.4)
37
- activesupport (= 6.1.4.4)
38
- rack (~> 2.0, >= 2.0.9)
39
- rack-test (>= 0.6.3)
40
- rails-dom-testing (~> 2.0)
41
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
42
- actiontext (6.1.4.4)
43
- actionpack (= 6.1.4.4)
44
- activerecord (= 6.1.4.4)
45
- activestorage (= 6.1.4.4)
46
- activesupport (= 6.1.4.4)
47
- nokogiri (>= 1.8.5)
48
- actionview (6.1.4.4)
49
- activesupport (= 6.1.4.4)
50
- builder (~> 3.1)
51
- erubi (~> 1.4)
52
- rails-dom-testing (~> 2.0)
53
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
54
- activejob (6.1.4.4)
55
- activesupport (= 6.1.4.4)
56
- globalid (>= 0.3.6)
57
- activemodel (6.1.4.4)
58
- activesupport (= 6.1.4.4)
59
- activerecord (6.1.4.4)
60
- activemodel (= 6.1.4.4)
61
- activesupport (= 6.1.4.4)
62
- activestorage (6.1.4.4)
63
- actionpack (= 6.1.4.4)
64
- activejob (= 6.1.4.4)
65
- activerecord (= 6.1.4.4)
66
- activesupport (= 6.1.4.4)
67
- marcel (~> 1.0.0)
68
- mini_mime (>= 1.1.0)
69
- activesupport (6.1.4.4)
16
+ activesupport (6.1.0)
70
17
  concurrent-ruby (~> 1.0, >= 1.0.2)
71
18
  i18n (>= 1.6, < 2)
72
19
  minitest (>= 5.1)
@@ -79,34 +26,11 @@ GEM
79
26
  rake
80
27
  thor (>= 0.14.0)
81
28
  ast (2.4.2)
82
- async (1.30.1)
83
- console (~> 1.10)
84
- nio4r (~> 2.3)
85
- timers (~> 4.1)
86
- async-http (0.56.5)
87
- async (>= 1.25)
88
- async-io (>= 1.28)
89
- async-pool (>= 0.2)
90
- protocol-http (~> 0.22.0)
91
- protocol-http1 (~> 0.14.0)
92
- protocol-http2 (~> 0.14.0)
93
- async-http-faraday (0.11.0)
94
- async-http (~> 0.42)
95
- faraday
96
- async-io (1.32.2)
97
- async
98
- async-pool (0.3.9)
99
- async (>= 1.25)
100
- builder (3.2.4)
101
29
  concurrent-ruby (1.1.9)
102
30
  connection_pool (2.2.5)
103
- console (1.14.0)
104
- fiber-local
105
31
  crack (0.4.5)
106
32
  rexml
107
- crass (1.0.6)
108
33
  diff-lcs (1.5.0)
109
- erubi (1.10.0)
110
34
  et-orbi (1.2.6)
111
35
  tzinfo
112
36
  faraday (1.8.0)
@@ -123,28 +47,14 @@ GEM
123
47
  faraday-em_http (1.0.0)
124
48
  faraday-em_synchrony (1.0.0)
125
49
  faraday-excon (1.1.0)
126
- faraday-http-cache (2.2.0)
127
- faraday (>= 0.8)
128
50
  faraday-httpclient (1.0.1)
129
51
  faraday-net_http (1.0.1)
130
52
  faraday-net_http_persistent (1.2.0)
131
53
  faraday-patron (1.0.0)
132
54
  faraday-rack (1.0.0)
133
- fiber-local (1.0.0)
134
55
  fugit (1.5.2)
135
56
  et-orbi (~> 1.1, >= 1.1.8)
136
57
  raabro (~> 1.4)
137
- github_changelog_generator (1.16.4)
138
- activesupport
139
- async (>= 1.25.0)
140
- async-http-faraday
141
- faraday-http-cache
142
- multi_json
143
- octokit (~> 4.6)
144
- rainbow (>= 2.2.1)
145
- rake (>= 10.0)
146
- globalid (1.0.0)
147
- activesupport (>= 5.0)
148
58
  google-cloud-tasks (1.0.0)
149
59
  google-gax (~> 1.3)
150
60
  googleapis-common-protos (>= 1.3.9, < 2.0)
@@ -182,69 +92,16 @@ GEM
182
92
  concurrent-ruby (~> 1.0)
183
93
  jaro_winkler (1.5.4)
184
94
  jwt (2.3.0)
185
- loofah (2.13.0)
186
- crass (~> 1.0.2)
187
- nokogiri (>= 1.5.9)
188
- mail (2.7.1)
189
- mini_mime (>= 0.1.1)
190
- marcel (1.0.2)
191
95
  memoist (0.16.2)
192
- method_source (1.0.0)
193
- mini_mime (1.1.2)
194
- mini_portile2 (2.6.1)
195
96
  minitest (5.15.0)
196
97
  multi_json (1.15.0)
197
98
  multipart-post (2.1.1)
198
- nio4r (2.5.8)
199
- nokogiri (1.12.5)
200
- mini_portile2 (~> 2.6.1)
201
- racc (~> 1.4)
202
- octokit (4.21.0)
203
- faraday (>= 0.9)
204
- sawyer (~> 0.8.0, >= 0.5.3)
205
99
  os (1.1.4)
206
100
  parallel (1.21.0)
207
101
  parser (3.0.3.2)
208
102
  ast (~> 2.4.1)
209
- protocol-hpack (1.4.2)
210
- protocol-http (0.22.5)
211
- protocol-http1 (0.14.2)
212
- protocol-http (~> 0.22)
213
- protocol-http2 (0.14.2)
214
- protocol-hpack (~> 1.4)
215
- protocol-http (~> 0.18)
216
103
  public_suffix (4.0.6)
217
104
  raabro (1.4.0)
218
- racc (1.6.0)
219
- rack (2.2.3)
220
- rack-test (1.1.0)
221
- rack (>= 1.0, < 3)
222
- rails (6.1.4.4)
223
- actioncable (= 6.1.4.4)
224
- actionmailbox (= 6.1.4.4)
225
- actionmailer (= 6.1.4.4)
226
- actionpack (= 6.1.4.4)
227
- actiontext (= 6.1.4.4)
228
- actionview (= 6.1.4.4)
229
- activejob (= 6.1.4.4)
230
- activemodel (= 6.1.4.4)
231
- activerecord (= 6.1.4.4)
232
- activestorage (= 6.1.4.4)
233
- activesupport (= 6.1.4.4)
234
- bundler (>= 1.15.0)
235
- railties (= 6.1.4.4)
236
- sprockets-rails (>= 2.0.0)
237
- rails-dom-testing (2.0.3)
238
- activesupport (>= 4.2.0)
239
- nokogiri (>= 1.6)
240
- rails-html-sanitizer (1.4.2)
241
- loofah (~> 2.3)
242
- railties (6.1.4.4)
243
- actionpack (= 6.1.4.4)
244
- activesupport (= 6.1.4.4)
245
- method_source
246
- rake (>= 0.13)
247
- thor (~> 1.0)
248
105
  rainbow (3.0.0)
249
106
  rake (13.0.6)
250
107
  redis (4.5.1)
@@ -264,14 +121,6 @@ GEM
264
121
  rspec-mocks (3.10.2)
265
122
  diff-lcs (>= 1.2.0, < 2.0)
266
123
  rspec-support (~> 3.10.0)
267
- rspec-rails (5.0.2)
268
- actionpack (>= 5.2)
269
- activesupport (>= 5.2)
270
- railties (>= 5.2)
271
- rspec-core (~> 3.10)
272
- rspec-expectations (~> 3.10)
273
- rspec-mocks (~> 3.10)
274
- rspec-support (~> 3.10)
275
124
  rspec-support (3.10.3)
276
125
  rubocop (0.76.0)
277
126
  jaro_winkler (~> 1.5.1)
@@ -284,9 +133,6 @@ GEM
284
133
  rubocop (>= 0.68.1)
285
134
  ruby-progressbar (1.11.0)
286
135
  ruby2_keywords (0.0.5)
287
- sawyer (0.8.2)
288
- addressable (>= 2.3.5)
289
- faraday (> 0.8, < 2.0)
290
136
  semantic_logger (4.9.0)
291
137
  concurrent-ruby (~> 1.0)
292
138
  signet (0.16.0)
@@ -294,17 +140,8 @@ GEM
294
140
  faraday (>= 0.17.3, < 2.0)
295
141
  jwt (>= 1.5, < 3.0)
296
142
  multi_json (~> 1.10)
297
- sprockets (4.0.2)
298
- concurrent-ruby (~> 1.0)
299
- rack (> 1, < 3)
300
- sprockets-rails (3.4.2)
301
- actionpack (>= 5.2)
302
- activesupport (>= 5.2)
303
- sprockets (>= 3.0.0)
304
- sqlite3 (1.4.2)
305
143
  thor (1.1.0)
306
144
  timecop (0.9.4)
307
- timers (4.3.3)
308
145
  tzinfo (2.0.4)
309
146
  concurrent-ruby (~> 1.0)
310
147
  unicode-display_width (1.6.1)
@@ -312,31 +149,25 @@ GEM
312
149
  addressable (>= 2.8.0)
313
150
  crack (>= 0.3.2)
314
151
  hashdiff (>= 0.4.0, < 2.0.0)
315
- websocket-driver (0.7.5)
316
- websocket-extensions (>= 0.1.0)
317
- websocket-extensions (0.1.5)
318
152
  zeitwerk (2.5.3)
319
153
 
320
154
  PLATFORMS
321
155
  ruby
322
156
 
323
157
  DEPENDENCIES
158
+ activesupport (= 6.1)
324
159
  appraisal
325
160
  bundler (~> 2.0)
326
161
  cloudtasker!
327
- github_changelog_generator
328
162
  google-cloud-tasks (= 1.0)
329
- rails
330
163
  rake (>= 12.3.3)
331
164
  rspec (~> 3.0)
332
165
  rspec-json_expectations (~> 2.2)
333
- rspec-rails
334
166
  rubocop (= 0.76.0)
335
167
  rubocop-rspec (= 1.37.0)
336
168
  semantic_logger
337
- sqlite3
338
169
  timecop
339
170
  webmock
340
171
 
341
172
  BUNDLED WITH
342
- 2.2.26
173
+ 2.3.4
@@ -2,6 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
+ gem "activesupport", "6.1"
5
6
  gem "google-cloud-tasks", "1.1"
6
7
 
7
8
  gemspec path: "../"