my_api_client 0.17.0 → 0.21.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 +32 -158
- data/.gem_comet.yml +13 -2
- data/.github/dependabot.yml +32 -0
- data/.rubocop.yml +1 -1
- data/.rubocop_todo.yml +22 -12
- data/CHANGELOG.md +61 -74
- data/Gemfile +0 -3
- data/Gemfile.lock +79 -61
- data/README.jp.md +71 -7
- 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_4.2.gemfile → rails_6.1.gemfile} +1 -1
- data/lib/generators/rails/USAGE +1 -1
- data/lib/generators/rails/api_client_generator.rb +6 -0
- data/lib/generators/rails/templates/api_client.rb.erb +1 -1
- data/lib/generators/rspec/USAGE +1 -1
- data/lib/generators/rspec/api_client_generator.rb +6 -0
- data/lib/generators/rspec/templates/api_client_spec.rb.erb +1 -1
- data/lib/my_api_client/base.rb +2 -9
- data/lib/my_api_client/integrations/bugsnag.rb +1 -1
- data/lib/my_api_client/params/params.rb +1 -3
- data/lib/my_api_client/request.rb +1 -1
- data/lib/my_api_client/rspec/matchers/be_handled_as_an_error.rb +3 -3
- data/lib/my_api_client/rspec/matchers/request_to.rb +1 -1
- data/lib/my_api_client/rspec/stub.rb +40 -15
- data/lib/my_api_client/version.rb +1 -1
- data/my_api/.ruby-version +1 -1
- data/my_api/Gemfile +3 -0
- data/my_api/Gemfile.lock +112 -105
- data/my_api/app/controllers/pagination_controller.rb +2 -2
- data/my_api/public/index.html +2 -2
- data/my_api_client.gemspec +3 -3
- data/rails_app/rails_5.2/Gemfile +0 -1
- data/rails_app/rails_5.2/Gemfile.lock +73 -64
- data/rails_app/rails_5.2/config/environments/production.rb +1 -1
- data/rails_app/rails_6.0/Gemfile.lock +87 -77
- data/rails_app/rails_6.0/config/environments/production.rb +1 -1
- data/rails_app/rails_6.1/.gitattributes +8 -0
- data/rails_app/rails_6.1/.gitignore +28 -0
- data/rails_app/rails_6.1/.rspec +3 -0
- data/rails_app/rails_6.1/Gemfile +17 -0
- data/rails_app/rails_6.1/Gemfile.lock +203 -0
- data/rails_app/rails_6.1/README.md +24 -0
- data/rails_app/rails_6.1/Rakefile +6 -0
- data/rails_app/rails_6.1/app/controllers/application_controller.rb +4 -0
- data/rails_app/rails_6.1/app/controllers/concerns/.keep +0 -0
- data/rails_app/rails_6.1/app/javascript/.keep +0 -0
- data/rails_app/rails_6.1/app/models/application_record.rb +5 -0
- data/rails_app/rails_6.1/app/models/concerns/.keep +0 -0
- data/rails_app/rails_6.1/bin/bundle +114 -0
- data/rails_app/rails_6.1/bin/rails +4 -0
- data/rails_app/rails_6.1/bin/rake +4 -0
- data/rails_app/rails_6.1/bin/setup +33 -0
- data/rails_app/rails_6.1/config.ru +6 -0
- data/rails_app/rails_6.1/config/application.rb +42 -0
- data/rails_app/rails_6.1/config/boot.rb +5 -0
- data/rails_app/rails_6.1/config/credentials.yml.enc +1 -0
- data/rails_app/rails_6.1/config/database.yml +25 -0
- data/rails_app/rails_6.1/config/environment.rb +7 -0
- data/rails_app/rails_6.1/config/environments/development.rb +59 -0
- data/rails_app/rails_6.1/config/environments/production.rb +97 -0
- data/rails_app/rails_6.1/config/environments/test.rb +51 -0
- data/rails_app/rails_6.1/config/initializers/application_controller_renderer.rb +9 -0
- data/rails_app/rails_6.1/config/initializers/backtrace_silencers.rb +10 -0
- data/rails_app/rails_6.1/config/initializers/cors.rb +17 -0
- data/rails_app/rails_6.1/config/initializers/filter_parameter_logging.rb +8 -0
- data/rails_app/rails_6.1/config/initializers/inflections.rb +17 -0
- data/rails_app/rails_6.1/config/initializers/mime_types.rb +5 -0
- data/rails_app/rails_6.1/config/initializers/wrap_parameters.rb +16 -0
- data/rails_app/rails_6.1/config/locales/en.yml +33 -0
- data/rails_app/rails_6.1/config/routes.rb +5 -0
- data/rails_app/rails_6.1/db/seeds.rb +8 -0
- data/rails_app/rails_6.1/lib/tasks/.keep +0 -0
- data/rails_app/rails_6.1/public/robots.txt +1 -0
- data/rails_app/rails_6.1/spec/rails_helper.rb +14 -0
- data/rails_app/rails_6.1/spec/spec_helper.rb +13 -0
- data/rails_app/rails_6.1/tmp/.keep +0 -0
- data/rails_app/rails_6.1/tmp/pids/.keep +0 -0
- data/rails_app/rails_6.1/vendor/.keep +0 -0
- metadata +52 -11
- data/.dependabot/config.yml +0 -34
- 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 =
|
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)
|
data/my_api/public/index.html
CHANGED
@@ -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>
|
87
|
-
<strong>Ruby version:</strong> 2.
|
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>
|
data/my_api_client.gemspec
CHANGED
@@ -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.
|
25
|
+
spec.required_ruby_version = '>= 2.6.0'
|
26
26
|
|
27
|
-
spec.add_dependency 'activesupport', '>=
|
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.
|
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
|
data/rails_app/rails_5.2/Gemfile
CHANGED
@@ -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.
|
5
|
-
activesupport (>=
|
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.
|
14
|
-
actionpack (= 5.2.
|
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.
|
18
|
-
actionpack (= 5.2.
|
19
|
-
actionview (= 5.2.
|
20
|
-
activejob (= 5.2.
|
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.
|
24
|
-
actionview (= 5.2.
|
25
|
-
activesupport (= 5.2.
|
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.
|
31
|
-
activesupport (= 5.2.
|
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.
|
37
|
-
activesupport (= 5.2.
|
36
|
+
activejob (5.2.6)
|
37
|
+
activesupport (= 5.2.6)
|
38
38
|
globalid (>= 0.3.6)
|
39
|
-
activemodel (5.2.
|
40
|
-
activesupport (= 5.2.
|
41
|
-
activerecord (5.2.
|
42
|
-
activemodel (= 5.2.
|
43
|
-
activesupport (= 5.2.
|
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.
|
46
|
-
actionpack (= 5.2.
|
47
|
-
activerecord (= 5.2.
|
48
|
-
marcel (~> 0.
|
49
|
-
activesupport (5.2.
|
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.
|
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.
|
61
|
+
concurrent-ruby (1.1.9)
|
62
62
|
crass (1.0.6)
|
63
63
|
diff-lcs (1.4.4)
|
64
|
-
erubi (1.
|
65
|
-
faraday (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.
|
80
|
+
i18n (1.8.10)
|
70
81
|
concurrent-ruby (~> 1.0)
|
71
|
-
jsonpath (1.0
|
82
|
+
jsonpath (1.1.0)
|
72
83
|
multi_json
|
73
|
-
|
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.
|
80
|
-
mimemagic (~> 0.3.2)
|
89
|
+
marcel (1.0.1)
|
81
90
|
method_source (1.0.0)
|
82
|
-
|
83
|
-
|
84
|
-
|
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.
|
90
|
-
nokogiri (1.
|
91
|
-
mini_portile2 (~> 2.
|
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.
|
97
|
-
actioncable (= 5.2.
|
98
|
-
actionmailer (= 5.2.
|
99
|
-
actionpack (= 5.2.
|
100
|
-
actionview (= 5.2.
|
101
|
-
activejob (= 5.2.
|
102
|
-
activemodel (= 5.2.
|
103
|
-
activerecord (= 5.2.
|
104
|
-
activestorage (= 5.2.
|
105
|
-
activesupport (= 5.2.
|
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.
|
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.
|
115
|
-
actionpack (= 5.2.
|
116
|
-
activesupport (= 5.2.
|
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.
|
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 (
|
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
|
160
|
+
thor (1.1.0)
|
150
161
|
thread_safe (0.3.6)
|
151
|
-
|
152
|
-
tzinfo (1.2.7)
|
162
|
+
tzinfo (1.2.9)
|
153
163
|
thread_safe (~> 0.1)
|
154
|
-
websocket-driver (0.7.
|
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.
|
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(
|
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.
|
5
|
-
activesupport (>=
|
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.
|
14
|
-
actionpack (= 6.0.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.
|
18
|
-
actionpack (= 6.0.3.
|
19
|
-
activejob (= 6.0.3.
|
20
|
-
activerecord (= 6.0.3.
|
21
|
-
activestorage (= 6.0.3.
|
22
|
-
activesupport (= 6.0.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.
|
25
|
-
actionpack (= 6.0.3.
|
26
|
-
actionview (= 6.0.3.
|
27
|
-
activejob (= 6.0.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.
|
31
|
-
actionview (= 6.0.3.
|
32
|
-
activesupport (= 6.0.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.
|
38
|
-
actionpack (= 6.0.3.
|
39
|
-
activerecord (= 6.0.3.
|
40
|
-
activestorage (= 6.0.3.
|
41
|
-
activesupport (= 6.0.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.
|
44
|
-
activesupport (= 6.0.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.
|
50
|
-
activesupport (= 6.0.3.
|
49
|
+
activejob (6.0.3.7)
|
50
|
+
activesupport (= 6.0.3.7)
|
51
51
|
globalid (>= 0.3.6)
|
52
|
-
activemodel (6.0.3.
|
53
|
-
activesupport (= 6.0.3.
|
54
|
-
activerecord (6.0.3.
|
55
|
-
activemodel (= 6.0.3.
|
56
|
-
activesupport (= 6.0.3.
|
57
|
-
activestorage (6.0.3.
|
58
|
-
actionpack (= 6.0.3.
|
59
|
-
activejob (= 6.0.3.
|
60
|
-
activerecord (= 6.0.3.
|
61
|
-
marcel (~> 0.
|
62
|
-
activesupport (6.0.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.
|
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.
|
74
|
+
concurrent-ruby (1.1.9)
|
75
75
|
crass (1.0.6)
|
76
76
|
diff-lcs (1.4.4)
|
77
|
-
erubi (1.
|
78
|
-
faraday (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.
|
93
|
+
i18n (1.8.10)
|
83
94
|
concurrent-ruby (~> 1.0)
|
84
|
-
jsonpath (1.0
|
95
|
+
jsonpath (1.1.0)
|
85
96
|
multi_json
|
86
|
-
|
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.
|
93
|
-
mimemagic (~> 0.3.2)
|
102
|
+
marcel (1.0.1)
|
94
103
|
method_source (1.0.0)
|
95
|
-
|
96
|
-
|
97
|
-
|
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.
|
103
|
-
nokogiri (1.
|
104
|
-
mini_portile2 (~> 2.
|
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.
|
110
|
-
actioncable (= 6.0.3.
|
111
|
-
actionmailbox (= 6.0.3.
|
112
|
-
actionmailer (= 6.0.3.
|
113
|
-
actionpack (= 6.0.3.
|
114
|
-
actiontext (= 6.0.3.
|
115
|
-
actionview (= 6.0.3.
|
116
|
-
activejob (= 6.0.3.
|
117
|
-
activemodel (= 6.0.3.
|
118
|
-
activerecord (= 6.0.3.
|
119
|
-
activestorage (= 6.0.3.
|
120
|
-
activesupport (= 6.0.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.
|
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.
|
130
|
-
actionpack (= 6.0.3.
|
131
|
-
activesupport (= 6.0.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.
|
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
|
175
|
+
thor (1.1.0)
|
165
176
|
thread_safe (0.3.6)
|
166
|
-
|
167
|
-
tzinfo (1.2.7)
|
177
|
+
tzinfo (1.2.9)
|
168
178
|
thread_safe (~> 0.1)
|
169
|
-
websocket-driver (0.7.
|
179
|
+
websocket-driver (0.7.4)
|
170
180
|
websocket-extensions (>= 0.1.0)
|
171
181
|
websocket-extensions (0.1.5)
|
172
|
-
zeitwerk (2.4.
|
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.
|
196
|
+
2.2.4
|