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.
- checksums.yaml +4 -4
- data/.circleci/config.yml +34 -18
- data/.github/dependabot.yml +32 -0
- data/.rubocop.yml +10 -10
- data/.rubocop_todo.yml +2 -2
- data/CHANGELOG.md +215 -249
- data/Gemfile.lock +54 -57
- data/README.jp.md +36 -34
- data/README.md +391 -8
- data/example/api_clients/application_api_client.rb +1 -1
- data/gemfiles/rails_5.0.gemfile +1 -0
- data/gemfiles/rails_5.1.gemfile +1 -0
- data/gemfiles/rails_5.2.gemfile +1 -0
- data/gemfiles/rails_6.0.gemfile +1 -0
- data/gemfiles/rails_7.0.gemfile +15 -0
- data/lib/generators/rails/templates/api_client.rb.erb +3 -5
- data/lib/generators/rspec/templates/api_client_spec.rb.erb +0 -8
- data/lib/my_api_client/errors/network_error.rb +3 -3
- data/lib/my_api_client/errors.rb +2 -2
- data/lib/my_api_client/integrations/bugsnag.rb +2 -2
- data/lib/my_api_client/rspec/matchers/be_handled_as_an_error.rb +3 -3
- data/lib/my_api_client/rspec/stub.rb +11 -7
- data/lib/my_api_client/version.rb +1 -1
- data/my_api/Gemfile +1 -1
- data/my_api/Gemfile.lock +100 -99
- data/my_api/app/controllers/pagination_controller.rb +1 -1
- data/my_api/public/index.html +2 -2
- data/my_api/spec/spec_helper.rb +1 -1
- data/my_api_client.gemspec +4 -1
- data/rails_app/rails_5.2/Gemfile.lock +70 -64
- data/rails_app/rails_6.0/Gemfile +1 -0
- data/rails_app/rails_6.0/Gemfile.lock +92 -94
- data/rails_app/rails_6.1/Gemfile +2 -2
- data/rails_app/rails_6.1/Gemfile.lock +91 -95
- data/rails_app/rails_6.1/Rakefile +3 -1
- data/rails_app/rails_6.1/bin/bundle +28 -20
- data/rails_app/rails_6.1/bin/rails +4 -2
- data/rails_app/rails_6.1/bin/rake +4 -2
- data/rails_app/rails_6.1/bin/setup +3 -1
- data/rails_app/rails_6.1/config.ru +3 -1
- data/rails_app/rails_7.0/Gemfile +13 -0
- data/rails_app/rails_7.0/Gemfile.lock +210 -0
- data/rails_app/rails_7.0/README.md +24 -0
- data/rails_app/rails_7.0/Rakefile +8 -0
- data/rails_app/rails_7.0/app/controllers/application_controller.rb +4 -0
- data/rails_app/rails_7.0/app/models/application_record.rb +5 -0
- data/rails_app/rails_7.0/bin/bundle +122 -0
- data/rails_app/rails_7.0/bin/rails +6 -0
- data/rails_app/rails_7.0/bin/rake +6 -0
- data/rails_app/rails_7.0/bin/setup +35 -0
- data/rails_app/rails_7.0/config/application.rb +41 -0
- data/rails_app/rails_7.0/config/boot.rb +5 -0
- data/rails_app/rails_7.0/config/credentials.yml.enc +1 -0
- data/rails_app/rails_7.0/config/database.yml +25 -0
- data/rails_app/rails_7.0/config/environment.rb +7 -0
- data/rails_app/rails_7.0/config/environments/development.rb +58 -0
- data/rails_app/rails_7.0/config/environments/production.rb +70 -0
- data/rails_app/rails_7.0/config/environments/test.rb +52 -0
- data/rails_app/rails_7.0/config/initializers/cors.rb +17 -0
- data/rails_app/rails_7.0/config/initializers/filter_parameter_logging.rb +8 -0
- data/rails_app/rails_7.0/config/initializers/inflections.rb +17 -0
- data/rails_app/rails_7.0/config/locales/en.yml +33 -0
- data/rails_app/rails_7.0/config/routes.rb +8 -0
- data/rails_app/rails_7.0/config.ru +8 -0
- data/rails_app/rails_7.0/db/seeds.rb +8 -0
- data/rails_app/rails_7.0/public/robots.txt +1 -0
- data/rails_app/rails_7.0/spec/rails_helper.rb +14 -0
- data/rails_app/rails_7.0/spec/spec_helper.rb +13 -0
- metadata +36 -6
- data/.dependabot/config.yml +0 -34
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ../..
|
3
3
|
specs:
|
4
|
-
my_api_client (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.
|
14
|
-
actionpack (= 6.0.
|
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.
|
18
|
-
actionpack (= 6.0.
|
19
|
-
activejob (= 6.0.
|
20
|
-
activerecord (= 6.0.
|
21
|
-
activestorage (= 6.0.
|
22
|
-
activesupport (= 6.0.
|
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.
|
25
|
-
actionpack (= 6.0.
|
26
|
-
actionview (= 6.0.
|
27
|
-
activejob (= 6.0.
|
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.
|
31
|
-
actionview (= 6.0.
|
32
|
-
activesupport (= 6.0.
|
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.
|
38
|
-
actionpack (= 6.0.
|
39
|
-
activerecord (= 6.0.
|
40
|
-
activestorage (= 6.0.
|
41
|
-
activesupport (= 6.0.
|
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.
|
44
|
-
activesupport (= 6.0.
|
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.
|
50
|
-
activesupport (= 6.0.
|
49
|
+
activejob (6.0.4.8)
|
50
|
+
activesupport (= 6.0.4.8)
|
51
51
|
globalid (>= 0.3.6)
|
52
|
-
activemodel (6.0.
|
53
|
-
activesupport (= 6.0.
|
54
|
-
activerecord (6.0.
|
55
|
-
activemodel (= 6.0.
|
56
|
-
activesupport (= 6.0.
|
57
|
-
activestorage (6.0.
|
58
|
-
actionpack (= 6.0.
|
59
|
-
activejob (= 6.0.
|
60
|
-
activerecord (= 6.0.
|
61
|
-
marcel (~> 0.
|
62
|
-
activesupport (6.0.
|
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.
|
68
|
+
addressable (2.8.0)
|
69
69
|
public_suffix (>= 2.0.2, < 5.0)
|
70
|
-
bootsnap (1.
|
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.
|
74
|
+
concurrent-ruby (1.1.10)
|
75
75
|
crass (1.0.6)
|
76
76
|
diff-lcs (1.4.4)
|
77
|
-
erubi (1.
|
78
|
-
faraday (
|
79
|
-
faraday-net_http (~>
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
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.
|
86
|
+
jsonpath (1.1.2)
|
88
87
|
multi_json
|
89
|
-
loofah (2.
|
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.
|
95
|
-
mimemagic (~> 0.3.2)
|
93
|
+
marcel (1.0.2)
|
96
94
|
method_source (1.0.0)
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
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
|
-
|
104
|
-
|
105
|
-
|
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
|
-
|
109
|
-
|
110
|
-
|
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.
|
114
|
-
actioncable (= 6.0.
|
115
|
-
actionmailbox (= 6.0.
|
116
|
-
actionmailer (= 6.0.
|
117
|
-
actionpack (= 6.0.
|
118
|
-
actiontext (= 6.0.
|
119
|
-
actionview (= 6.0.
|
120
|
-
activejob (= 6.0.
|
121
|
-
activemodel (= 6.0.
|
122
|
-
activerecord (= 6.0.
|
123
|
-
activestorage (= 6.0.
|
124
|
-
activesupport (= 6.0.
|
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.
|
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.
|
128
|
+
rails-html-sanitizer (1.4.2)
|
132
129
|
loofah (~> 2.3)
|
133
|
-
railties (6.0.
|
134
|
-
actionpack (= 6.0.
|
135
|
-
activesupport (= 6.0.
|
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.
|
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.
|
158
|
-
sawyer (0.
|
154
|
+
ruby2_keywords (0.0.5)
|
155
|
+
sawyer (0.9.1)
|
159
156
|
addressable (>= 2.3.5)
|
160
|
-
faraday (
|
157
|
+
faraday (>= 0.17.3, < 3)
|
161
158
|
spring (2.1.1)
|
162
|
-
sprockets (4.0.
|
159
|
+
sprockets (4.0.3)
|
163
160
|
concurrent-ruby (~> 1.0)
|
164
161
|
rack (> 1, < 3)
|
165
|
-
sprockets-rails (3.
|
166
|
-
actionpack (>=
|
167
|
-
activesupport (>=
|
162
|
+
sprockets-rails (3.4.2)
|
163
|
+
actionpack (>= 5.2)
|
164
|
+
activesupport (>= 5.2)
|
168
165
|
sprockets (>= 3.0.0)
|
169
|
-
thor (1.
|
166
|
+
thor (1.2.1)
|
170
167
|
thread_safe (0.3.6)
|
171
|
-
tzinfo (1.2.
|
168
|
+
tzinfo (1.2.9)
|
172
169
|
thread_safe (~> 0.1)
|
173
|
-
websocket-driver (0.7.
|
170
|
+
websocket-driver (0.7.5)
|
174
171
|
websocket-extensions (>= 0.1.0)
|
175
172
|
websocket-extensions (0.1.5)
|
176
|
-
zeitwerk (2.4
|
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.
|
188
|
+
2.2.4
|
data/rails_app/rails_6.1/Gemfile
CHANGED
@@ -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: [
|
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.
|
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.
|
14
|
-
actionpack (= 6.1.
|
15
|
-
activesupport (= 6.1.
|
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.
|
19
|
-
actionpack (= 6.1.
|
20
|
-
activejob (= 6.1.
|
21
|
-
activerecord (= 6.1.
|
22
|
-
activestorage (= 6.1.
|
23
|
-
activesupport (= 6.1.
|
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.
|
26
|
-
actionpack (= 6.1.
|
27
|
-
actionview (= 6.1.
|
28
|
-
activejob (= 6.1.
|
29
|
-
activesupport (= 6.1.
|
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.
|
33
|
-
actionview (= 6.1.
|
34
|
-
activesupport (= 6.1.
|
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.
|
40
|
-
actionpack (= 6.1.
|
41
|
-
activerecord (= 6.1.
|
42
|
-
activestorage (= 6.1.
|
43
|
-
activesupport (= 6.1.
|
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.
|
46
|
-
activesupport (= 6.1.
|
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.
|
52
|
-
activesupport (= 6.1.
|
51
|
+
activejob (6.1.5.1)
|
52
|
+
activesupport (= 6.1.5.1)
|
53
53
|
globalid (>= 0.3.6)
|
54
|
-
activemodel (6.1.
|
55
|
-
activesupport (= 6.1.
|
56
|
-
activerecord (6.1.
|
57
|
-
activemodel (= 6.1.
|
58
|
-
activesupport (= 6.1.
|
59
|
-
activestorage (6.1.
|
60
|
-
actionpack (= 6.1.
|
61
|
-
activejob (= 6.1.
|
62
|
-
activerecord (= 6.1.
|
63
|
-
activesupport (= 6.1.
|
64
|
-
marcel (~> 0
|
65
|
-
|
66
|
-
activesupport (6.1.
|
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.
|
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.
|
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 (
|
81
|
-
faraday-net_http (~>
|
82
|
-
|
83
|
-
|
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.
|
87
|
-
activesupport (>=
|
88
|
-
i18n (1.
|
85
|
+
globalid (1.0.0)
|
86
|
+
activesupport (>= 5.0)
|
87
|
+
i18n (1.10.0)
|
89
88
|
concurrent-ruby (~> 1.0)
|
90
|
-
jsonpath (1.1.
|
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.
|
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.
|
101
|
-
mimemagic (~> 0.3.2)
|
99
|
+
marcel (1.0.2)
|
102
100
|
method_source (1.0.0)
|
103
|
-
|
104
|
-
|
105
|
-
|
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
|
-
|
109
|
-
|
110
|
-
|
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.
|
114
|
-
racc (1.
|
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.
|
119
|
-
actioncable (= 6.1.
|
120
|
-
actionmailbox (= 6.1.
|
121
|
-
actionmailer (= 6.1.
|
122
|
-
actionpack (= 6.1.
|
123
|
-
actiontext (= 6.1.
|
124
|
-
actionview (= 6.1.
|
125
|
-
activejob (= 6.1.
|
126
|
-
activemodel (= 6.1.
|
127
|
-
activerecord (= 6.1.
|
128
|
-
activestorage (= 6.1.
|
129
|
-
activesupport (= 6.1.
|
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.
|
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.
|
132
|
+
rails-html-sanitizer (1.4.2)
|
137
133
|
loofah (~> 2.3)
|
138
|
-
railties (6.1.
|
139
|
-
actionpack (= 6.1.
|
140
|
-
activesupport (= 6.1.
|
134
|
+
railties (6.1.5.1)
|
135
|
+
actionpack (= 6.1.5.1)
|
136
|
+
activesupport (= 6.1.5.1)
|
141
137
|
method_source
|
142
|
-
rake (>=
|
138
|
+
rake (>= 12.2)
|
143
139
|
thor (~> 1.0)
|
144
|
-
rake (13.0.
|
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.
|
166
|
-
sawyer (0.
|
161
|
+
ruby2_keywords (0.0.5)
|
162
|
+
sawyer (0.9.1)
|
167
163
|
addressable (>= 2.3.5)
|
168
|
-
faraday (
|
169
|
-
sprockets (4.0.
|
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.
|
173
|
-
actionpack (>=
|
174
|
-
activesupport (>=
|
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.
|
173
|
+
thor (1.2.1)
|
178
174
|
tzinfo (2.0.4)
|
179
175
|
concurrent-ruby (~> 1.0)
|
180
|
-
websocket-driver (0.7.
|
176
|
+
websocket-driver (0.7.5)
|
181
177
|
websocket-extensions (>= 0.1.0)
|
182
178
|
websocket-extensions (0.1.5)
|
183
|
-
zeitwerk (2.4
|
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.
|
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
|
6
|
+
require_relative 'config/application'
|
5
7
|
|
6
8
|
Rails.application.load_tasks
|