logster 0.1.8 → 0.8.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.
- checksums.yaml +4 -4
- data/README.md +3 -0
- data/assets/javascript/components/message-info.handlebars +10 -1
- data/assets/javascript/templates/show.handlebars +2 -2
- data/assets/stylesheets/app.css +20 -4
- data/lib/logster/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c202663c68ab4c537809930481d6cf4fcf7de0f1
|
|
4
|
+
data.tar.gz: ab6a5de4b651edb335d944ec2a2b87624c5957da
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: db50aa855646e58b674e972b487a514250e0848479d5fea9d9218f7f3fd036f9a011023aa5624c3ffeded8fe8fa57bca76fd528d9d3be87ae0ed415f5456152e
|
|
7
|
+
data.tar.gz: 46ee42f1cd1b0b3b3f8af7e700b232665ebe7d7aa651279e6882fb97d135e7fa519bd4e1ec3b5eb8e3e95fe4562ef78a0a3bf37222e6f62f845ca5a887b43e74
|
data/README.md
CHANGED
|
@@ -101,3 +101,6 @@ Logster UI is built using [Ember.js](http://emberjs.com/)
|
|
|
101
101
|
- Fix crash on 404 in /logs dir
|
|
102
102
|
- 2015-02-27: Version 0.1.7
|
|
103
103
|
- Fix invalid request on ?test
|
|
104
|
+
- 2015-04-16: Version 0.8.0
|
|
105
|
+
- Improve formatting of /show page
|
|
106
|
+
- Big version bump cause it is quite stable
|
|
@@ -1,15 +1,24 @@
|
|
|
1
1
|
<div class="message-info">
|
|
2
2
|
{{#tabbed-section}}
|
|
3
3
|
{{#tab-contents name="info" hint="show info" currentMessage=currentMessage}}
|
|
4
|
+
{{#if showTitle}}
|
|
5
|
+
<h3>Message</h3>
|
|
6
|
+
{{/if}}
|
|
4
7
|
<pre>{{currentMessage.message}}</pre>
|
|
5
8
|
{{/tab-contents}}
|
|
6
9
|
{{#tab-contents name="backtrace" hint="show backtrace" currentMessage=currentMessage}}
|
|
10
|
+
{{#if showTitle}}
|
|
11
|
+
<h3>Backtrace</h3>
|
|
12
|
+
{{/if}}
|
|
7
13
|
<pre>{{currentMessage.backtrace}}</pre>
|
|
8
14
|
{{/tab-contents}}
|
|
9
15
|
{{#if currentMessage.env}}
|
|
10
16
|
{{#tab-contents name="env" hint="show environment" currentMessage=currentMessage}}
|
|
17
|
+
{{#if showTitle}}
|
|
18
|
+
<h3>Env</h3>
|
|
19
|
+
{{/if}}
|
|
11
20
|
<pre>{{currentMessage.envDebug}}</pre>
|
|
12
21
|
{{/tab-contents}}
|
|
13
22
|
{{/if}}
|
|
14
23
|
{{/tabbed-section}}
|
|
15
|
-
</div>
|
|
24
|
+
</div>
|
data/assets/stylesheets/app.css
CHANGED
|
@@ -87,8 +87,6 @@ tr.show-more {
|
|
|
87
87
|
font-size: 12px;
|
|
88
88
|
}
|
|
89
89
|
|
|
90
|
-
|
|
91
|
-
|
|
92
90
|
#bottom-panel{
|
|
93
91
|
position: fixed;
|
|
94
92
|
bottom: 0;
|
|
@@ -102,8 +100,26 @@ tr.show-more {
|
|
|
102
100
|
}
|
|
103
101
|
|
|
104
102
|
#bottom-panel.full {
|
|
105
|
-
|
|
106
|
-
|
|
103
|
+
height: 90%;
|
|
104
|
+
position: static;
|
|
105
|
+
background-color: inherit;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
#bottom-panel.full .tabs {
|
|
109
|
+
display: none;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
#bottom-panel.full .message-info {
|
|
113
|
+
position: static;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
#bottom-panel.full .message-info .content {
|
|
117
|
+
display: block;
|
|
118
|
+
position: static;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
#bottom-panel.full .save, #bottom-panel.full .share {
|
|
122
|
+
bottom: 10px;
|
|
107
123
|
}
|
|
108
124
|
|
|
109
125
|
.share {
|
data/lib/logster/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logster
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.8.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- UI for viewing logs in Rack
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-04-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -168,7 +168,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
168
168
|
version: '0'
|
|
169
169
|
requirements: []
|
|
170
170
|
rubyforge_project:
|
|
171
|
-
rubygems_version: 2.
|
|
171
|
+
rubygems_version: 2.2.2
|
|
172
172
|
signing_key:
|
|
173
173
|
specification_version: 4
|
|
174
174
|
summary: UI for viewing logs in Rack
|
|
@@ -181,4 +181,3 @@ test_files:
|
|
|
181
181
|
- test/logster/test_logger.rb
|
|
182
182
|
- test/logster/test_redis_store.rb
|
|
183
183
|
- test/test_helper.rb
|
|
184
|
-
has_rdoc:
|