scout 1.1.5 → 1.1.6
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.
- data/CHANGELOG +4 -0
- data/bin/scout +10 -2
- data/lib/scout.rb +1 -1
- metadata +2 -2
data/CHANGELOG
CHANGED
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
|
-
|
|
145
|
+
If you are using the system crontab (usually located at /etc/crontab):
|
|
144
146
|
|
|
145
|
-
|
|
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
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.
|
|
4
|
+
version: 1.1.6
|
|
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-
|
|
12
|
+
date: 2008-04-04 00:00:00 -04:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|