redis_dashboard 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +21 -0
- data/README.md +9 -1
- data/redis_dashboard.gemspec +1 -1
- data/screenshot.jpg +0 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 10c99b398879bdb03fd9427acad7140b434e55df
|
4
|
+
data.tar.gz: 97a10ede56139ffadfcd1adad82dd3286c8a2a84
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b40c906da815f3d20ade73365fcde0976222a25afa54878534bec222e413fe007e8a1b36b1bb2a9853685d627bd4d3d410383b96902008f2b57dfe3f29cbf653
|
7
|
+
data.tar.gz: 3bad65fe54a3e55ab2f4454c63fa512585fb72f823fd8ba6c5315d097b458738c8b7f9442cbc85475327af1276c78dda1287a583ceecd32732fa84430f38f3d3
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2017 Base Secrète
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
CHANGED
@@ -3,6 +3,8 @@
|
|
3
3
|
It's a Sinatra web app showing monitoring informations about your Redis server.
|
4
4
|
You can run it in standalone or inside your Rails app.
|
5
5
|
|
6
|
+
![Redis dashboard](https://github.com/BaseSecrete/redis_dashboard/blob/master/screenshot.jpg)
|
7
|
+
|
6
8
|
## Installation inside a Rails app
|
7
9
|
|
8
10
|
Add this line in your Gemfile:
|
@@ -25,7 +27,7 @@ Specify the Redis URLs in `config/redis_dashboard.rb`:
|
|
25
27
|
RedisDashboard.urls = ["redis://localhost"]
|
26
28
|
```
|
27
29
|
|
28
|
-
Finally visit http://localhost/
|
30
|
+
Finally visit http://localhost/redis_dashboard/.
|
29
31
|
|
30
32
|
## Authentication
|
31
33
|
|
@@ -36,3 +38,9 @@ RedisDashboard::Application.use(Rack::Auth::Basic) do |user, password|
|
|
36
38
|
user == "USER" && password == "PASSWORD"
|
37
39
|
end
|
38
40
|
```
|
41
|
+
|
42
|
+
## MIT License
|
43
|
+
|
44
|
+
Made by [Base Secrète](https://basesecrete.com).
|
45
|
+
|
46
|
+
Rails developer? Check out [RoRvsWild](https://rorvswild.com), our Ruby on Rails application monitoring tool.
|
data/redis_dashboard.gemspec
CHANGED
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |spec|
|
5
5
|
spec.name = "redis_dashboard"
|
6
|
-
spec.version = "0.1.
|
6
|
+
spec.version = "0.1.1"
|
7
7
|
spec.authors = ["Alexis Bernard"]
|
8
8
|
spec.email = ["alexis@bernard.io"]
|
9
9
|
spec.summary = "Sinatra app to monitor Redis servers."
|
data/screenshot.jpg
ADDED
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: redis_dashboard
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexis Bernard
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-06-
|
11
|
+
date: 2017-06-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sinatra
|
@@ -34,6 +34,7 @@ files:
|
|
34
34
|
- ".gitignore"
|
35
35
|
- Gemfile
|
36
36
|
- Gemfile.lock
|
37
|
+
- LICENSE.txt
|
37
38
|
- README.md
|
38
39
|
- lib/redis_dashboard.rb
|
39
40
|
- lib/redis_dashboard/application.rb
|
@@ -55,6 +56,7 @@ files:
|
|
55
56
|
- lib/redis_dashboard/views/stylesheets/table.scss
|
56
57
|
- lib/redis_dashboard/views/stylesheets/typography.scss
|
57
58
|
- redis_dashboard.gemspec
|
59
|
+
- screenshot.jpg
|
58
60
|
- start.rb
|
59
61
|
homepage: https://github.com/BaseSecrete/redis_dashboard
|
60
62
|
licenses:
|