my_api_client 0.20.0 → 0.23.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +34 -18
  3. data/.github/dependabot.yml +32 -0
  4. data/.rubocop.yml +10 -10
  5. data/.rubocop_todo.yml +2 -2
  6. data/CHANGELOG.md +215 -249
  7. data/Gemfile.lock +54 -57
  8. data/README.jp.md +36 -34
  9. data/README.md +391 -8
  10. data/example/api_clients/application_api_client.rb +1 -1
  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_7.0.gemfile +15 -0
  16. data/lib/generators/rails/templates/api_client.rb.erb +3 -5
  17. data/lib/generators/rspec/templates/api_client_spec.rb.erb +0 -8
  18. data/lib/my_api_client/errors/network_error.rb +3 -3
  19. data/lib/my_api_client/errors.rb +2 -2
  20. data/lib/my_api_client/integrations/bugsnag.rb +2 -2
  21. data/lib/my_api_client/rspec/matchers/be_handled_as_an_error.rb +3 -3
  22. data/lib/my_api_client/rspec/stub.rb +11 -7
  23. data/lib/my_api_client/version.rb +1 -1
  24. data/my_api/Gemfile +1 -1
  25. data/my_api/Gemfile.lock +100 -99
  26. data/my_api/app/controllers/pagination_controller.rb +1 -1
  27. data/my_api/public/index.html +2 -2
  28. data/my_api/spec/spec_helper.rb +1 -1
  29. data/my_api_client.gemspec +4 -1
  30. data/rails_app/rails_5.2/Gemfile.lock +70 -64
  31. data/rails_app/rails_6.0/Gemfile +1 -0
  32. data/rails_app/rails_6.0/Gemfile.lock +92 -94
  33. data/rails_app/rails_6.1/Gemfile +2 -2
  34. data/rails_app/rails_6.1/Gemfile.lock +91 -95
  35. data/rails_app/rails_6.1/Rakefile +3 -1
  36. data/rails_app/rails_6.1/bin/bundle +28 -20
  37. data/rails_app/rails_6.1/bin/rails +4 -2
  38. data/rails_app/rails_6.1/bin/rake +4 -2
  39. data/rails_app/rails_6.1/bin/setup +3 -1
  40. data/rails_app/rails_6.1/config.ru +3 -1
  41. data/rails_app/rails_7.0/Gemfile +13 -0
  42. data/rails_app/rails_7.0/Gemfile.lock +210 -0
  43. data/rails_app/rails_7.0/README.md +24 -0
  44. data/rails_app/rails_7.0/Rakefile +8 -0
  45. data/rails_app/rails_7.0/app/controllers/application_controller.rb +4 -0
  46. data/rails_app/rails_7.0/app/models/application_record.rb +5 -0
  47. data/rails_app/rails_7.0/bin/bundle +122 -0
  48. data/rails_app/rails_7.0/bin/rails +6 -0
  49. data/rails_app/rails_7.0/bin/rake +6 -0
  50. data/rails_app/rails_7.0/bin/setup +35 -0
  51. data/rails_app/rails_7.0/config/application.rb +41 -0
  52. data/rails_app/rails_7.0/config/boot.rb +5 -0
  53. data/rails_app/rails_7.0/config/credentials.yml.enc +1 -0
  54. data/rails_app/rails_7.0/config/database.yml +25 -0
  55. data/rails_app/rails_7.0/config/environment.rb +7 -0
  56. data/rails_app/rails_7.0/config/environments/development.rb +58 -0
  57. data/rails_app/rails_7.0/config/environments/production.rb +70 -0
  58. data/rails_app/rails_7.0/config/environments/test.rb +52 -0
  59. data/rails_app/rails_7.0/config/initializers/cors.rb +17 -0
  60. data/rails_app/rails_7.0/config/initializers/filter_parameter_logging.rb +8 -0
  61. data/rails_app/rails_7.0/config/initializers/inflections.rb +17 -0
  62. data/rails_app/rails_7.0/config/locales/en.yml +33 -0
  63. data/rails_app/rails_7.0/config/routes.rb +8 -0
  64. data/rails_app/rails_7.0/config.ru +8 -0
  65. data/rails_app/rails_7.0/db/seeds.rb +8 -0
  66. data/rails_app/rails_7.0/public/robots.txt +1 -0
  67. data/rails_app/rails_7.0/spec/rails_helper.rb +14 -0
  68. data/rails_app/rails_7.0/spec/spec_helper.rb +13 -0
  69. metadata +36 -6
  70. data/.dependabot/config.yml +0 -34
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- my_api_client (0.17.0)
4
+ my_api_client (0.22.0)
5
5
  activesupport (>= 5.2.0)
6
6
  faraday (>= 0.17.1)
7
7
  jsonpath
@@ -10,133 +10,130 @@ 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.4.8)
14
+ actionpack (= 6.0.4.8)
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.4.8)
18
+ actionpack (= 6.0.4.8)
19
+ activejob (= 6.0.4.8)
20
+ activerecord (= 6.0.4.8)
21
+ activestorage (= 6.0.4.8)
22
+ activesupport (= 6.0.4.8)
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.4.8)
25
+ actionpack (= 6.0.4.8)
26
+ actionview (= 6.0.4.8)
27
+ activejob (= 6.0.4.8)
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.4.8)
31
+ actionview (= 6.0.4.8)
32
+ activesupport (= 6.0.4.8)
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.4.8)
38
+ actionpack (= 6.0.4.8)
39
+ activerecord (= 6.0.4.8)
40
+ activestorage (= 6.0.4.8)
41
+ activesupport (= 6.0.4.8)
42
42
  nokogiri (>= 1.8.5)
43
- actionview (6.0.3.3)
44
- activesupport (= 6.0.3.3)
43
+ actionview (6.0.4.8)
44
+ activesupport (= 6.0.4.8)
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.4.8)
50
+ activesupport (= 6.0.4.8)
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.4.8)
53
+ activesupport (= 6.0.4.8)
54
+ activerecord (6.0.4.8)
55
+ activemodel (= 6.0.4.8)
56
+ activesupport (= 6.0.4.8)
57
+ activestorage (6.0.4.8)
58
+ actionpack (= 6.0.4.8)
59
+ activejob (= 6.0.4.8)
60
+ activerecord (= 6.0.4.8)
61
+ marcel (~> 1.0.0)
62
+ activesupport (6.0.4.8)
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
- bootsnap (1.4.8)
70
+ bootsnap (1.9.3)
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.10)
75
75
  crass (1.0.6)
76
76
  diff-lcs (1.4.4)
77
- erubi (1.9.0)
78
- faraday (1.3.0)
79
- faraday-net_http (~> 1.0)
80
- multipart-post (>= 1.2, < 3)
81
- ruby2_keywords
82
- faraday-net_http (1.0.0)
83
- globalid (0.4.2)
84
- activesupport (>= 4.2.0)
85
- i18n (1.8.5)
77
+ erubi (1.10.0)
78
+ faraday (2.3.0)
79
+ faraday-net_http (~> 2.0)
80
+ ruby2_keywords (>= 0.0.4)
81
+ faraday-net_http (2.0.2)
82
+ globalid (1.0.0)
83
+ activesupport (>= 5.0)
84
+ i18n (1.10.0)
86
85
  concurrent-ruby (~> 1.0)
87
- jsonpath (1.1.0)
86
+ jsonpath (1.1.2)
88
87
  multi_json
89
- loofah (2.7.0)
88
+ loofah (2.17.0)
90
89
  crass (~> 1.0.2)
91
90
  nokogiri (>= 1.5.9)
92
91
  mail (2.7.1)
93
92
  mini_mime (>= 0.1.1)
94
- marcel (0.3.3)
95
- mimemagic (~> 0.3.2)
93
+ marcel (1.0.2)
96
94
  method_source (1.0.0)
97
- mimemagic (0.3.5)
98
- mini_mime (1.0.2)
99
- mini_portile2 (2.5.0)
100
- minitest (5.14.2)
101
- msgpack (1.3.3)
95
+ mini_mime (1.1.2)
96
+ mini_portile2 (2.8.0)
97
+ minitest (5.15.0)
98
+ msgpack (1.4.2)
102
99
  multi_json (1.15.0)
103
- multipart-post (2.1.1)
104
- nio4r (2.5.4)
105
- nokogiri (1.11.0)
106
- mini_portile2 (~> 2.5.0)
100
+ nio4r (2.5.8)
101
+ nokogiri (1.13.6)
102
+ mini_portile2 (~> 2.8.0)
107
103
  racc (~> 1.4)
108
- public_suffix (4.0.6)
109
- racc (1.5.2)
110
- rack (2.2.3)
104
+ psych (3.3.2)
105
+ public_suffix (4.0.7)
106
+ racc (1.6.0)
107
+ rack (2.2.3.1)
111
108
  rack-test (1.1.0)
112
109
  rack (>= 1.0, < 3)
113
- rails (6.0.3.3)
114
- actioncable (= 6.0.3.3)
115
- actionmailbox (= 6.0.3.3)
116
- actionmailer (= 6.0.3.3)
117
- actionpack (= 6.0.3.3)
118
- actiontext (= 6.0.3.3)
119
- actionview (= 6.0.3.3)
120
- activejob (= 6.0.3.3)
121
- activemodel (= 6.0.3.3)
122
- activerecord (= 6.0.3.3)
123
- activestorage (= 6.0.3.3)
124
- activesupport (= 6.0.3.3)
110
+ rails (6.0.4.8)
111
+ actioncable (= 6.0.4.8)
112
+ actionmailbox (= 6.0.4.8)
113
+ actionmailer (= 6.0.4.8)
114
+ actionpack (= 6.0.4.8)
115
+ actiontext (= 6.0.4.8)
116
+ actionview (= 6.0.4.8)
117
+ activejob (= 6.0.4.8)
118
+ activemodel (= 6.0.4.8)
119
+ activerecord (= 6.0.4.8)
120
+ activestorage (= 6.0.4.8)
121
+ activesupport (= 6.0.4.8)
125
122
  bundler (>= 1.3.0)
126
- railties (= 6.0.3.3)
123
+ railties (= 6.0.4.8)
127
124
  sprockets-rails (>= 2.0.0)
128
125
  rails-dom-testing (2.0.3)
129
126
  activesupport (>= 4.2.0)
130
127
  nokogiri (>= 1.6)
131
- rails-html-sanitizer (1.3.0)
128
+ rails-html-sanitizer (1.4.2)
132
129
  loofah (~> 2.3)
133
- railties (6.0.3.3)
134
- actionpack (= 6.0.3.3)
135
- activesupport (= 6.0.3.3)
130
+ railties (6.0.4.8)
131
+ actionpack (= 6.0.4.8)
132
+ activesupport (= 6.0.4.8)
136
133
  method_source
137
134
  rake (>= 0.8.7)
138
135
  thor (>= 0.20.3, < 2.0)
139
- rake (13.0.1)
136
+ rake (13.0.6)
140
137
  rspec-core (3.9.2)
141
138
  rspec-support (~> 3.9.3)
142
139
  rspec-expectations (3.9.2)
@@ -154,26 +151,26 @@ GEM
154
151
  rspec-mocks (~> 3.9)
155
152
  rspec-support (~> 3.9)
156
153
  rspec-support (3.9.3)
157
- ruby2_keywords (0.0.2)
158
- sawyer (0.8.2)
154
+ ruby2_keywords (0.0.5)
155
+ sawyer (0.9.1)
159
156
  addressable (>= 2.3.5)
160
- faraday (> 0.8, < 2.0)
157
+ faraday (>= 0.17.3, < 3)
161
158
  spring (2.1.1)
162
- sprockets (4.0.2)
159
+ sprockets (4.0.3)
163
160
  concurrent-ruby (~> 1.0)
164
161
  rack (> 1, < 3)
165
- sprockets-rails (3.2.2)
166
- actionpack (>= 4.0)
167
- activesupport (>= 4.0)
162
+ sprockets-rails (3.4.2)
163
+ actionpack (>= 5.2)
164
+ activesupport (>= 5.2)
168
165
  sprockets (>= 3.0.0)
169
- thor (1.0.1)
166
+ thor (1.2.1)
170
167
  thread_safe (0.3.6)
171
- tzinfo (1.2.7)
168
+ tzinfo (1.2.9)
172
169
  thread_safe (~> 0.1)
173
- websocket-driver (0.7.3)
170
+ websocket-driver (0.7.5)
174
171
  websocket-extensions (>= 0.1.0)
175
172
  websocket-extensions (0.1.5)
176
- zeitwerk (2.4.0)
173
+ zeitwerk (2.5.4)
177
174
 
178
175
  PLATFORMS
179
176
  ruby
@@ -182,9 +179,10 @@ DEPENDENCIES
182
179
  bootsnap (>= 1.4.2)
183
180
  byebug
184
181
  my_api_client!
182
+ psych (~> 3.0)
185
183
  rails (~> 6.0.3)
186
184
  rspec-rails
187
185
  spring
188
186
 
189
187
  BUNDLED WITH
190
- 2.1.4
188
+ 2.2.4
@@ -3,12 +3,12 @@
3
3
  source 'https://rubygems.org'
4
4
  git_source(:github) { |repo| "https://github.com/#{repo}.git" }
5
5
 
6
+ gem 'my_api_client', path: '../..'
6
7
  gem 'rails', '~> 6.1.0'
7
8
  gem 'sqlite3', '~> 1.4'
8
- gem 'my_api_client', path: '../..'
9
9
 
10
10
  group :development, :test do
11
- gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
11
+ gem 'byebug', platforms: %i[mri mingw x64_mingw]
12
12
  gem 'rspec-rails'
13
13
  end
14
14
 
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- my_api_client (0.18.0)
4
+ my_api_client (0.22.0)
5
5
  activesupport (>= 5.2.0)
6
6
  faraday (>= 0.17.1)
7
7
  jsonpath
@@ -10,138 +10,134 @@ PATH
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- actioncable (6.1.0)
14
- actionpack (= 6.1.0)
15
- activesupport (= 6.1.0)
13
+ actioncable (6.1.5.1)
14
+ actionpack (= 6.1.5.1)
15
+ activesupport (= 6.1.5.1)
16
16
  nio4r (~> 2.0)
17
17
  websocket-driver (>= 0.6.1)
18
- actionmailbox (6.1.0)
19
- actionpack (= 6.1.0)
20
- activejob (= 6.1.0)
21
- activerecord (= 6.1.0)
22
- activestorage (= 6.1.0)
23
- activesupport (= 6.1.0)
18
+ actionmailbox (6.1.5.1)
19
+ actionpack (= 6.1.5.1)
20
+ activejob (= 6.1.5.1)
21
+ activerecord (= 6.1.5.1)
22
+ activestorage (= 6.1.5.1)
23
+ activesupport (= 6.1.5.1)
24
24
  mail (>= 2.7.1)
25
- actionmailer (6.1.0)
26
- actionpack (= 6.1.0)
27
- actionview (= 6.1.0)
28
- activejob (= 6.1.0)
29
- activesupport (= 6.1.0)
25
+ actionmailer (6.1.5.1)
26
+ actionpack (= 6.1.5.1)
27
+ actionview (= 6.1.5.1)
28
+ activejob (= 6.1.5.1)
29
+ activesupport (= 6.1.5.1)
30
30
  mail (~> 2.5, >= 2.5.4)
31
31
  rails-dom-testing (~> 2.0)
32
- actionpack (6.1.0)
33
- actionview (= 6.1.0)
34
- activesupport (= 6.1.0)
32
+ actionpack (6.1.5.1)
33
+ actionview (= 6.1.5.1)
34
+ activesupport (= 6.1.5.1)
35
35
  rack (~> 2.0, >= 2.0.9)
36
36
  rack-test (>= 0.6.3)
37
37
  rails-dom-testing (~> 2.0)
38
38
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
39
- actiontext (6.1.0)
40
- actionpack (= 6.1.0)
41
- activerecord (= 6.1.0)
42
- activestorage (= 6.1.0)
43
- activesupport (= 6.1.0)
39
+ actiontext (6.1.5.1)
40
+ actionpack (= 6.1.5.1)
41
+ activerecord (= 6.1.5.1)
42
+ activestorage (= 6.1.5.1)
43
+ activesupport (= 6.1.5.1)
44
44
  nokogiri (>= 1.8.5)
45
- actionview (6.1.0)
46
- activesupport (= 6.1.0)
45
+ actionview (6.1.5.1)
46
+ activesupport (= 6.1.5.1)
47
47
  builder (~> 3.1)
48
48
  erubi (~> 1.4)
49
49
  rails-dom-testing (~> 2.0)
50
50
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
51
- activejob (6.1.0)
52
- activesupport (= 6.1.0)
51
+ activejob (6.1.5.1)
52
+ activesupport (= 6.1.5.1)
53
53
  globalid (>= 0.3.6)
54
- activemodel (6.1.0)
55
- activesupport (= 6.1.0)
56
- activerecord (6.1.0)
57
- activemodel (= 6.1.0)
58
- activesupport (= 6.1.0)
59
- activestorage (6.1.0)
60
- actionpack (= 6.1.0)
61
- activejob (= 6.1.0)
62
- activerecord (= 6.1.0)
63
- activesupport (= 6.1.0)
64
- marcel (~> 0.3.1)
65
- mimemagic (~> 0.3.2)
66
- activesupport (6.1.0)
54
+ activemodel (6.1.5.1)
55
+ activesupport (= 6.1.5.1)
56
+ activerecord (6.1.5.1)
57
+ activemodel (= 6.1.5.1)
58
+ activesupport (= 6.1.5.1)
59
+ activestorage (6.1.5.1)
60
+ actionpack (= 6.1.5.1)
61
+ activejob (= 6.1.5.1)
62
+ activerecord (= 6.1.5.1)
63
+ activesupport (= 6.1.5.1)
64
+ marcel (~> 1.0)
65
+ mini_mime (>= 1.1.0)
66
+ activesupport (6.1.5.1)
67
67
  concurrent-ruby (~> 1.0, >= 1.0.2)
68
68
  i18n (>= 1.6, < 2)
69
69
  minitest (>= 5.1)
70
70
  tzinfo (~> 2.0)
71
71
  zeitwerk (~> 2.3)
72
- addressable (2.7.0)
72
+ addressable (2.8.0)
73
73
  public_suffix (>= 2.0.2, < 5.0)
74
74
  builder (3.2.4)
75
75
  byebug (11.1.3)
76
- concurrent-ruby (1.1.7)
76
+ concurrent-ruby (1.1.10)
77
77
  crass (1.0.6)
78
78
  diff-lcs (1.4.4)
79
79
  erubi (1.10.0)
80
- faraday (1.3.0)
81
- faraday-net_http (~> 1.0)
82
- multipart-post (>= 1.2, < 3)
83
- ruby2_keywords
84
- faraday-net_http (1.0.0)
80
+ faraday (2.3.0)
81
+ faraday-net_http (~> 2.0)
82
+ ruby2_keywords (>= 0.0.4)
83
+ faraday-net_http (2.0.2)
85
84
  ffi (1.14.2)
86
- globalid (0.4.2)
87
- activesupport (>= 4.2.0)
88
- i18n (1.8.5)
85
+ globalid (1.0.0)
86
+ activesupport (>= 5.0)
87
+ i18n (1.10.0)
89
88
  concurrent-ruby (~> 1.0)
90
- jsonpath (1.1.0)
89
+ jsonpath (1.1.2)
91
90
  multi_json
92
91
  listen (3.3.3)
93
92
  rb-fsevent (~> 0.10, >= 0.10.3)
94
93
  rb-inotify (~> 0.9, >= 0.9.10)
95
- loofah (2.8.0)
94
+ loofah (2.17.0)
96
95
  crass (~> 1.0.2)
97
96
  nokogiri (>= 1.5.9)
98
97
  mail (2.7.1)
99
98
  mini_mime (>= 0.1.1)
100
- marcel (0.3.3)
101
- mimemagic (~> 0.3.2)
99
+ marcel (1.0.2)
102
100
  method_source (1.0.0)
103
- mimemagic (0.3.5)
104
- mini_mime (1.0.2)
105
- mini_portile2 (2.5.0)
106
- minitest (5.14.2)
101
+ mini_mime (1.1.2)
102
+ mini_portile2 (2.8.0)
103
+ minitest (5.15.0)
107
104
  multi_json (1.15.0)
108
- multipart-post (2.1.1)
109
- nio4r (2.5.4)
110
- nokogiri (1.11.0)
111
- mini_portile2 (~> 2.5.0)
105
+ nio4r (2.5.8)
106
+ nokogiri (1.13.6)
107
+ mini_portile2 (~> 2.8.0)
112
108
  racc (~> 1.4)
113
- public_suffix (4.0.6)
114
- racc (1.5.2)
115
- rack (2.2.3)
109
+ public_suffix (4.0.7)
110
+ racc (1.6.0)
111
+ rack (2.2.3.1)
116
112
  rack-test (1.1.0)
117
113
  rack (>= 1.0, < 3)
118
- rails (6.1.0)
119
- actioncable (= 6.1.0)
120
- actionmailbox (= 6.1.0)
121
- actionmailer (= 6.1.0)
122
- actionpack (= 6.1.0)
123
- actiontext (= 6.1.0)
124
- actionview (= 6.1.0)
125
- activejob (= 6.1.0)
126
- activemodel (= 6.1.0)
127
- activerecord (= 6.1.0)
128
- activestorage (= 6.1.0)
129
- activesupport (= 6.1.0)
114
+ rails (6.1.5.1)
115
+ actioncable (= 6.1.5.1)
116
+ actionmailbox (= 6.1.5.1)
117
+ actionmailer (= 6.1.5.1)
118
+ actionpack (= 6.1.5.1)
119
+ actiontext (= 6.1.5.1)
120
+ actionview (= 6.1.5.1)
121
+ activejob (= 6.1.5.1)
122
+ activemodel (= 6.1.5.1)
123
+ activerecord (= 6.1.5.1)
124
+ activestorage (= 6.1.5.1)
125
+ activesupport (= 6.1.5.1)
130
126
  bundler (>= 1.15.0)
131
- railties (= 6.1.0)
127
+ railties (= 6.1.5.1)
132
128
  sprockets-rails (>= 2.0.0)
133
129
  rails-dom-testing (2.0.3)
134
130
  activesupport (>= 4.2.0)
135
131
  nokogiri (>= 1.6)
136
- rails-html-sanitizer (1.3.0)
132
+ rails-html-sanitizer (1.4.2)
137
133
  loofah (~> 2.3)
138
- railties (6.1.0)
139
- actionpack (= 6.1.0)
140
- activesupport (= 6.1.0)
134
+ railties (6.1.5.1)
135
+ actionpack (= 6.1.5.1)
136
+ activesupport (= 6.1.5.1)
141
137
  method_source
142
- rake (>= 0.8.7)
138
+ rake (>= 12.2)
143
139
  thor (~> 1.0)
144
- rake (13.0.3)
140
+ rake (13.0.6)
145
141
  rb-fsevent (0.10.4)
146
142
  rb-inotify (0.10.1)
147
143
  ffi (~> 1.0)
@@ -162,25 +158,25 @@ GEM
162
158
  rspec-mocks (~> 3.9)
163
159
  rspec-support (~> 3.9)
164
160
  rspec-support (3.10.0)
165
- ruby2_keywords (0.0.2)
166
- sawyer (0.8.2)
161
+ ruby2_keywords (0.0.5)
162
+ sawyer (0.9.1)
167
163
  addressable (>= 2.3.5)
168
- faraday (> 0.8, < 2.0)
169
- sprockets (4.0.2)
164
+ faraday (>= 0.17.3, < 3)
165
+ sprockets (4.0.3)
170
166
  concurrent-ruby (~> 1.0)
171
167
  rack (> 1, < 3)
172
- sprockets-rails (3.2.2)
173
- actionpack (>= 4.0)
174
- activesupport (>= 4.0)
168
+ sprockets-rails (3.4.2)
169
+ actionpack (>= 5.2)
170
+ activesupport (>= 5.2)
175
171
  sprockets (>= 3.0.0)
176
172
  sqlite3 (1.4.2)
177
- thor (1.0.1)
173
+ thor (1.2.1)
178
174
  tzinfo (2.0.4)
179
175
  concurrent-ruby (~> 1.0)
180
- websocket-driver (0.7.3)
176
+ websocket-driver (0.7.5)
181
177
  websocket-extensions (>= 0.1.0)
182
178
  websocket-extensions (0.1.5)
183
- zeitwerk (2.4.2)
179
+ zeitwerk (2.5.4)
184
180
 
185
181
  PLATFORMS
186
182
  ruby
@@ -194,4 +190,4 @@ DEPENDENCIES
194
190
  sqlite3 (~> 1.4)
195
191
 
196
192
  BUNDLED WITH
197
- 2.1.2
193
+ 2.3.11
@@ -1,6 +1,8 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Add your own tasks in files placed in lib/tasks ending in .rake,
2
4
  # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
5
 
4
- require_relative "config/application"
6
+ require_relative 'config/application'
5
7
 
6
8
  Rails.application.load_tasks