scout 1.1.7 → 1.1.8

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 +9 -1
  2. data/bin/scout +10 -2
  3. data/lib/scout.rb +1 -1
  4. metadata +3 -3
data/CHANGELOG CHANGED
@@ -1,8 +1,16 @@
1
- == 1.1.6
1
+ == 1.1.8
2
+
3
+ * Rectifying missing checkin -- this unifies 1.1.6 and 1.1.7 changes to gem
4
+
5
+ == 1.1.7
2
6
 
3
7
  * Introducing a delta for the plugin run interval, now allowing runs even if
4
8
  they are up to 30 seconds early
5
9
 
10
+ == 1.1.6
11
+
12
+ * minor documentation update in scout installation wizard
13
+
6
14
  == 1.1.5
7
15
 
8
16
  * A more robust solution for plugin removal
data/bin/scout CHANGED
@@ -139,11 +139,19 @@ if [:client_key, :plugin].all? { |o| options[o].nil? } and
139
139
  puts <<-END_SUCCESS.gsub(/^ {4}/, "")
140
140
 
141
141
  Success!
142
+
143
+ Now, you must setup Scout to run on a scheduled basis.
142
144
 
143
- ******* NOW, INSTALL IN CRONTAB *******
145
+ If you are using the system crontab (usually located at /etc/crontab):
144
146
 
145
- */10 * * * * #{USER} #{File.expand_path($PROGRAM_NAME)} #{options[:client_key]}
147
+ ****** START CRONTAB SAMPLE ******
148
+ */30 * * * * #{USER} #{File.expand_path($PROGRAM_NAME)} #{options[:client_key]}
149
+ ******* END CRONTAB SAMPLE *******
146
150
 
151
+ If you are using this current user's crontab (using crontab -e to edit):
152
+
153
+ ****** START CRONTAB SAMPLE ******
154
+ */30 * * * * #{File.expand_path($PROGRAM_NAME)} #{options[:client_key]}
147
155
  ******* END CRONTAB SAMPLE *******
148
156
 
149
157
  For help setting up Scout with crontab, please visit:
data/lib/scout.rb CHANGED
@@ -4,5 +4,5 @@ require "scout/plugin"
4
4
  require "scout/server"
5
5
 
6
6
  module Scout
7
- VERSION = "1.1.7".freeze
7
+ VERSION = "1.1.8".freeze
8
8
  end
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: 1.1.7
4
+ version: 1.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Highgroove Studios
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-04-28 00:00:00 -05:00
12
+ date: 2008-04-28 00:00:00 -04:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -74,7 +74,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
74
74
  requirements: []
75
75
 
76
76
  rubyforge_project: scout
77
- rubygems_version: 1.1.1
77
+ rubygems_version: 1.0.1
78
78
  signing_key:
79
79
  specification_version: 2
80
80
  summary: Scout makes monitoring and reporting on your web applications as flexible and simple as possible.