scout 5.1.1 → 5.1.2

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.
Files changed (4) hide show
  1. data/CHANGELOG +4 -0
  2. data/lib/scout.rb +1 -1
  3. data/lib/scout/server.rb +1 -1
  4. metadata +9 -18
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ == 5.1.2
2
+
3
+ * Added backtrace to Plugin code compile errors
4
+
1
5
  == 5.1.1
2
6
 
3
7
  * Fixed Counter functionality for per-minute metrics
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby -wKU
2
2
 
3
3
  module Scout
4
- VERSION = "5.1.1".freeze
4
+ VERSION = "5.1.2".freeze
5
5
  end
6
6
 
7
7
  require "scout/command"
@@ -189,7 +189,7 @@ module Scout
189
189
  rescue Exception
190
190
  raise if $!.is_a? SystemExit
191
191
  error "Plugin would not compile: #{$!.message}"
192
- @checkin[:errors] << build_report(plugin['id'],:subject => "Plugin would not compile", :body=>$!.message)
192
+ @checkin[:errors] << build_report(plugin['id'],:subject => "Plugin would not compile", :body=>"#{$!.message}\n\n#{$!.backtrace}")
193
193
  return
194
194
  end
195
195
  debug "Loading plugin..."
metadata CHANGED
@@ -1,12 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scout
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 5
7
- - 1
8
- - 1
9
- version: 5.1.1
4
+ version: 5.1.2
10
5
  platform: ruby
11
6
  authors:
12
7
  - Highgroove Studios
@@ -14,21 +9,19 @@ autorequire:
14
9
  bindir: bin
15
10
  cert_chain: []
16
11
 
17
- date: 2010-04-02 00:00:00 -07:00
12
+ date: 2010-04-27 00:00:00 -07:00
18
13
  default_executable:
19
14
  dependencies:
20
15
  - !ruby/object:Gem::Dependency
21
16
  name: elif
22
- prerelease: false
23
- requirement: &id001 !ruby/object:Gem::Requirement
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
24
20
  requirements:
25
21
  - - ">="
26
22
  - !ruby/object:Gem::Version
27
- segments:
28
- - 0
29
23
  version: "0"
30
- type: :runtime
31
- version_requirements: *id001
24
+ version:
32
25
  description: |
33
26
  Scout makes monitoring and reporting on your web applications as flexible and simple as possible.
34
27
 
@@ -197,20 +190,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
197
190
  requirements:
198
191
  - - ">="
199
192
  - !ruby/object:Gem::Version
200
- segments:
201
- - 0
202
193
  version: "0"
194
+ version:
203
195
  required_rubygems_version: !ruby/object:Gem::Requirement
204
196
  requirements:
205
197
  - - ">="
206
198
  - !ruby/object:Gem::Version
207
- segments:
208
- - 0
209
199
  version: "0"
200
+ version:
210
201
  requirements: []
211
202
 
212
203
  rubyforge_project: scout
213
- rubygems_version: 1.3.6
204
+ rubygems_version: 1.3.5
214
205
  signing_key:
215
206
  specification_version: 3
216
207
  summary: Scout makes monitoring and reporting on your web applications as flexible and simple as possible.