my_api_client 0.18.0 → 0.22.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 (110) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +50 -120
  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 +1 -15
  7. data/CHANGELOG.md +73 -86
  8. data/Gemfile +2 -0
  9. data/Gemfile.lock +75 -57
  10. data/README.jp.md +79 -15
  11. data/README.md +392 -8
  12. data/gemfiles/rails_5.0.gemfile +1 -0
  13. data/gemfiles/rails_5.1.gemfile +1 -0
  14. data/gemfiles/rails_5.2.gemfile +1 -0
  15. data/gemfiles/rails_6.0.gemfile +1 -0
  16. data/gemfiles/rails_6.1.gemfile +15 -0
  17. data/gemfiles/rails_7.0.gemfile +15 -0
  18. data/lib/generators/rails/templates/api_client.rb.erb +3 -5
  19. data/lib/generators/rspec/templates/api_client_spec.rb.erb +0 -8
  20. data/lib/my_api_client/base.rb +2 -9
  21. data/lib/my_api_client/integrations/bugsnag.rb +1 -1
  22. data/lib/my_api_client/request.rb +1 -1
  23. data/lib/my_api_client/rspec/matchers/be_handled_as_an_error.rb +3 -3
  24. data/lib/my_api_client/rspec/matchers/request_to.rb +1 -1
  25. data/lib/my_api_client/rspec/stub.rb +40 -15
  26. data/lib/my_api_client/version.rb +1 -1
  27. data/my_api/.ruby-version +1 -1
  28. data/my_api/Gemfile +3 -0
  29. data/my_api/Gemfile.lock +108 -99
  30. data/my_api/app/controllers/pagination_controller.rb +2 -2
  31. data/my_api/public/index.html +2 -2
  32. data/my_api/spec/spec_helper.rb +1 -1
  33. data/my_api_client.gemspec +6 -3
  34. data/rails_app/rails_5.2/Gemfile.lock +73 -64
  35. data/rails_app/rails_5.2/config/environments/production.rb +1 -1
  36. data/rails_app/rails_6.0/Gemfile.lock +95 -79
  37. data/rails_app/rails_6.0/config/environments/production.rb +1 -1
  38. data/rails_app/rails_6.1/.gitattributes +8 -0
  39. data/rails_app/rails_6.1/.gitignore +28 -0
  40. data/rails_app/rails_6.1/.rspec +3 -0
  41. data/rails_app/rails_6.1/Gemfile +17 -0
  42. data/rails_app/rails_6.1/Gemfile.lock +203 -0
  43. data/rails_app/rails_6.1/README.md +24 -0
  44. data/rails_app/rails_6.1/Rakefile +8 -0
  45. data/rails_app/rails_6.1/app/controllers/application_controller.rb +4 -0
  46. data/rails_app/rails_6.1/app/controllers/concerns/.keep +0 -0
  47. data/rails_app/rails_6.1/app/javascript/.keep +0 -0
  48. data/rails_app/rails_6.1/app/models/application_record.rb +5 -0
  49. data/rails_app/rails_6.1/app/models/concerns/.keep +0 -0
  50. data/rails_app/rails_6.1/bin/bundle +122 -0
  51. data/rails_app/rails_6.1/bin/rails +6 -0
  52. data/rails_app/rails_6.1/bin/rake +6 -0
  53. data/rails_app/rails_6.1/bin/setup +35 -0
  54. data/rails_app/rails_6.1/config/application.rb +42 -0
  55. data/rails_app/rails_6.1/config/boot.rb +5 -0
  56. data/rails_app/rails_6.1/config/credentials.yml.enc +1 -0
  57. data/rails_app/rails_6.1/config/database.yml +25 -0
  58. data/rails_app/rails_6.1/config/environment.rb +7 -0
  59. data/rails_app/rails_6.1/config/environments/development.rb +59 -0
  60. data/rails_app/rails_6.1/config/environments/production.rb +97 -0
  61. data/rails_app/rails_6.1/config/environments/test.rb +51 -0
  62. data/rails_app/rails_6.1/config/initializers/application_controller_renderer.rb +9 -0
  63. data/rails_app/rails_6.1/config/initializers/backtrace_silencers.rb +10 -0
  64. data/rails_app/rails_6.1/config/initializers/cors.rb +17 -0
  65. data/rails_app/rails_6.1/config/initializers/filter_parameter_logging.rb +8 -0
  66. data/rails_app/rails_6.1/config/initializers/inflections.rb +17 -0
  67. data/rails_app/rails_6.1/config/initializers/mime_types.rb +5 -0
  68. data/rails_app/rails_6.1/config/initializers/wrap_parameters.rb +16 -0
  69. data/rails_app/rails_6.1/config/locales/en.yml +33 -0
  70. data/rails_app/rails_6.1/config/routes.rb +5 -0
  71. data/rails_app/rails_6.1/config.ru +8 -0
  72. data/rails_app/rails_6.1/db/seeds.rb +8 -0
  73. data/rails_app/rails_6.1/lib/tasks/.keep +0 -0
  74. data/rails_app/rails_6.1/public/robots.txt +1 -0
  75. data/rails_app/rails_6.1/spec/rails_helper.rb +14 -0
  76. data/rails_app/rails_6.1/spec/spec_helper.rb +13 -0
  77. data/rails_app/rails_6.1/tmp/.keep +0 -0
  78. data/rails_app/rails_6.1/tmp/pids/.keep +0 -0
  79. data/rails_app/rails_6.1/vendor/.keep +0 -0
  80. data/rails_app/rails_7.0/Gemfile +13 -0
  81. data/rails_app/rails_7.0/Gemfile.lock +147 -0
  82. data/rails_app/rails_7.0/README.md +24 -0
  83. data/rails_app/rails_7.0/Rakefile +8 -0
  84. data/rails_app/rails_7.0/app/controllers/application_controller.rb +4 -0
  85. data/rails_app/rails_7.0/app/models/application_record.rb +5 -0
  86. data/rails_app/rails_7.0/bin/bundle +122 -0
  87. data/rails_app/rails_7.0/bin/rails +6 -0
  88. data/rails_app/rails_7.0/bin/rake +6 -0
  89. data/rails_app/rails_7.0/bin/setup +35 -0
  90. data/rails_app/rails_7.0/config/application.rb +41 -0
  91. data/rails_app/rails_7.0/config/boot.rb +5 -0
  92. data/rails_app/rails_7.0/config/credentials.yml.enc +1 -0
  93. data/rails_app/rails_7.0/config/database.yml +25 -0
  94. data/rails_app/rails_7.0/config/environment.rb +7 -0
  95. data/rails_app/rails_7.0/config/environments/development.rb +58 -0
  96. data/rails_app/rails_7.0/config/environments/production.rb +70 -0
  97. data/rails_app/rails_7.0/config/environments/test.rb +52 -0
  98. data/rails_app/rails_7.0/config/initializers/cors.rb +17 -0
  99. data/rails_app/rails_7.0/config/initializers/filter_parameter_logging.rb +8 -0
  100. data/rails_app/rails_7.0/config/initializers/inflections.rb +17 -0
  101. data/rails_app/rails_7.0/config/locales/en.yml +33 -0
  102. data/rails_app/rails_7.0/config/routes.rb +8 -0
  103. data/rails_app/rails_7.0/config.ru +8 -0
  104. data/rails_app/rails_7.0/db/seeds.rb +8 -0
  105. data/rails_app/rails_7.0/public/robots.txt +1 -0
  106. data/rails_app/rails_7.0/spec/rails_helper.rb +14 -0
  107. data/rails_app/rails_7.0/spec/spec_helper.rb +13 -0
  108. metadata +83 -11
  109. data/.dependabot/config.yml +0 -34
  110. data/.rubocop_challenge.yml +0 -5
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- my_api_client (0.17.0)
5
- activesupport (>= 5.0.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.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.4)
90
- nokogiri (1.10.10)
91
- mini_portile2 (~> 2.4.0)
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.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 (>= 5.0.0)
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.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
- 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.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.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.5)
99
+ i18n (1.8.10)
83
100
  concurrent-ruby (~> 1.0)
84
- jsonpath (1.0.5)
101
+ jsonpath (1.1.0)
85
102
  multi_json
86
- to_regexp (~> 0.2.1)
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.3.3)
93
- mimemagic (~> 0.3.2)
108
+ marcel (1.0.1)
94
109
  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)
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.4)
103
- nokogiri (1.10.10)
104
- mini_portile2 (~> 2.4.0)
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.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)
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.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.3)
130
- actionpack (= 6.0.3.3)
131
- activesupport (= 6.0.3.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.1)
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.1)
181
+ thor (1.1.0)
165
182
  thread_safe (0.3.6)
166
- to_regexp (0.2.1)
167
- tzinfo (1.2.7)
183
+ tzinfo (1.2.9)
168
184
  thread_safe (~> 0.1)
169
- websocket-driver (0.7.3)
185
+ websocket-driver (0.7.4)
170
186
  websocket-extensions (>= 0.1.0)
171
187
  websocket-extensions (0.1.5)
172
- zeitwerk (2.4.0)
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.1.4
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(STDOUT)
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,8 @@
1
+ # See https://git-scm.com/docs/gitattributes for more about git attribute files.
2
+
3
+ # Mark the database schema as having been generated.
4
+ db/schema.rb linguist-generated
5
+
6
+
7
+ # Mark any vendored files as having been vendored.
8
+ vendor/* linguist-vendored
@@ -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,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -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