my_api_client 0.18.0 → 0.22.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 +50 -120
- data/.gem_comet.yml +13 -2
- data/.github/dependabot.yml +32 -0
- data/.rubocop.yml +1 -1
- data/.rubocop_todo.yml +1 -15
- data/CHANGELOG.md +73 -86
- data/Gemfile +2 -0
- data/Gemfile.lock +75 -57
- data/README.jp.md +79 -15
- data/README.md +392 -8
- 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_6.1.gemfile +15 -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/base.rb +2 -9
- data/lib/my_api_client/integrations/bugsnag.rb +1 -1
- 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 +108 -99
- data/my_api/app/controllers/pagination_controller.rb +2 -2
- data/my_api/public/index.html +2 -2
- data/my_api/spec/spec_helper.rb +1 -1
- data/my_api_client.gemspec +6 -3
- 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 +95 -79
- 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 +8 -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 +122 -0
- data/rails_app/rails_6.1/bin/rails +6 -0
- data/rails_app/rails_6.1/bin/rake +6 -0
- data/rails_app/rails_6.1/bin/setup +35 -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/config.ru +8 -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
- data/rails_app/rails_7.0/Gemfile +13 -0
- data/rails_app/rails_7.0/Gemfile.lock +147 -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 +83 -11
- data/.dependabot/config.yml +0 -34
- data/.rubocop_challenge.yml +0 -5
@@ -1,8 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ../..
|
3
3
|
specs:
|
4
|
-
my_api_client (0.
|
5
|
-
activesupport (>= 5.
|
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.6.1)
|
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.12.5)
|
99
|
+
mini_portile2 (~> 2.6.1)
|
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 (>= 5.
|
4
|
+
my_api_client (0.21.0)
|
5
|
+
activesupport (>= 5.2.0)
|
6
6
|
faraday (>= 0.17.1)
|
7
7
|
jsonpath
|
8
8
|
sawyer (>= 0.8.2)
|
@@ -10,129 +10,145 @@ 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
|
-
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.9)
|
75
75
|
crass (1.0.6)
|
76
76
|
diff-lcs (1.4.4)
|
77
|
-
erubi (1.
|
78
|
-
faraday (1.0
|
77
|
+
erubi (1.10.0)
|
78
|
+
faraday (1.8.0)
|
79
|
+
faraday-em_http (~> 1.0)
|
80
|
+
faraday-em_synchrony (~> 1.0)
|
81
|
+
faraday-excon (~> 1.1)
|
82
|
+
faraday-httpclient (~> 1.0.1)
|
83
|
+
faraday-net_http (~> 1.0)
|
84
|
+
faraday-net_http_persistent (~> 1.1)
|
85
|
+
faraday-patron (~> 1.0)
|
86
|
+
faraday-rack (~> 1.0)
|
79
87
|
multipart-post (>= 1.2, < 3)
|
88
|
+
ruby2_keywords (>= 0.0.4)
|
89
|
+
faraday-em_http (1.0.0)
|
90
|
+
faraday-em_synchrony (1.0.0)
|
91
|
+
faraday-excon (1.1.0)
|
92
|
+
faraday-httpclient (1.0.1)
|
93
|
+
faraday-net_http (1.0.1)
|
94
|
+
faraday-net_http_persistent (1.2.0)
|
95
|
+
faraday-patron (1.0.0)
|
96
|
+
faraday-rack (1.0.0)
|
80
97
|
globalid (0.4.2)
|
81
98
|
activesupport (>= 4.2.0)
|
82
|
-
i18n (1.8.
|
99
|
+
i18n (1.8.10)
|
83
100
|
concurrent-ruby (~> 1.0)
|
84
|
-
jsonpath (1.0
|
101
|
+
jsonpath (1.1.0)
|
85
102
|
multi_json
|
86
|
-
|
87
|
-
loofah (2.7.0)
|
103
|
+
loofah (2.10.0)
|
88
104
|
crass (~> 1.0.2)
|
89
105
|
nokogiri (>= 1.5.9)
|
90
106
|
mail (2.7.1)
|
91
107
|
mini_mime (>= 0.1.1)
|
92
|
-
marcel (0.
|
93
|
-
mimemagic (~> 0.3.2)
|
108
|
+
marcel (1.0.1)
|
94
109
|
method_source (1.0.0)
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
msgpack (1.3.3)
|
110
|
+
mini_mime (1.1.0)
|
111
|
+
mini_portile2 (2.6.1)
|
112
|
+
minitest (5.14.4)
|
113
|
+
msgpack (1.4.2)
|
100
114
|
multi_json (1.15.0)
|
101
115
|
multipart-post (2.1.1)
|
102
|
-
nio4r (2.5.
|
103
|
-
nokogiri (1.
|
104
|
-
mini_portile2 (~> 2.
|
116
|
+
nio4r (2.5.7)
|
117
|
+
nokogiri (1.12.5)
|
118
|
+
mini_portile2 (~> 2.6.1)
|
119
|
+
racc (~> 1.4)
|
105
120
|
public_suffix (4.0.6)
|
121
|
+
racc (1.5.2)
|
106
122
|
rack (2.2.3)
|
107
123
|
rack-test (1.1.0)
|
108
124
|
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.
|
125
|
+
rails (6.0.3.7)
|
126
|
+
actioncable (= 6.0.3.7)
|
127
|
+
actionmailbox (= 6.0.3.7)
|
128
|
+
actionmailer (= 6.0.3.7)
|
129
|
+
actionpack (= 6.0.3.7)
|
130
|
+
actiontext (= 6.0.3.7)
|
131
|
+
actionview (= 6.0.3.7)
|
132
|
+
activejob (= 6.0.3.7)
|
133
|
+
activemodel (= 6.0.3.7)
|
134
|
+
activerecord (= 6.0.3.7)
|
135
|
+
activestorage (= 6.0.3.7)
|
136
|
+
activesupport (= 6.0.3.7)
|
121
137
|
bundler (>= 1.3.0)
|
122
|
-
railties (= 6.0.3.
|
138
|
+
railties (= 6.0.3.7)
|
123
139
|
sprockets-rails (>= 2.0.0)
|
124
140
|
rails-dom-testing (2.0.3)
|
125
141
|
activesupport (>= 4.2.0)
|
126
142
|
nokogiri (>= 1.6)
|
127
143
|
rails-html-sanitizer (1.3.0)
|
128
144
|
loofah (~> 2.3)
|
129
|
-
railties (6.0.3.
|
130
|
-
actionpack (= 6.0.3.
|
131
|
-
activesupport (= 6.0.3.
|
145
|
+
railties (6.0.3.7)
|
146
|
+
actionpack (= 6.0.3.7)
|
147
|
+
activesupport (= 6.0.3.7)
|
132
148
|
method_source
|
133
149
|
rake (>= 0.8.7)
|
134
150
|
thor (>= 0.20.3, < 2.0)
|
135
|
-
rake (13.0.
|
151
|
+
rake (13.0.3)
|
136
152
|
rspec-core (3.9.2)
|
137
153
|
rspec-support (~> 3.9.3)
|
138
154
|
rspec-expectations (3.9.2)
|
@@ -150,6 +166,7 @@ GEM
|
|
150
166
|
rspec-mocks (~> 3.9)
|
151
167
|
rspec-support (~> 3.9)
|
152
168
|
rspec-support (3.9.3)
|
169
|
+
ruby2_keywords (0.0.5)
|
153
170
|
sawyer (0.8.2)
|
154
171
|
addressable (>= 2.3.5)
|
155
172
|
faraday (> 0.8, < 2.0)
|
@@ -161,15 +178,14 @@ GEM
|
|
161
178
|
actionpack (>= 4.0)
|
162
179
|
activesupport (>= 4.0)
|
163
180
|
sprockets (>= 3.0.0)
|
164
|
-
thor (1.0
|
181
|
+
thor (1.1.0)
|
165
182
|
thread_safe (0.3.6)
|
166
|
-
|
167
|
-
tzinfo (1.2.7)
|
183
|
+
tzinfo (1.2.9)
|
168
184
|
thread_safe (~> 0.1)
|
169
|
-
websocket-driver (0.7.
|
185
|
+
websocket-driver (0.7.4)
|
170
186
|
websocket-extensions (>= 0.1.0)
|
171
187
|
websocket-extensions (0.1.5)
|
172
|
-
zeitwerk (2.4.
|
188
|
+
zeitwerk (2.4.2)
|
173
189
|
|
174
190
|
PLATFORMS
|
175
191
|
ruby
|
@@ -183,4 +199,4 @@ DEPENDENCIES
|
|
183
199
|
spring
|
184
200
|
|
185
201
|
BUNDLED WITH
|
186
|
-
2.
|
202
|
+
2.2.4
|
@@ -62,7 +62,7 @@ Rails.application.configure do
|
|
62
62
|
# config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name')
|
63
63
|
|
64
64
|
if ENV['RAILS_LOG_TO_STDOUT'].present?
|
65
|
-
logger = ActiveSupport::Logger.new(
|
65
|
+
logger = ActiveSupport::Logger.new($stdout)
|
66
66
|
logger.formatter = config.log_formatter
|
67
67
|
config.logger = ActiveSupport::TaggedLogging.new(logger)
|
68
68
|
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
|
2
|
+
#
|
3
|
+
# If you find yourself ignoring temporary files generated by your text editor
|
4
|
+
# or operating system, you probably want to add a global ignore instead:
|
5
|
+
# git config --global core.excludesfile '~/.gitignore_global'
|
6
|
+
|
7
|
+
# Ignore bundler config.
|
8
|
+
/.bundle
|
9
|
+
|
10
|
+
# Ignore the default SQLite database.
|
11
|
+
/db/*.sqlite3
|
12
|
+
/db/*.sqlite3-*
|
13
|
+
|
14
|
+
# Ignore all logfiles and tempfiles.
|
15
|
+
/log/*
|
16
|
+
/tmp/*
|
17
|
+
!/log/.keep
|
18
|
+
!/tmp/.keep
|
19
|
+
|
20
|
+
# Ignore pidfiles, but keep the directory.
|
21
|
+
/tmp/pids/*
|
22
|
+
!/tmp/pids/
|
23
|
+
!/tmp/pids/.keep
|
24
|
+
|
25
|
+
.byebug_history
|
26
|
+
|
27
|
+
# Ignore master key for decrypting credentials and more.
|
28
|
+
/config/master.key
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
5
|
+
|
6
|
+
gem 'my_api_client', path: '../..'
|
7
|
+
gem 'rails', '~> 6.1.0'
|
8
|
+
gem 'sqlite3', '~> 1.4'
|
9
|
+
|
10
|
+
group :development, :test do
|
11
|
+
gem 'byebug', platforms: %i[mri mingw x64_mingw]
|
12
|
+
gem 'rspec-rails'
|
13
|
+
end
|
14
|
+
|
15
|
+
group :development do
|
16
|
+
gem 'listen', '~> 3.3'
|
17
|
+
end
|