redis_ui_rails 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. checksums.yaml +7 -0
  2. data/.env.example +1 -0
  3. data/.envrc +3 -0
  4. data/.gitignore +10 -0
  5. data/.rspec.example +3 -0
  6. data/Gemfile +5 -0
  7. data/README.md +86 -0
  8. data/app/assets/config/manifest.js +1 -0
  9. data/app/assets/images/redis_ui_rails/.keep +0 -0
  10. data/app/assets/stylesheets/redis_ui_rails/application.css +26 -0
  11. data/app/controllers/redis_ui_rails/application_controller.rb +4 -0
  12. data/app/controllers/redis_ui_rails/configs_controller.rb +11 -0
  13. data/app/controllers/redis_ui_rails/dashboard_controller.rb +7 -0
  14. data/app/controllers/redis_ui_rails/instances_controller.rb +12 -0
  15. data/app/controllers/redis_ui_rails/keys_controller.rb +12 -0
  16. data/app/views/layouts/redis_ui_rails/application.html.erb +13 -0
  17. data/app/views/redis_ui_rails/configs/show.html.erb +18 -0
  18. data/app/views/redis_ui_rails/dashboard/index.html.erb +23 -0
  19. data/app/views/redis_ui_rails/instances/show.html.erb +35 -0
  20. data/app/views/redis_ui_rails/keys/show.html.erb +24 -0
  21. data/app/views/shared/_instance_hero.html.erb +13 -0
  22. data/config/routes.rb +8 -0
  23. data/lib/redis_ui_rails/config.rb +64 -0
  24. data/lib/redis_ui_rails/engine.rb +12 -0
  25. data/lib/redis_ui_rails/redis_instance.rb +54 -0
  26. data/lib/redis_ui_rails/version.rb +3 -0
  27. data/lib/redis_ui_rails.rb +24 -0
  28. data/redis_ui_rails.gemspec +30 -0
  29. data/spec/feature_spec_helper.rb +9 -0
  30. data/spec/integration/dashboard_spec.rb +12 -0
  31. data/spec/integration/instance_config_spec.rb +17 -0
  32. data/spec/integration/instance_keys_spec.rb +17 -0
  33. data/spec/redis_ui_rails/config_spec.rb +60 -0
  34. data/spec/redis_ui_rails/redis_instance_spec.rb +117 -0
  35. data/spec/redis_ui_rails_spec.rb +29 -0
  36. data/spec/spec_helper.rb +21 -0
  37. data/spec/support/dummy/app/assets/config/manifest.js +2 -0
  38. data/spec/support/dummy/app/assets/images/.keep +0 -0
  39. data/spec/support/dummy/app/assets/stylesheets/application.css +15 -0
  40. data/spec/support/dummy/app/controllers/application_controller.rb +2 -0
  41. data/spec/support/dummy/app/javascript/packs/application.js +14 -0
  42. data/spec/support/dummy/app/views/layouts/application.html.erb +15 -0
  43. data/spec/support/dummy/bin/rails +4 -0
  44. data/spec/support/dummy/bin/rake +4 -0
  45. data/spec/support/dummy/bin/setup +30 -0
  46. data/spec/support/dummy/config/application.rb +16 -0
  47. data/spec/support/dummy/config/boot.rb +5 -0
  48. data/spec/support/dummy/config/database.yml +11 -0
  49. data/spec/support/dummy/config/environment.rb +8 -0
  50. data/spec/support/dummy/config/environments/development.rb +76 -0
  51. data/spec/support/dummy/config/environments/production.rb +120 -0
  52. data/spec/support/dummy/config/environments/test.rb +59 -0
  53. data/spec/support/dummy/config/initializers/assets.rb +12 -0
  54. data/spec/support/dummy/config/initializers/backtrace_silencers.rb +8 -0
  55. data/spec/support/dummy/config/initializers/cookies_serializer.rb +5 -0
  56. data/spec/support/dummy/config/initializers/filter_parameter_logging.rb +6 -0
  57. data/spec/support/dummy/config/initializers/redis_ui_rails.rb +12 -0
  58. data/spec/support/dummy/config/initializers/wrap_parameters.rb +14 -0
  59. data/spec/support/dummy/config/locales/en.yml +33 -0
  60. data/spec/support/dummy/config/puma.rb +43 -0
  61. data/spec/support/dummy/config/routes.rb +3 -0
  62. data/spec/support/dummy/config.ru +6 -0
  63. data/spec/support/dummy/lib/assets/.keep +0 -0
  64. data/spec/support/dummy/log/.keep +0 -0
  65. data/spec/support/dummy/public/404.html +67 -0
  66. data/spec/support/dummy/public/422.html +67 -0
  67. data/spec/support/dummy/public/500.html +66 -0
  68. data/spec/support/dummy/public/apple-touch-icon-precomposed.png +0 -0
  69. data/spec/support/dummy/public/apple-touch-icon.png +0 -0
  70. data/spec/support/dummy/public/favicon.ico +0 -0
  71. metadata +279 -0
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ RedisUiRails.configure do |config|
4
+ config.redis_instances = [
5
+ {
6
+ id: :dummy,
7
+ name: "Dummy Redis",
8
+ url: "test/url",
9
+ enabled: true
10
+ }
11
+ ]
12
+ end
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,33 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # The following keys must be escaped otherwise they will not be retrieved by
20
+ # the default I18n backend:
21
+ #
22
+ # true, false, on, off, yes, no
23
+ #
24
+ # Instead, surround them with single quotes.
25
+ #
26
+ # en:
27
+ # 'true': 'foo'
28
+ #
29
+ # To learn more, please read the Rails Internationalization guide
30
+ # available at https://guides.rubyonrails.org/i18n.html.
31
+
32
+ en:
33
+ hello: "Hello world"
@@ -0,0 +1,43 @@
1
+ # Puma can serve each request in a thread from an internal thread pool.
2
+ # The `threads` method setting takes two numbers: a minimum and maximum.
3
+ # Any libraries that use thread pools should be configured to match
4
+ # the maximum value specified for Puma. Default is set to 5 threads for minimum
5
+ # and maximum; this matches the default thread size of Active Record.
6
+ #
7
+ max_threads_count = ENV.fetch("RAILS_MAX_THREADS", 5)
8
+ min_threads_count = ENV.fetch("RAILS_MIN_THREADS") { max_threads_count }
9
+ threads min_threads_count, max_threads_count
10
+
11
+ # Specifies the `worker_timeout` threshold that Puma will use to wait before
12
+ # terminating a worker in development environments.
13
+ #
14
+ worker_timeout 3600 if ENV.fetch("RAILS_ENV", "development") == "development"
15
+
16
+ # Specifies the `port` that Puma will listen on to receive requests; default is 3000.
17
+ #
18
+ port ENV.fetch("PORT", 3000)
19
+
20
+ # Specifies the `environment` that Puma will run in.
21
+ #
22
+ environment ENV.fetch("RAILS_ENV") { "development" }
23
+
24
+ # Specifies the `pidfile` that Puma will use.
25
+ pidfile ENV.fetch("PIDFILE") { "tmp/pids/server.pid" }
26
+
27
+ # Specifies the number of `workers` to boot in clustered mode.
28
+ # Workers are forked web server processes. If using threads and workers together
29
+ # the concurrency of the application would be max `threads` * `workers`.
30
+ # Workers do not work on JRuby or Windows (both of which do not support
31
+ # processes).
32
+ #
33
+ # workers ENV.fetch("WEB_CONCURRENCY") { 2 }
34
+
35
+ # Use the `preload_app!` method when specifying a `workers` number.
36
+ # This directive tells Puma to first boot the application and load code
37
+ # before forking the application. This takes advantage of Copy On Write
38
+ # process behavior so workers use less memory.
39
+ #
40
+ # preload_app!
41
+
42
+ # Allow puma to be restarted by `rails restart` command.
43
+ plugin :tmp_restart
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ mount RedisUiRails::Engine => "/redis_ui"
3
+ end
@@ -0,0 +1,6 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require_relative "config/environment"
4
+
5
+ run Rails.application
6
+ Rails.application.load_server
File without changes
File without changes
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
File without changes
metadata ADDED
@@ -0,0 +1,279 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: redis_ui_rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Stitch Fix Engineering
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-08-04 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 6.1.5.1
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 6.1.5.1
27
+ - !ruby/object:Gem::Dependency
28
+ name: sprockets
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 3.7.2
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 3.7.2
41
+ - !ruby/object:Gem::Dependency
42
+ name: sprockets-rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: redis
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rspec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: pry
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: capybara
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: webdrivers
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: sqlite3
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: puma
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ - !ruby/object:Gem::Dependency
154
+ name: net-smtp
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ - !ruby/object:Gem::Dependency
168
+ name: mock_redis
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - ">="
172
+ - !ruby/object:Gem::Version
173
+ version: '0'
174
+ type: :development
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - ">="
179
+ - !ruby/object:Gem::Version
180
+ version: '0'
181
+ description:
182
+ email:
183
+ - eng@stitchfix.com
184
+ executables: []
185
+ extensions: []
186
+ extra_rdoc_files: []
187
+ files:
188
+ - ".env.example"
189
+ - ".envrc"
190
+ - ".gitignore"
191
+ - ".rspec.example"
192
+ - Gemfile
193
+ - README.md
194
+ - app/assets/config/manifest.js
195
+ - app/assets/images/redis_ui_rails/.keep
196
+ - app/assets/stylesheets/redis_ui_rails/application.css
197
+ - app/controllers/redis_ui_rails/application_controller.rb
198
+ - app/controllers/redis_ui_rails/configs_controller.rb
199
+ - app/controllers/redis_ui_rails/dashboard_controller.rb
200
+ - app/controllers/redis_ui_rails/instances_controller.rb
201
+ - app/controllers/redis_ui_rails/keys_controller.rb
202
+ - app/views/layouts/redis_ui_rails/application.html.erb
203
+ - app/views/redis_ui_rails/configs/show.html.erb
204
+ - app/views/redis_ui_rails/dashboard/index.html.erb
205
+ - app/views/redis_ui_rails/instances/show.html.erb
206
+ - app/views/redis_ui_rails/keys/show.html.erb
207
+ - app/views/shared/_instance_hero.html.erb
208
+ - config/routes.rb
209
+ - lib/redis_ui_rails.rb
210
+ - lib/redis_ui_rails/config.rb
211
+ - lib/redis_ui_rails/engine.rb
212
+ - lib/redis_ui_rails/redis_instance.rb
213
+ - lib/redis_ui_rails/version.rb
214
+ - redis_ui_rails.gemspec
215
+ - spec/feature_spec_helper.rb
216
+ - spec/integration/dashboard_spec.rb
217
+ - spec/integration/instance_config_spec.rb
218
+ - spec/integration/instance_keys_spec.rb
219
+ - spec/redis_ui_rails/config_spec.rb
220
+ - spec/redis_ui_rails/redis_instance_spec.rb
221
+ - spec/redis_ui_rails_spec.rb
222
+ - spec/spec_helper.rb
223
+ - spec/support/dummy/app/assets/config/manifest.js
224
+ - spec/support/dummy/app/assets/images/.keep
225
+ - spec/support/dummy/app/assets/stylesheets/application.css
226
+ - spec/support/dummy/app/controllers/application_controller.rb
227
+ - spec/support/dummy/app/javascript/packs/application.js
228
+ - spec/support/dummy/app/views/layouts/application.html.erb
229
+ - spec/support/dummy/bin/rails
230
+ - spec/support/dummy/bin/rake
231
+ - spec/support/dummy/bin/setup
232
+ - spec/support/dummy/config.ru
233
+ - spec/support/dummy/config/application.rb
234
+ - spec/support/dummy/config/boot.rb
235
+ - spec/support/dummy/config/database.yml
236
+ - spec/support/dummy/config/environment.rb
237
+ - spec/support/dummy/config/environments/development.rb
238
+ - spec/support/dummy/config/environments/production.rb
239
+ - spec/support/dummy/config/environments/test.rb
240
+ - spec/support/dummy/config/initializers/assets.rb
241
+ - spec/support/dummy/config/initializers/backtrace_silencers.rb
242
+ - spec/support/dummy/config/initializers/cookies_serializer.rb
243
+ - spec/support/dummy/config/initializers/filter_parameter_logging.rb
244
+ - spec/support/dummy/config/initializers/redis_ui_rails.rb
245
+ - spec/support/dummy/config/initializers/wrap_parameters.rb
246
+ - spec/support/dummy/config/locales/en.yml
247
+ - spec/support/dummy/config/puma.rb
248
+ - spec/support/dummy/config/routes.rb
249
+ - spec/support/dummy/lib/assets/.keep
250
+ - spec/support/dummy/log/.keep
251
+ - spec/support/dummy/public/404.html
252
+ - spec/support/dummy/public/422.html
253
+ - spec/support/dummy/public/500.html
254
+ - spec/support/dummy/public/apple-touch-icon-precomposed.png
255
+ - spec/support/dummy/public/apple-touch-icon.png
256
+ - spec/support/dummy/public/favicon.ico
257
+ homepage: https://github.com/stitchfix/redis_ui_rails
258
+ licenses: []
259
+ metadata: {}
260
+ post_install_message:
261
+ rdoc_options: []
262
+ require_paths:
263
+ - lib
264
+ required_ruby_version: !ruby/object:Gem::Requirement
265
+ requirements:
266
+ - - ">="
267
+ - !ruby/object:Gem::Version
268
+ version: '0'
269
+ required_rubygems_version: !ruby/object:Gem::Requirement
270
+ requirements:
271
+ - - ">="
272
+ - !ruby/object:Gem::Version
273
+ version: '0'
274
+ requirements: []
275
+ rubygems_version: 3.3.7
276
+ signing_key:
277
+ specification_version: 4
278
+ summary: A drop-in Rails UI for Redis.
279
+ test_files: []