logster 1.0.0.3.pre → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f96a90f35b22434eaab9e040f89c1d33a9fbe32f
4
- data.tar.gz: c6a4bed380e8078437accf0d2f209e4b9046cc24
3
+ metadata.gz: 56302ee5e8c4578baa96303208225a8802e9413a
4
+ data.tar.gz: 41aed485e25ed9efd4e57aac6b57ee83a921ef2f
5
5
  SHA512:
6
- metadata.gz: 9c188fb720c1635e1b2bf837acd46e94775c299e7bd61bd78e0e928f92472bcc28aa80f74b19e23fa381a8e9e4a26e94a9bf4edff2c4e35bb59f8adf40fa5157
7
- data.tar.gz: f8d72bd650f607fdcc8c7faa9268ab0636f9dd06292435c6a1752576b97450fbc86bb87e34447d92d36a9bc26e4dec5161b8f9fc3305cf8af0786f0383e11189
6
+ metadata.gz: 9a8ea2cf4353b00fb3f60697f094f5f2b9a25d08032fbb160d6639a7462c6dd77624215b20964b4cfcb961e0eb2173815d2595a2db62ee01f5bb56af4f2f9a9b
7
+ data.tar.gz: 90535bd3068bc8124e01f5ceb0f771080acb1a353b8a6a047227e00ba267caf624e7f1355ab2865bbc0cb2414c3205e5bcf4fa647dd2583f8abc666cefa2aab9
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ![logster logo](https://raw.githubusercontent.com/discourse/logster/master/assets/images/logster-logo.png)
1
+ ![logster logo](https://raw.githubusercontent.com/discourse/logster/master/assets/images/logo-logster-cropped-small.png)
2
2
 
3
3
  Logster is an embedded Ruby "exception reporting service" admins can view on live websites, at `http://example.com/logs`
4
4
 
@@ -58,6 +58,14 @@ Out of the box, logster will use the default redis connection, to customise, in
58
58
  Logster.store = Logster::RedisStore.new(redis_connection)
59
59
  ```
60
60
 
61
+ ### Heroku Deployment
62
+ In case you may be using the `rails_12factor` gem in a production deployment on Heroku, the standard `Rails.logger` will not cooperate properly with Logster. Extend Rails.logger in your `config/application.rb` or `config/initializers/logster.rb` with:
63
+ ```
64
+ if Rails.env.production?
65
+ Rails.logger.extend(ActiveSupport::Logger.broadcast(Logster.logger))
66
+ end
67
+ ```
68
+
61
69
  ## Thanks
62
70
 
63
71
  Logster UI is built using [Ember.js](http://emberjs.com/)
@@ -72,6 +80,12 @@ Logster UI is built using [Ember.js](http://emberjs.com/)
72
80
 
73
81
  # CHANGELOG
74
82
 
83
+ - 2015-11-27: Version 1.0.1
84
+ - New assets and logster logo
85
+ - Added favicon
86
+ - Added title
87
+ - Use rails logger instead of invoking store
88
+
75
89
  - 2015-08-18: Version 0.9.9
76
90
  - This marks the largest release of Logster to date, it has been in production use for quite a while, hence the version bump.
77
91
  - Feature: automatically group errors in production mode, can be manually controlled via Logster.config.allow_grouping
Binary file
Binary file
Binary file
Binary file
@@ -29,7 +29,7 @@ module Logster
29
29
 
30
30
  if resource = resolve_path(path)
31
31
 
32
- if resource =~ /\.ico$|\.js$|\.handlebars$|\.css$|\.woff$|\.ttf$|\.woff2$|\.svg$|\.otf$|\.eot$/
32
+ if resource =~ /\.ico$|\.js$|\.png|\.handlebars$|\.css$|\.woff$|\.ttf$|\.woff2$|\.svg$|\.otf$|\.eot$/
33
33
  env[PATH_INFO] = resource
34
34
  # accl redirect is going to be trouble, ensure its bypassed
35
35
  env['sendfile.type'] = ''
@@ -202,7 +202,8 @@ JS
202
202
  <!doctype html>
203
203
  <html>
204
204
  <head>
205
- <link rel="shortcut icon" href="#{@logs_path}/images/favicon.ico">
205
+ <link rel="shortcut icon" href="#{@logs_path}/images/icon_64x64.png">
206
+ <link rel="apple-touch-icon" href="#{@logs_path}/images/icon_144x144.png" />
206
207
  <title>#{Logster.config.web_title || "Logs"}</title>
207
208
  <link href='//fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
208
209
  <link href='//fonts.googleapis.com/css?family=Roboto+Mono' rel='stylesheet' type='text/css'>
@@ -1,3 +1,3 @@
1
1
  module Logster
2
- VERSION = "1.0.0.3.pre"
2
+ VERSION = "1.0.1"
3
3
  end
data/logster.gemspec CHANGED
@@ -13,7 +13,9 @@ Gem::Specification.new do |spec|
13
13
  spec.homepage = "https://github.com/discourse/logster"
14
14
  spec.license = "MIT"
15
15
 
16
- spec.files = `git ls-files -z`.split("\x0").reject{|f| f.start_with?("bower_components") || f.start_with?("website") || f.start_with?("bin") }
16
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
17
+ f.start_with?("bower_components") || f.start_with?("website") || f.start_with?("bin")
18
+ end
17
19
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
20
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
21
  spec.require_paths = ["lib"]
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: 1.0.0.3.pre
4
+ version: 1.0.1
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-08-20 00:00:00.000000000 Z
11
+ date: 2015-11-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -113,12 +113,10 @@ files:
113
113
  - assets/fonts/fontawesome-webfont.ttf
114
114
  - assets/fonts/fontawesome-webfont.woff
115
115
  - assets/fonts/fontawesome-webfont.woff2
116
- - assets/images/favicon.ico
117
- - assets/images/logster-apple-touch.png
118
- - assets/images/logster-favicon.png
119
- - assets/images/logster-logo.png
120
- - assets/images/logster-logo.psd
121
- - assets/images/logster-screenshot.png
116
+ - assets/images/Icon-144_rounded.png
117
+ - assets/images/Icon-144_square.png
118
+ - assets/images/icon_144x144.png
119
+ - assets/images/icon_64x64.png
122
120
  - assets/javascript/app.js
123
121
  - assets/javascript/components/message-info.hbs
124
122
  - assets/javascript/components/message-row.hbs
@@ -180,12 +178,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
180
178
  version: '0'
181
179
  required_rubygems_version: !ruby/object:Gem::Requirement
182
180
  requirements:
183
- - - ">"
181
+ - - ">="
184
182
  - !ruby/object:Gem::Version
185
- version: 1.3.1
183
+ version: '0'
186
184
  requirements: []
187
185
  rubyforge_project:
188
- rubygems_version: 2.4.5
186
+ rubygems_version: 2.4.5.1
189
187
  signing_key:
190
188
  specification_version: 4
191
189
  summary: UI for viewing logs in Rack
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file