scout 5.5.6 → 5.5.7
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.markdown +5 -0
- data/lib/scout/server_base.rb +1 -1
- data/lib/scout/version.rb +1 -1
- data/test/scout_test.rb +1 -6
- metadata +4 -4
data/CHANGELOG.markdown
CHANGED
data/lib/scout/server_base.rb
CHANGED
@@ -58,7 +58,7 @@ module Scout
|
|
58
58
|
# Net::HTTP::Proxy returns a regular Net::HTTP class if the first argument (host) is nil
|
59
59
|
info "using http_proxy=#{@http_proxy}, https_proxy=#{@https_proxy}" if @http_proxy != '' || @https_proxy != ''
|
60
60
|
proxy_uri = URI.parse(url.is_a?(URI::HTTPS) ? @https_proxy : @http_proxy)
|
61
|
-
http=Net::HTTP::Proxy(proxy_uri.host,proxy_uri.port,proxy_uri.user,proxy_uri.
|
61
|
+
http=Net::HTTP::Proxy(proxy_uri.host,proxy_uri.port,proxy_uri.user,proxy_uri.password).new(url.host, url.port)
|
62
62
|
|
63
63
|
if url.is_a? URI::HTTPS
|
64
64
|
http.use_ssl = true
|
data/lib/scout/version.rb
CHANGED
data/test/scout_test.rb
CHANGED
@@ -31,13 +31,8 @@ PATH_TO_TEST_PLUGIN = File.expand_path( File.dirname(__FILE__) ) + '/plugins/tem
|
|
31
31
|
|
32
32
|
class ScoutTest < Test::Unit::TestCase
|
33
33
|
def setup
|
34
|
-
load_fixtures :clients, :
|
34
|
+
load_fixtures :clients, :accounts, :plugins, :subscriptions, :plugin_metas
|
35
35
|
clear_tables :plugin_activities, :ar_descriptors, :summaries
|
36
|
-
# # delete the existing history file
|
37
|
-
# File.unlink(PATH_TO_DATA_FILE) if File.exist?(PATH_TO_DATA_FILE)
|
38
|
-
# File.unlink(AGENT_LOG) if File.exist?(AGENT_LOG)
|
39
|
-
# File.unlink(PLUGINS_PROPERTIES) if File.exist?(PLUGINS_PROPERTIES)
|
40
|
-
|
41
36
|
clear_working_dir
|
42
37
|
|
43
38
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: scout
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.5.
|
4
|
+
version: 5.5.7
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -11,11 +11,11 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2012-
|
14
|
+
date: 2012-09-04 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: elif
|
18
|
-
requirement: &
|
18
|
+
requirement: &2161512220 !ruby/object:Gem::Requirement
|
19
19
|
none: false
|
20
20
|
requirements:
|
21
21
|
- - ! '>='
|
@@ -23,7 +23,7 @@ dependencies:
|
|
23
23
|
version: '0'
|
24
24
|
type: :runtime
|
25
25
|
prerelease: false
|
26
|
-
version_requirements: *
|
26
|
+
version_requirements: *2161512220
|
27
27
|
description: ! 'Scout makes monitoring and reporting on your web applications as flexible
|
28
28
|
and simple as possible.
|
29
29
|
|