my_api_client 0.17.0 → 0.21.0

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.
Files changed (85) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +32 -158
  3. data/.gem_comet.yml +13 -2
  4. data/.github/dependabot.yml +32 -0
  5. data/.rubocop.yml +1 -1
  6. data/.rubocop_todo.yml +22 -12
  7. data/CHANGELOG.md +61 -74
  8. data/Gemfile +0 -3
  9. data/Gemfile.lock +79 -61
  10. data/README.jp.md +71 -7
  11. data/gemfiles/rails_5.0.gemfile +1 -0
  12. data/gemfiles/rails_5.1.gemfile +1 -0
  13. data/gemfiles/rails_5.2.gemfile +1 -0
  14. data/gemfiles/rails_6.0.gemfile +1 -0
  15. data/gemfiles/{rails_4.2.gemfile → rails_6.1.gemfile} +1 -1
  16. data/lib/generators/rails/USAGE +1 -1
  17. data/lib/generators/rails/api_client_generator.rb +6 -0
  18. data/lib/generators/rails/templates/api_client.rb.erb +1 -1
  19. data/lib/generators/rspec/USAGE +1 -1
  20. data/lib/generators/rspec/api_client_generator.rb +6 -0
  21. data/lib/generators/rspec/templates/api_client_spec.rb.erb +1 -1
  22. data/lib/my_api_client/base.rb +2 -9
  23. data/lib/my_api_client/integrations/bugsnag.rb +1 -1
  24. data/lib/my_api_client/params/params.rb +1 -3
  25. data/lib/my_api_client/request.rb +1 -1
  26. data/lib/my_api_client/rspec/matchers/be_handled_as_an_error.rb +3 -3
  27. data/lib/my_api_client/rspec/matchers/request_to.rb +1 -1
  28. data/lib/my_api_client/rspec/stub.rb +40 -15
  29. data/lib/my_api_client/version.rb +1 -1
  30. data/my_api/.ruby-version +1 -1
  31. data/my_api/Gemfile +3 -0
  32. data/my_api/Gemfile.lock +112 -105
  33. data/my_api/app/controllers/pagination_controller.rb +2 -2
  34. data/my_api/public/index.html +2 -2
  35. data/my_api_client.gemspec +3 -3
  36. data/rails_app/rails_5.2/Gemfile +0 -1
  37. data/rails_app/rails_5.2/Gemfile.lock +73 -64
  38. data/rails_app/rails_5.2/config/environments/production.rb +1 -1
  39. data/rails_app/rails_6.0/Gemfile.lock +87 -77
  40. data/rails_app/rails_6.0/config/environments/production.rb +1 -1
  41. data/rails_app/rails_6.1/.gitattributes +8 -0
  42. data/rails_app/rails_6.1/.gitignore +28 -0
  43. data/rails_app/rails_6.1/.rspec +3 -0
  44. data/rails_app/rails_6.1/Gemfile +17 -0
  45. data/rails_app/rails_6.1/Gemfile.lock +203 -0
  46. data/rails_app/rails_6.1/README.md +24 -0
  47. data/rails_app/rails_6.1/Rakefile +6 -0
  48. data/rails_app/rails_6.1/app/controllers/application_controller.rb +4 -0
  49. data/rails_app/rails_6.1/app/controllers/concerns/.keep +0 -0
  50. data/rails_app/rails_6.1/app/javascript/.keep +0 -0
  51. data/rails_app/rails_6.1/app/models/application_record.rb +5 -0
  52. data/rails_app/rails_6.1/app/models/concerns/.keep +0 -0
  53. data/rails_app/rails_6.1/bin/bundle +114 -0
  54. data/rails_app/rails_6.1/bin/rails +4 -0
  55. data/rails_app/rails_6.1/bin/rake +4 -0
  56. data/rails_app/rails_6.1/bin/setup +33 -0
  57. data/rails_app/rails_6.1/config.ru +6 -0
  58. data/rails_app/rails_6.1/config/application.rb +42 -0
  59. data/rails_app/rails_6.1/config/boot.rb +5 -0
  60. data/rails_app/rails_6.1/config/credentials.yml.enc +1 -0
  61. data/rails_app/rails_6.1/config/database.yml +25 -0
  62. data/rails_app/rails_6.1/config/environment.rb +7 -0
  63. data/rails_app/rails_6.1/config/environments/development.rb +59 -0
  64. data/rails_app/rails_6.1/config/environments/production.rb +97 -0
  65. data/rails_app/rails_6.1/config/environments/test.rb +51 -0
  66. data/rails_app/rails_6.1/config/initializers/application_controller_renderer.rb +9 -0
  67. data/rails_app/rails_6.1/config/initializers/backtrace_silencers.rb +10 -0
  68. data/rails_app/rails_6.1/config/initializers/cors.rb +17 -0
  69. data/rails_app/rails_6.1/config/initializers/filter_parameter_logging.rb +8 -0
  70. data/rails_app/rails_6.1/config/initializers/inflections.rb +17 -0
  71. data/rails_app/rails_6.1/config/initializers/mime_types.rb +5 -0
  72. data/rails_app/rails_6.1/config/initializers/wrap_parameters.rb +16 -0
  73. data/rails_app/rails_6.1/config/locales/en.yml +33 -0
  74. data/rails_app/rails_6.1/config/routes.rb +5 -0
  75. data/rails_app/rails_6.1/db/seeds.rb +8 -0
  76. data/rails_app/rails_6.1/lib/tasks/.keep +0 -0
  77. data/rails_app/rails_6.1/public/robots.txt +1 -0
  78. data/rails_app/rails_6.1/spec/rails_helper.rb +14 -0
  79. data/rails_app/rails_6.1/spec/spec_helper.rb +13 -0
  80. data/rails_app/rails_6.1/tmp/.keep +0 -0
  81. data/rails_app/rails_6.1/tmp/pids/.keep +0 -0
  82. data/rails_app/rails_6.1/vendor/.keep +0 -0
  83. metadata +52 -11
  84. data/.dependabot/config.yml +0 -34
  85. data/.rubocop_challenge.yml +0 -5
@@ -4,7 +4,7 @@
4
4
  class PaginationController < ApplicationController
5
5
  # GET pagination
6
6
  def index
7
- case params[:page]
7
+ case params[:page]&.to_s
8
8
  when '1', nil
9
9
  render status: :ok, json: first_page
10
10
  when '2'
@@ -50,7 +50,7 @@ class PaginationController < ApplicationController
50
50
  # but it should be `https://xxxxx.execute-api.ap-northeast-1.amazonaws.com/dev/pagination`.
51
51
  # So this is workaround.
52
52
  def page_link(page)
53
- query_strings = '?' + { page: page }.to_query
53
+ query_strings = "?#{{ page: page }.to_query}"
54
54
  uri = File.join(ENV['JETS_HOST'], ENV['JETS_STAGE'], pagination_path)
55
55
  uri.sub!('http://', 'https://')
56
56
  URI.join(uri, query_strings)
@@ -83,8 +83,8 @@
83
83
  <p>Also check out the <a href="http://rubyonjets.com/reference">Jets CLI reference</a>.</p>
84
84
  </div>
85
85
  <p class="version">
86
- <strong>Jets version:</strong> 2.3.13<br />
87
- <strong>Ruby version:</strong> 2.5.3
86
+ <strong>Jets version:</strong> 3.0.11<br />
87
+ <strong>Ruby version:</strong> 2.7.2
88
88
  </p>
89
89
  </div>
90
90
  </body>
@@ -22,9 +22,9 @@ Gem::Specification.new do |spec|
22
22
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
23
23
  spec.require_paths = ['lib']
24
24
 
25
- spec.required_ruby_version = '>= 2.4.0'
25
+ spec.required_ruby_version = '>= 2.6.0'
26
26
 
27
- spec.add_dependency 'activesupport', '>= 4.2.0'
27
+ spec.add_dependency 'activesupport', '>= 5.2.0'
28
28
  spec.add_dependency 'faraday', '>= 0.17.1'
29
29
  spec.add_dependency 'jsonpath'
30
30
  spec.add_dependency 'sawyer', '>= 0.8.2'
@@ -37,7 +37,7 @@ Gem::Specification.new do |spec|
37
37
  spec.add_development_dependency 'rubocop'
38
38
  spec.add_development_dependency 'rubocop-performance'
39
39
  spec.add_development_dependency 'rubocop-rspec'
40
- spec.add_development_dependency 'simplecov', '0.17.1'
40
+ spec.add_development_dependency 'simplecov', '0.21.2'
41
41
  spec.add_development_dependency 'webmock'
42
42
  spec.add_development_dependency 'yard'
43
43
  end
@@ -6,7 +6,6 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
6
6
  gem 'bootsnap', '>= 1.1.0', require: false
7
7
  gem 'my_api_client', path: '../..'
8
8
  gem 'rails', '~> 5.2.4'
9
- gem 'sprockets', '~> 3.0' # for ruby 2.4
10
9
 
11
10
  group :development, :test do
12
11
  gem 'byebug', platforms: %i[mri mingw x64_mingw]
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- my_api_client (0.17.0)
5
- activesupport (>= 4.2.0)
4
+ my_api_client (0.20.0)
5
+ activesupport (>= 5.2.0)
6
6
  faraday (>= 0.17.1)
7
7
  jsonpath
8
8
  sawyer (>= 0.8.2)
@@ -10,114 +10,124 @@ PATH
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- actioncable (5.2.4.4)
14
- actionpack (= 5.2.4.4)
13
+ actioncable (5.2.6)
14
+ actionpack (= 5.2.6)
15
15
  nio4r (~> 2.0)
16
16
  websocket-driver (>= 0.6.1)
17
- actionmailer (5.2.4.4)
18
- actionpack (= 5.2.4.4)
19
- actionview (= 5.2.4.4)
20
- activejob (= 5.2.4.4)
17
+ actionmailer (5.2.6)
18
+ actionpack (= 5.2.6)
19
+ actionview (= 5.2.6)
20
+ activejob (= 5.2.6)
21
21
  mail (~> 2.5, >= 2.5.4)
22
22
  rails-dom-testing (~> 2.0)
23
- actionpack (5.2.4.4)
24
- actionview (= 5.2.4.4)
25
- activesupport (= 5.2.4.4)
23
+ actionpack (5.2.6)
24
+ actionview (= 5.2.6)
25
+ activesupport (= 5.2.6)
26
26
  rack (~> 2.0, >= 2.0.8)
27
27
  rack-test (>= 0.6.3)
28
28
  rails-dom-testing (~> 2.0)
29
29
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
30
- actionview (5.2.4.4)
31
- activesupport (= 5.2.4.4)
30
+ actionview (5.2.6)
31
+ activesupport (= 5.2.6)
32
32
  builder (~> 3.1)
33
33
  erubi (~> 1.4)
34
34
  rails-dom-testing (~> 2.0)
35
35
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
36
- activejob (5.2.4.4)
37
- activesupport (= 5.2.4.4)
36
+ activejob (5.2.6)
37
+ activesupport (= 5.2.6)
38
38
  globalid (>= 0.3.6)
39
- activemodel (5.2.4.4)
40
- activesupport (= 5.2.4.4)
41
- activerecord (5.2.4.4)
42
- activemodel (= 5.2.4.4)
43
- activesupport (= 5.2.4.4)
39
+ activemodel (5.2.6)
40
+ activesupport (= 5.2.6)
41
+ activerecord (5.2.6)
42
+ activemodel (= 5.2.6)
43
+ activesupport (= 5.2.6)
44
44
  arel (>= 9.0)
45
- activestorage (5.2.4.4)
46
- actionpack (= 5.2.4.4)
47
- activerecord (= 5.2.4.4)
48
- marcel (~> 0.3.1)
49
- activesupport (5.2.4.4)
45
+ activestorage (5.2.6)
46
+ actionpack (= 5.2.6)
47
+ activerecord (= 5.2.6)
48
+ marcel (~> 1.0.0)
49
+ activesupport (5.2.6)
50
50
  concurrent-ruby (~> 1.0, >= 1.0.2)
51
51
  i18n (>= 0.7, < 2)
52
52
  minitest (~> 5.1)
53
53
  tzinfo (~> 1.1)
54
- addressable (2.7.0)
54
+ addressable (2.8.0)
55
55
  public_suffix (>= 2.0.2, < 5.0)
56
56
  arel (9.0.0)
57
57
  bootsnap (1.4.8)
58
58
  msgpack (~> 1.0)
59
59
  builder (3.2.4)
60
60
  byebug (11.1.3)
61
- concurrent-ruby (1.1.7)
61
+ concurrent-ruby (1.1.9)
62
62
  crass (1.0.6)
63
63
  diff-lcs (1.4.4)
64
- erubi (1.9.0)
65
- faraday (1.0.1)
64
+ erubi (1.10.0)
65
+ faraday (1.4.2)
66
+ faraday-em_http (~> 1.0)
67
+ faraday-em_synchrony (~> 1.0)
68
+ faraday-excon (~> 1.1)
69
+ faraday-net_http (~> 1.0)
70
+ faraday-net_http_persistent (~> 1.1)
66
71
  multipart-post (>= 1.2, < 3)
72
+ ruby2_keywords (>= 0.0.4)
73
+ faraday-em_http (1.0.0)
74
+ faraday-em_synchrony (1.0.0)
75
+ faraday-excon (1.1.0)
76
+ faraday-net_http (1.0.1)
77
+ faraday-net_http_persistent (1.1.0)
67
78
  globalid (0.4.2)
68
79
  activesupport (>= 4.2.0)
69
- i18n (1.8.5)
80
+ i18n (1.8.10)
70
81
  concurrent-ruby (~> 1.0)
71
- jsonpath (1.0.5)
82
+ jsonpath (1.1.0)
72
83
  multi_json
73
- to_regexp (~> 0.2.1)
74
- loofah (2.7.0)
84
+ loofah (2.10.0)
75
85
  crass (~> 1.0.2)
76
86
  nokogiri (>= 1.5.9)
77
87
  mail (2.7.1)
78
88
  mini_mime (>= 0.1.1)
79
- marcel (0.3.3)
80
- mimemagic (~> 0.3.2)
89
+ marcel (1.0.1)
81
90
  method_source (1.0.0)
82
- mimemagic (0.3.5)
83
- mini_mime (1.0.2)
84
- mini_portile2 (2.4.0)
85
- minitest (5.14.2)
91
+ mini_mime (1.1.0)
92
+ mini_portile2 (2.5.3)
93
+ minitest (5.14.4)
86
94
  msgpack (1.3.3)
87
95
  multi_json (1.15.0)
88
96
  multipart-post (2.1.1)
89
- nio4r (2.5.4)
90
- nokogiri (1.10.10)
91
- mini_portile2 (~> 2.4.0)
97
+ nio4r (2.5.7)
98
+ nokogiri (1.11.7)
99
+ mini_portile2 (~> 2.5.0)
100
+ racc (~> 1.4)
92
101
  public_suffix (4.0.6)
102
+ racc (1.5.2)
93
103
  rack (2.2.3)
94
104
  rack-test (1.1.0)
95
105
  rack (>= 1.0, < 3)
96
- rails (5.2.4.4)
97
- actioncable (= 5.2.4.4)
98
- actionmailer (= 5.2.4.4)
99
- actionpack (= 5.2.4.4)
100
- actionview (= 5.2.4.4)
101
- activejob (= 5.2.4.4)
102
- activemodel (= 5.2.4.4)
103
- activerecord (= 5.2.4.4)
104
- activestorage (= 5.2.4.4)
105
- activesupport (= 5.2.4.4)
106
+ rails (5.2.6)
107
+ actioncable (= 5.2.6)
108
+ actionmailer (= 5.2.6)
109
+ actionpack (= 5.2.6)
110
+ actionview (= 5.2.6)
111
+ activejob (= 5.2.6)
112
+ activemodel (= 5.2.6)
113
+ activerecord (= 5.2.6)
114
+ activestorage (= 5.2.6)
115
+ activesupport (= 5.2.6)
106
116
  bundler (>= 1.3.0)
107
- railties (= 5.2.4.4)
117
+ railties (= 5.2.6)
108
118
  sprockets-rails (>= 2.0.0)
109
119
  rails-dom-testing (2.0.3)
110
120
  activesupport (>= 4.2.0)
111
121
  nokogiri (>= 1.6)
112
122
  rails-html-sanitizer (1.3.0)
113
123
  loofah (~> 2.3)
114
- railties (5.2.4.4)
115
- actionpack (= 5.2.4.4)
116
- activesupport (= 5.2.4.4)
124
+ railties (5.2.6)
125
+ actionpack (= 5.2.6)
126
+ activesupport (= 5.2.6)
117
127
  method_source
118
128
  rake (>= 0.8.7)
119
129
  thor (>= 0.19.0, < 2.0)
120
- rake (13.0.1)
130
+ rake (13.0.3)
121
131
  rspec-core (3.9.2)
122
132
  rspec-support (~> 3.9.3)
123
133
  rspec-expectations (3.9.2)
@@ -135,23 +145,23 @@ GEM
135
145
  rspec-mocks (~> 3.9)
136
146
  rspec-support (~> 3.9)
137
147
  rspec-support (3.9.3)
148
+ ruby2_keywords (0.0.4)
138
149
  sawyer (0.8.2)
139
150
  addressable (>= 2.3.5)
140
151
  faraday (> 0.8, < 2.0)
141
152
  spring (2.1.1)
142
- sprockets (3.7.2)
153
+ sprockets (4.0.2)
143
154
  concurrent-ruby (~> 1.0)
144
155
  rack (> 1, < 3)
145
156
  sprockets-rails (3.2.2)
146
157
  actionpack (>= 4.0)
147
158
  activesupport (>= 4.0)
148
159
  sprockets (>= 3.0.0)
149
- thor (1.0.1)
160
+ thor (1.1.0)
150
161
  thread_safe (0.3.6)
151
- to_regexp (0.2.1)
152
- tzinfo (1.2.7)
162
+ tzinfo (1.2.9)
153
163
  thread_safe (~> 0.1)
154
- websocket-driver (0.7.3)
164
+ websocket-driver (0.7.4)
155
165
  websocket-extensions (>= 0.1.0)
156
166
  websocket-extensions (0.1.5)
157
167
 
@@ -165,7 +175,6 @@ DEPENDENCIES
165
175
  rails (~> 5.2.4)
166
176
  rspec-rails
167
177
  spring
168
- sprockets (~> 3.0)
169
178
 
170
179
  BUNDLED WITH
171
- 2.1.4
180
+ 2.2.4
@@ -63,7 +63,7 @@ Rails.application.configure do
63
63
  # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name')
64
64
 
65
65
  if ENV['RAILS_LOG_TO_STDOUT'].present?
66
- logger = ActiveSupport::Logger.new(STDOUT)
66
+ logger = ActiveSupport::Logger.new($stdout)
67
67
  logger.formatter = config.log_formatter
68
68
  config.logger = ActiveSupport::TaggedLogging.new(logger)
69
69
  end
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- my_api_client (0.17.0)
5
- activesupport (>= 4.2.0)
4
+ my_api_client (0.20.0)
5
+ activesupport (>= 5.2.0)
6
6
  faraday (>= 0.17.1)
7
7
  jsonpath
8
8
  sawyer (>= 0.8.2)
@@ -10,129 +10,139 @@ PATH
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- actioncable (6.0.3.3)
14
- actionpack (= 6.0.3.3)
13
+ actioncable (6.0.3.7)
14
+ actionpack (= 6.0.3.7)
15
15
  nio4r (~> 2.0)
16
16
  websocket-driver (>= 0.6.1)
17
- actionmailbox (6.0.3.3)
18
- actionpack (= 6.0.3.3)
19
- activejob (= 6.0.3.3)
20
- activerecord (= 6.0.3.3)
21
- activestorage (= 6.0.3.3)
22
- activesupport (= 6.0.3.3)
17
+ actionmailbox (6.0.3.7)
18
+ actionpack (= 6.0.3.7)
19
+ activejob (= 6.0.3.7)
20
+ activerecord (= 6.0.3.7)
21
+ activestorage (= 6.0.3.7)
22
+ activesupport (= 6.0.3.7)
23
23
  mail (>= 2.7.1)
24
- actionmailer (6.0.3.3)
25
- actionpack (= 6.0.3.3)
26
- actionview (= 6.0.3.3)
27
- activejob (= 6.0.3.3)
24
+ actionmailer (6.0.3.7)
25
+ actionpack (= 6.0.3.7)
26
+ actionview (= 6.0.3.7)
27
+ activejob (= 6.0.3.7)
28
28
  mail (~> 2.5, >= 2.5.4)
29
29
  rails-dom-testing (~> 2.0)
30
- actionpack (6.0.3.3)
31
- actionview (= 6.0.3.3)
32
- activesupport (= 6.0.3.3)
30
+ actionpack (6.0.3.7)
31
+ actionview (= 6.0.3.7)
32
+ activesupport (= 6.0.3.7)
33
33
  rack (~> 2.0, >= 2.0.8)
34
34
  rack-test (>= 0.6.3)
35
35
  rails-dom-testing (~> 2.0)
36
36
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
37
- actiontext (6.0.3.3)
38
- actionpack (= 6.0.3.3)
39
- activerecord (= 6.0.3.3)
40
- activestorage (= 6.0.3.3)
41
- activesupport (= 6.0.3.3)
37
+ actiontext (6.0.3.7)
38
+ actionpack (= 6.0.3.7)
39
+ activerecord (= 6.0.3.7)
40
+ activestorage (= 6.0.3.7)
41
+ activesupport (= 6.0.3.7)
42
42
  nokogiri (>= 1.8.5)
43
- actionview (6.0.3.3)
44
- activesupport (= 6.0.3.3)
43
+ actionview (6.0.3.7)
44
+ activesupport (= 6.0.3.7)
45
45
  builder (~> 3.1)
46
46
  erubi (~> 1.4)
47
47
  rails-dom-testing (~> 2.0)
48
48
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
49
- activejob (6.0.3.3)
50
- activesupport (= 6.0.3.3)
49
+ activejob (6.0.3.7)
50
+ activesupport (= 6.0.3.7)
51
51
  globalid (>= 0.3.6)
52
- activemodel (6.0.3.3)
53
- activesupport (= 6.0.3.3)
54
- activerecord (6.0.3.3)
55
- activemodel (= 6.0.3.3)
56
- activesupport (= 6.0.3.3)
57
- activestorage (6.0.3.3)
58
- actionpack (= 6.0.3.3)
59
- activejob (= 6.0.3.3)
60
- activerecord (= 6.0.3.3)
61
- marcel (~> 0.3.1)
62
- activesupport (6.0.3.3)
52
+ activemodel (6.0.3.7)
53
+ activesupport (= 6.0.3.7)
54
+ activerecord (6.0.3.7)
55
+ activemodel (= 6.0.3.7)
56
+ activesupport (= 6.0.3.7)
57
+ activestorage (6.0.3.7)
58
+ actionpack (= 6.0.3.7)
59
+ activejob (= 6.0.3.7)
60
+ activerecord (= 6.0.3.7)
61
+ marcel (~> 1.0.0)
62
+ activesupport (6.0.3.7)
63
63
  concurrent-ruby (~> 1.0, >= 1.0.2)
64
64
  i18n (>= 0.7, < 2)
65
65
  minitest (~> 5.1)
66
66
  tzinfo (~> 1.1)
67
67
  zeitwerk (~> 2.2, >= 2.2.2)
68
- addressable (2.7.0)
68
+ addressable (2.8.0)
69
69
  public_suffix (>= 2.0.2, < 5.0)
70
70
  bootsnap (1.4.8)
71
71
  msgpack (~> 1.0)
72
72
  builder (3.2.4)
73
73
  byebug (11.1.3)
74
- concurrent-ruby (1.1.7)
74
+ concurrent-ruby (1.1.9)
75
75
  crass (1.0.6)
76
76
  diff-lcs (1.4.4)
77
- erubi (1.9.0)
78
- faraday (1.0.1)
77
+ erubi (1.10.0)
78
+ faraday (1.4.2)
79
+ faraday-em_http (~> 1.0)
80
+ faraday-em_synchrony (~> 1.0)
81
+ faraday-excon (~> 1.1)
82
+ faraday-net_http (~> 1.0)
83
+ faraday-net_http_persistent (~> 1.1)
79
84
  multipart-post (>= 1.2, < 3)
85
+ ruby2_keywords (>= 0.0.4)
86
+ faraday-em_http (1.0.0)
87
+ faraday-em_synchrony (1.0.0)
88
+ faraday-excon (1.1.0)
89
+ faraday-net_http (1.0.1)
90
+ faraday-net_http_persistent (1.1.0)
80
91
  globalid (0.4.2)
81
92
  activesupport (>= 4.2.0)
82
- i18n (1.8.5)
93
+ i18n (1.8.10)
83
94
  concurrent-ruby (~> 1.0)
84
- jsonpath (1.0.5)
95
+ jsonpath (1.1.0)
85
96
  multi_json
86
- to_regexp (~> 0.2.1)
87
- loofah (2.7.0)
97
+ loofah (2.10.0)
88
98
  crass (~> 1.0.2)
89
99
  nokogiri (>= 1.5.9)
90
100
  mail (2.7.1)
91
101
  mini_mime (>= 0.1.1)
92
- marcel (0.3.3)
93
- mimemagic (~> 0.3.2)
102
+ marcel (1.0.1)
94
103
  method_source (1.0.0)
95
- mimemagic (0.3.5)
96
- mini_mime (1.0.2)
97
- mini_portile2 (2.4.0)
98
- minitest (5.14.2)
104
+ mini_mime (1.1.0)
105
+ mini_portile2 (2.5.3)
106
+ minitest (5.14.4)
99
107
  msgpack (1.3.3)
100
108
  multi_json (1.15.0)
101
109
  multipart-post (2.1.1)
102
- nio4r (2.5.4)
103
- nokogiri (1.10.10)
104
- mini_portile2 (~> 2.4.0)
110
+ nio4r (2.5.7)
111
+ nokogiri (1.11.7)
112
+ mini_portile2 (~> 2.5.0)
113
+ racc (~> 1.4)
105
114
  public_suffix (4.0.6)
115
+ racc (1.5.2)
106
116
  rack (2.2.3)
107
117
  rack-test (1.1.0)
108
118
  rack (>= 1.0, < 3)
109
- rails (6.0.3.3)
110
- actioncable (= 6.0.3.3)
111
- actionmailbox (= 6.0.3.3)
112
- actionmailer (= 6.0.3.3)
113
- actionpack (= 6.0.3.3)
114
- actiontext (= 6.0.3.3)
115
- actionview (= 6.0.3.3)
116
- activejob (= 6.0.3.3)
117
- activemodel (= 6.0.3.3)
118
- activerecord (= 6.0.3.3)
119
- activestorage (= 6.0.3.3)
120
- activesupport (= 6.0.3.3)
119
+ rails (6.0.3.7)
120
+ actioncable (= 6.0.3.7)
121
+ actionmailbox (= 6.0.3.7)
122
+ actionmailer (= 6.0.3.7)
123
+ actionpack (= 6.0.3.7)
124
+ actiontext (= 6.0.3.7)
125
+ actionview (= 6.0.3.7)
126
+ activejob (= 6.0.3.7)
127
+ activemodel (= 6.0.3.7)
128
+ activerecord (= 6.0.3.7)
129
+ activestorage (= 6.0.3.7)
130
+ activesupport (= 6.0.3.7)
121
131
  bundler (>= 1.3.0)
122
- railties (= 6.0.3.3)
132
+ railties (= 6.0.3.7)
123
133
  sprockets-rails (>= 2.0.0)
124
134
  rails-dom-testing (2.0.3)
125
135
  activesupport (>= 4.2.0)
126
136
  nokogiri (>= 1.6)
127
137
  rails-html-sanitizer (1.3.0)
128
138
  loofah (~> 2.3)
129
- railties (6.0.3.3)
130
- actionpack (= 6.0.3.3)
131
- activesupport (= 6.0.3.3)
139
+ railties (6.0.3.7)
140
+ actionpack (= 6.0.3.7)
141
+ activesupport (= 6.0.3.7)
132
142
  method_source
133
143
  rake (>= 0.8.7)
134
144
  thor (>= 0.20.3, < 2.0)
135
- rake (13.0.1)
145
+ rake (13.0.3)
136
146
  rspec-core (3.9.2)
137
147
  rspec-support (~> 3.9.3)
138
148
  rspec-expectations (3.9.2)
@@ -150,6 +160,7 @@ GEM
150
160
  rspec-mocks (~> 3.9)
151
161
  rspec-support (~> 3.9)
152
162
  rspec-support (3.9.3)
163
+ ruby2_keywords (0.0.4)
153
164
  sawyer (0.8.2)
154
165
  addressable (>= 2.3.5)
155
166
  faraday (> 0.8, < 2.0)
@@ -161,15 +172,14 @@ GEM
161
172
  actionpack (>= 4.0)
162
173
  activesupport (>= 4.0)
163
174
  sprockets (>= 3.0.0)
164
- thor (1.0.1)
175
+ thor (1.1.0)
165
176
  thread_safe (0.3.6)
166
- to_regexp (0.2.1)
167
- tzinfo (1.2.7)
177
+ tzinfo (1.2.9)
168
178
  thread_safe (~> 0.1)
169
- websocket-driver (0.7.3)
179
+ websocket-driver (0.7.4)
170
180
  websocket-extensions (>= 0.1.0)
171
181
  websocket-extensions (0.1.5)
172
- zeitwerk (2.4.0)
182
+ zeitwerk (2.4.2)
173
183
 
174
184
  PLATFORMS
175
185
  ruby
@@ -183,4 +193,4 @@ DEPENDENCIES
183
193
  spring
184
194
 
185
195
  BUNDLED WITH
186
- 2.1.4
196
+ 2.2.4