scout 5.5.2 → 5.5.3

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,5 +1,9 @@
1
1
  == Master
2
2
 
3
+ == 5.5.3
4
+
5
+ * Fixed 'shadowing outer local variable' messages
6
+
3
7
  == 5.5.2
4
8
 
5
9
  * Fixed --http-proxy & --https-proxy support, which were broken in 5.5.0
@@ -105,7 +105,7 @@ module Scout
105
105
  num_classes_compiled=0
106
106
  selected_plugins=[]
107
107
  plugin_ids.each_with_index do |plugin_id,i|
108
- plugin=all_plugins.find{|plugin| plugin['id'] && plugin['id'].to_i == plugin_id}
108
+ plugin=all_plugins.find{|p| p['id'] && p['id'].to_i == plugin_id}
109
109
  if plugin
110
110
  begin
111
111
  # take care of plugin overrides
@@ -1,3 +1,3 @@
1
1
  module Scout
2
- VERSION = "5.5.2"
2
+ VERSION = "5.5.3"
3
3
  end
@@ -45,11 +45,11 @@ class Hash #:nodoc:
45
45
  end
46
46
 
47
47
  stack.each do |parent, hash|
48
- hash.each do |key, value|
49
- if value.is_a?(Hash)
50
- stack << ["#{parent}[#{key}]", value]
48
+ hash.each do |k, v|
49
+ if v.is_a?(Hash)
50
+ stack << ["#{parent}[#{k}]", v]
51
51
  else
52
- param << normalize_param("#{parent}[#{key}]", value)
52
+ param << normalize_param("#{parent}[#{k}]", v)
53
53
  end
54
54
  end
55
55
  end
metadata CHANGED
@@ -1,39 +1,40 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: scout
3
- version: !ruby/object:Gem::Version
4
- version: 5.5.2
5
- prerelease:
3
+ version: !ruby/object:Gem::Version
4
+ version: 5.5.3
6
5
  platform: ruby
7
- authors:
6
+ authors:
8
7
  - Andre Lewis
9
8
  - Derek Haynes
10
9
  - James Edward Gray II
11
10
  autorequire:
12
11
  bindir: bin
13
12
  cert_chain: []
14
- date: 2012-01-15 00:00:00.000000000 Z
15
- dependencies:
16
- - !ruby/object:Gem::Dependency
13
+
14
+ date: 2012-01-20 00:00:00 -08:00
15
+ default_executable:
16
+ dependencies:
17
+ - !ruby/object:Gem::Dependency
17
18
  name: elif
18
- requirement: &70188519768680 !ruby/object:Gem::Requirement
19
- none: false
20
- requirements:
21
- - - ! '>='
22
- - !ruby/object:Gem::Version
23
- version: '0'
24
19
  type: :runtime
25
- prerelease: false
26
- version_requirements: *70188519768680
27
- description: ! 'Scout makes monitoring and reporting on your web applications as flexible
28
- and simple as possible.
20
+ version_requirement:
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: "0"
26
+ version:
27
+ description: |
28
+ Scout makes monitoring and reporting on your web applications as flexible and simple as possible.
29
29
 
30
- '
31
30
  email: support@scoutapp.com
32
- executables:
31
+ executables:
33
32
  - scout
34
33
  extensions: []
34
+
35
35
  extra_rdoc_files: []
36
- files:
36
+
37
+ files:
37
38
  - .gitignore
38
39
  - CHANGELOG
39
40
  - Gemfile
@@ -217,31 +218,34 @@ files:
217
218
  - vendor/signature/spec/signature_spec.rb
218
219
  - vendor/signature/spec/spec_helper.rb
219
220
  - vendor/util/lib/core_extensions.rb
221
+ has_rdoc: true
220
222
  homepage: http://scoutapp.com
221
223
  licenses: []
224
+
222
225
  post_install_message:
223
226
  rdoc_options: []
224
- require_paths:
227
+
228
+ require_paths:
225
229
  - lib
226
- required_ruby_version: !ruby/object:Gem::Requirement
227
- none: false
228
- requirements:
229
- - - ! '>='
230
- - !ruby/object:Gem::Version
231
- version: '0'
232
- required_rubygems_version: !ruby/object:Gem::Requirement
233
- none: false
234
- requirements:
235
- - - ! '>='
236
- - !ruby/object:Gem::Version
237
- version: '0'
230
+ required_ruby_version: !ruby/object:Gem::Requirement
231
+ requirements:
232
+ - - ">="
233
+ - !ruby/object:Gem::Version
234
+ version: "0"
235
+ version:
236
+ required_rubygems_version: !ruby/object:Gem::Requirement
237
+ requirements:
238
+ - - ">="
239
+ - !ruby/object:Gem::Version
240
+ version: "0"
241
+ version:
238
242
  requirements: []
243
+
239
244
  rubyforge_project: scout
240
- rubygems_version: 1.8.10
245
+ rubygems_version: 1.3.5
241
246
  signing_key:
242
247
  specification_version: 3
243
- summary: Web-based monitoring, reporting, and alerting for your servers, clusters,
244
- and applications.
245
- test_files:
248
+ summary: Web-based monitoring, reporting, and alerting for your servers, clusters, and applications.
249
+ test_files:
246
250
  - test/plugins/disk_usage.rb
247
251
  - test/scout_test.rb