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 CHANGED
@@ -1,3 +1,8 @@
1
+ # 5.5.7
2
+
3
+ * Fixing broken tests
4
+ * Using proxy password (was using proxy port on mistake)
5
+
1
6
  # 5.5.6
2
7
 
3
8
  * Fixing broken tests
@@ -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.port).new(url.host, url.port)
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
@@ -1,3 +1,3 @@
1
1
  module Scout
2
- VERSION = "5.5.6"
2
+ VERSION = "5.5.7"
3
3
  end
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, :plugins, :accounts, :subscriptions, :plugin_metas
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.6
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-08-14 00:00:00.000000000 Z
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: &2157870820 !ruby/object:Gem::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: *2157870820
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