scout 5.4.5.alpha → 5.4.5.1.alpha

Sign up to get free protection for your applications and to get access to all the features.
@@ -31,14 +31,14 @@ module Scout
31
31
 
32
32
  if daemon_command.include? "start" # can be 'start' or 'restart'
33
33
  if File.exists?(streamer_pid_file)
34
- puts "PID file existed. Restarting ..."
34
+ puts("PID file existed. Restarting ...") if $stdin.tty?
35
35
  Scout::StreamerControl.restart(streamer_control_options,streamer_control_args)
36
36
  else
37
- puts "Starting ... "
37
+ puts("Starting ... ") if $stdin.tty?
38
38
  Scout::StreamerControl.start(streamer_control_options,streamer_control_args)
39
39
  end
40
40
  elsif daemon_command == "stop"
41
- puts "Stopping ..."
41
+ puts("Stopping ...") if $stdin.tty?
42
42
  Scout::StreamerControl.stop(streamer_control_options,[])
43
43
  else
44
44
  puts "usage: scout stream [your_scout_key] [start|stop]"
@@ -52,7 +52,7 @@ module DaemonSpawn
52
52
  trap("TERM") {daemon.stop; exit}
53
53
  daemon.start(args)
54
54
  end
55
- puts "#{daemon.app_name} started."
55
+ puts("#{daemon.app_name} started.") if $stdin.tty?
56
56
  end
57
57
 
58
58
  def self.stop(daemon) #:nodoc:
data/lib/scout/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Scout
2
- VERSION = "5.4.5.alpha"
2
+ VERSION = "5.4.5.1.alpha"
3
3
  end
metadata CHANGED
@@ -1,40 +1,39 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: scout
3
- version: !ruby/object:Gem::Version
4
- version: 5.4.5.alpha
3
+ version: !ruby/object:Gem::Version
4
+ version: 5.4.5.1.alpha
5
+ prerelease: 8
5
6
  platform: ruby
6
- authors:
7
+ authors:
7
8
  - Andre Lewis
8
9
  - Derek Haynes
9
10
  - James Edward Gray II
10
11
  autorequire:
11
12
  bindir: bin
12
13
  cert_chain: []
13
-
14
- date: 2011-12-13 00:00:00 -08:00
15
- default_executable:
16
- dependencies:
17
- - !ruby/object:Gem::Dependency
14
+ date: 2011-12-14 00:00:00.000000000 Z
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
18
17
  name: elif
18
+ requirement: &70137852313700 !ruby/object:Gem::Requirement
19
+ none: false
20
+ requirements:
21
+ - - ! '>='
22
+ - !ruby/object:Gem::Version
23
+ version: '0'
19
24
  type: :runtime
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.
25
+ prerelease: false
26
+ version_requirements: *70137852313700
27
+ description: ! 'Scout makes monitoring and reporting on your web applications as flexible
28
+ and simple as possible.
29
29
 
30
+ '
30
31
  email: support@scoutapp.com
31
- executables:
32
+ executables:
32
33
  - scout
33
34
  extensions: []
34
-
35
35
  extra_rdoc_files: []
36
-
37
- files:
36
+ files:
38
37
  - .gitignore
39
38
  - CHANGELOG
40
39
  - Gemfile
@@ -220,34 +219,31 @@ files:
220
219
  - vendor/signature/spec/signature_spec.rb
221
220
  - vendor/signature/spec/spec_helper.rb
222
221
  - vendor/util/lib/core_extensions.rb
223
- has_rdoc: true
224
222
  homepage: http://scoutapp.com
225
223
  licenses: []
226
-
227
224
  post_install_message:
228
225
  rdoc_options: []
229
-
230
- require_paths:
226
+ require_paths:
231
227
  - lib
232
- required_ruby_version: !ruby/object:Gem::Requirement
233
- requirements:
234
- - - ">="
235
- - !ruby/object:Gem::Version
236
- version: "0"
237
- version:
238
- required_rubygems_version: !ruby/object:Gem::Requirement
239
- requirements:
240
- - - ">"
241
- - !ruby/object:Gem::Version
228
+ required_ruby_version: !ruby/object:Gem::Requirement
229
+ none: false
230
+ requirements:
231
+ - - ! '>='
232
+ - !ruby/object:Gem::Version
233
+ version: '0'
234
+ required_rubygems_version: !ruby/object:Gem::Requirement
235
+ none: false
236
+ requirements:
237
+ - - ! '>'
238
+ - !ruby/object:Gem::Version
242
239
  version: 1.3.1
243
- version:
244
240
  requirements: []
245
-
246
241
  rubyforge_project: scout
247
- rubygems_version: 1.3.5
242
+ rubygems_version: 1.8.10
248
243
  signing_key:
249
244
  specification_version: 3
250
- summary: Web-based monitoring, reporting, and alerting for your servers, clusters, and applications.
251
- test_files:
245
+ summary: Web-based monitoring, reporting, and alerting for your servers, clusters,
246
+ and applications.
247
+ test_files:
252
248
  - test/plugins/disk_usage.rb
253
249
  - test/scout_test.rb