Showing
2 changed files
with
8 additions
and
5 deletions
... | ... | @@ -68,7 +68,7 @@ GEM |
68 | 68 | concurrent-ruby (1.1.9) |
69 | 69 | crass (1.0.6) |
70 | 70 | erubi (1.10.0) |
71 | - ffi (1.15.3) | |
71 | + ffi (1.15.3-x64-mingw32) | |
72 | 72 | globalid (0.5.1) |
73 | 73 | activesupport (>= 5.0) |
74 | 74 | i18n (1.8.10) |
... | ... | @@ -86,9 +86,9 @@ GEM |
86 | 86 | mini_mime (1.1.0) |
87 | 87 | minitest (5.14.4) |
88 | 88 | msgpack (1.4.2) |
89 | - mysql2 (0.5.3) | |
89 | + mysql2 (0.5.3-x64-mingw32) | |
90 | 90 | nio4r (2.5.7) |
91 | - nokogiri (1.11.7-x86_64-linux) | |
91 | + nokogiri (1.11.7-x64-mingw32) | |
92 | 92 | racc (~> 1.4) |
93 | 93 | parallel (1.20.1) |
94 | 94 | parser (3.0.2.0) |
... | ... | @@ -155,6 +155,8 @@ GEM |
155 | 155 | thor (1.1.0) |
156 | 156 | tzinfo (2.0.4) |
157 | 157 | concurrent-ruby (~> 1.0) |
158 | + tzinfo-data (1.2021.1) | |
159 | + tzinfo (>= 1.0.0) | |
158 | 160 | unicode-display_width (2.0.0) |
159 | 161 | websocket-driver (0.7.5) |
160 | 162 | websocket-extensions (>= 0.1.0) |
... | ... | @@ -162,6 +164,7 @@ GEM |
162 | 164 | zeitwerk (2.4.2) |
163 | 165 | |
164 | 166 | PLATFORMS |
167 | + x64-mingw32 | |
165 | 168 | x86_64-linux |
166 | 169 | |
167 | 170 | DEPENDENCIES | ... | ... |
1 | 1 | # frozen_string_literal: true |
2 | 2 | |
3 | 3 | require_relative 'boot' |
4 | - | |
4 | +eme | |
5 | 5 | require 'rails' |
6 | 6 | # Pick the frameworks you want: |
7 | 7 | require 'active_model/railtie' |
... | ... | @@ -22,7 +22,7 @@ require 'rails/test_unit/railtie' |
22 | 22 | Bundler.require(*Rails.groups) |
23 | 23 | |
24 | 24 | module AutoLogsApi |
25 | - class Application < Rails::Application | |
25 | + class Application < Rails::Application # rubocop:todo Style/Documentation | |
26 | 26 | # Initialize configuration defaults for originally generated Rails version. |
27 | 27 | config.load_defaults 6.1 |
28 | 28 | ... | ... |