remote_syslog-gitlab 0.0.1

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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 45609fc304f80782c066a587e875e949e35e16b09b82f562cb46a9386ec85d72
4
+ data.tar.gz: 87a86000d4381a66023eb372777ae68a4aa2e2c5292a1f54c971af12ad713684
5
+ SHA512:
6
+ metadata.gz: 7e5db190b886038ff0632b0389bbe9bc47a282bc877fdfff16fc393c0a381a34aca9c1b0df587e14525dce519c809db0270095391594aebeeee24802aae89075
7
+ data.tar.gz: 8dbc0fb4a9f94e674d36ae570d96625b580a84e8f5c76f2d192059974413dc596b66f4a2478c69e617f5a89b03ecc97edf53719d07d0620daf0def30fb142890
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2010 Seven Scale LLC
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOa AND
17
+ NONINFRINGEMENT. IN NO EVENT SaALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,488 @@
1
+ # Deprecated. Use [remote_syslog2][] instead of this repo
2
+
3
+ ### remote_syslog Ruby daemon & sender
4
+
5
+ remote_syslog has been rewritten in Go as [remote_syslog2][]. As a
6
+ standalone binary, remote_syslog2 has fewer dependencies. It also
7
+ depends on less code between the daemon and the OS.
8
+
9
+ **Use [remote_syslog2][] instead of this repo**.
10
+
11
+ ## Introduction
12
+
13
+ Lightweight Ruby daemon to tail one or more log files and transmit UDP syslog
14
+ messages to a remote syslog host (centralized log aggregation).
15
+
16
+ remote_syslog generates UDP packets itself instead of depending on a system
17
+ syslog daemon, so its configuration doesn't affect system-wide
18
+ logging - syslog is just the transport.
19
+
20
+ Uses:
21
+
22
+ * collecting logs from servers & daemons which don't natively support syslog
23
+ * when reconfiguring the system logger is less convenient than a
24
+ purpose-built daemon (e.g., automated app deployments)
25
+ * aggregating files not generated by daemons (e.g., package manager logs)
26
+
27
+ The library can also be used to generate one-off log messages from Ruby code.
28
+
29
+ Tested with the hosted log management service [Papertrail] and should work for
30
+ transmitting to any syslog server.
31
+
32
+
33
+ ## Installation
34
+
35
+ Install the gem, which includes a binary called "remote_syslog":
36
+
37
+ $ [sudo] gem install remote_syslog
38
+
39
+ Optionally, create a log_files.yml with the log file paths to read and the
40
+ host/port to log to (see examples/[log_files.yml.example][sample config]). These can also be
41
+ specified as command-line arguments (below).
42
+
43
+
44
+ ## Usage
45
+
46
+ Usage: remote_syslog [OPTION]... <FILE>...
47
+
48
+ Options:
49
+ -c, --configfile PATH Path to config (/etc/log_files.yml)
50
+ -d, --dest-host HOSTNAME Destination syslog hostname or IP (logs.papertrailapp.com)
51
+ -p, --dest-port PORT Destination syslog port (514)
52
+ -D, --no-detach Don't daemonize and detach from the terminal
53
+ -f, --facility FACILITY Facility (user)
54
+ --hostname HOST Local hostname to send from
55
+ -P, --pid-dir DIRECTORY DEPRECATED: Directory to write .pid file in
56
+ --pid-file FILENAME Location of the PID file (default /var/run/remote_syslog.pid)
57
+ --parse-syslog Parse file as syslog-formatted file
58
+ -s, --severity SEVERITY Severity (notice)
59
+ --strip-color Strip color codes
60
+ --tls Connect via TCP with TLS
61
+ --tcp Connect via TCP (no TLS)
62
+ --new-file-check-interval INTERVAL
63
+ Time between checks for new files
64
+
65
+ Advanced options:
66
+ --[no-]eventmachine-tail Enable or disable using eventmachine-tail
67
+ --debug-log FILE Log internal debug messages
68
+ --debug-level LEVEL Log internal debug messages at level
69
+
70
+ Common options:
71
+ -h, --help Show this message
72
+ --version Show version
73
+
74
+ Example:
75
+ $ remote_syslog -c configs/logs.yml -p 12345 /var/log/mysqld.log
76
+
77
+
78
+
79
+ ## Example
80
+
81
+ Typical:
82
+
83
+ $ remote_syslog
84
+
85
+ Daemonize and collect messages from files listed in `./config/logs.yml` as
86
+ well as the file `/var/log/mysqld.log`. Send to port `logs.papertrailapp.com:12345`:
87
+
88
+ $ remote_syslog -c configs/logs.yml -p 12345 /var/log/mysqld.log
89
+
90
+ Stay attached to the terminal, look for and use `/etc/log_files.yml` if it
91
+ exists, write PID to `/tmp/remote_syslog.pid`, and send with facility local0
92
+ to `a.example.com:514`:
93
+
94
+ $ remote_syslog -D -d a.example.com -f local0 --pid-file /tmp/remote_syslog.pid /var/log/mysqld.log
95
+
96
+ ### Windows
97
+
98
+ Windows is not currently supported, though in certain situations it may work.
99
+
100
+ ## Auto-starting at boot
101
+
102
+ The gem includes sample init files, also [available here]. You may be able to:
103
+
104
+ $ cp examples/remote_syslog.init.d /etc/init.d/remote_syslog
105
+ $ chmod 755 /etc/init.d/remote_syslog
106
+
107
+ And then ensure it's started at boot, either by using:
108
+
109
+ $ sudo update-rc.d remote_syslog defaults
110
+
111
+ or by creating a link manually:
112
+
113
+ $ sudo ln -s /etc/init.d/remote_syslog /etc/rc3.d/S30remote_syslog
114
+
115
+ remote_syslog will daemonize by default.
116
+
117
+ Init files: [remote_syslog.init.d][] (init.d), OS X [launchd], [supervisor], Ubuntu [upstart]
118
+
119
+ ## Optional: rvm
120
+
121
+ Remember that when using a Ruby version manager such as [rvm](https://rvm.io/),
122
+ your interactive shell and init files need the version manager environment loaded.
123
+ The `rvm` [init.d instructions](https://rvm.io/integration/init-d/) show how to
124
+ create a wrapper script for the init files to run. A typical example is:
125
+
126
+ rvm wrapper ruby-1.9.3-p392 bootup remote_syslog
127
+
128
+ .. where `ruby-1.9.3-p392` is the desired Ruby from `rvm list`. `rvm` will output
129
+ the path to the new wrapper script which it created. Edit the init file to run the
130
+ new wrapper script instead of running `remote_syslog` directly.
131
+
132
+ ## Sending messages securely ##
133
+
134
+ If the receiving system supports sending syslog over TCP with TLS, you can
135
+ pass the `--tls` option when running `remote_syslog`:
136
+
137
+ $ remote_syslog --tls -p 1234 /var/log/mysqld.log
138
+
139
+ **Important**: `remote_syslog` depends on I/O code provided by the Ruby
140
+ VM, `eventmachine` library, and OS. There is at least one environment
141
+ and failure case where `remote_syslog` will not reconnect when using the
142
+ `--tls` option. Although we've never been able to reproduce this problem,
143
+ enough Papertrail customers have run into it that we'd suggest looking at
144
+ alternative solutions. One of those is forwarding data to rsyslog and
145
+ then using its TLS capabilities to log to Papertrail. For more
146
+ information on that and other alternatives, please contact
147
+ <support@papertrailapp.com>
148
+
149
+ ## Configuration
150
+
151
+ By default, the gem looks for a configuration in /etc/log_files.yml.
152
+
153
+ The gem comes with a [sample config]. Optionally:
154
+
155
+ $ cp examples/log_files.yml.example /etc/log_files.yml
156
+
157
+ log_files.yml has filenames to log from (as an array) and hostname and port
158
+ to log to (as a hash). Wildcards are supported using * and standard shell
159
+ globbing. Filenames given on the command line are additive to those in
160
+ the config file.
161
+
162
+ Only 1 destination server is supported; the command-line argument wins.
163
+
164
+ files:
165
+ - /var/log/httpd/access_log
166
+ - /var/log/httpd/error_log
167
+ - /var/log/mysqld.log
168
+ - /var/run/mysqld/mysqld-slow.log
169
+ destination:
170
+ host: logs.papertrailapp.com
171
+ port: 12345
172
+
173
+ remote_syslog sends the name of the file without a path ("mysqld.log") as
174
+ the syslog tag (program name). RFCs 3164 and 5424 limit the tag to 32
175
+ characters. Longer filenames are truncated to 32 characters.
176
+
177
+ After changing the configuration file, restart `remote_syslog` using the
178
+ init script or by manually killing and restarting the process. For example:
179
+
180
+ /etc/init.d/remote_syslog restart
181
+
182
+
183
+ ## Advanced Configuration (Optional)
184
+
185
+ Here's an [advanced config] which uses all options.
186
+
187
+ ### Override hostname
188
+
189
+ Provide `--hostname somehostname` or use the `hostname` configuration option:
190
+
191
+ hostname: somehostname
192
+
193
+
194
+ ### Verify server certificate
195
+
196
+ Provide the public key for the remote host when using TLS:
197
+
198
+ ssl_server_cert: syslog.crt
199
+
200
+
201
+ ### Use a client certificate
202
+
203
+ Provide a client certificate when connecting via TLS:
204
+
205
+ ssl_client_cert_chain: syslog_client.crt
206
+ ssl_client_private_key: syslog_client.key
207
+
208
+
209
+ ### Detecting new files
210
+
211
+ remote_syslog automatically detects and activates new log files that match
212
+ its file specifiers. For example, `*.log` may be provided as a file specifier,
213
+ and remote_syslog will detect a `some.log` file created after it was started.
214
+ Globs are re-checked every 10 seconds. Ruby's `Dir.glob` is used.
215
+
216
+ Note: messages may be written to files in the 0-10 seconds between when the
217
+ file is created and when the periodic glob check detects it. This data is not
218
+ currently acted on, though the default behavior may change in the future.
219
+
220
+ Also, explicitly-provided filenames need not exist when `remote_syslog` is
221
+ started. `remote_syslog` can be pre-configured to monitor log files which are
222
+ created later (or may never be created).
223
+
224
+ If globs are specified on the command-line, enclose each one in single-quotes
225
+ (`'*.log'`) so the shell passes the raw glob string to remote_syslog (rather
226
+ than the current set of matches). This is not necessary for globs defined in
227
+ the config file.
228
+
229
+
230
+ ### Log rotation
231
+
232
+ External log rotation scripts often move or remove an existing log file
233
+ and replace it with a new one (at a new inode). The Linux standard script
234
+ [logrotate](http://iain.cx/src/logrotate/) supports a `copytruncate` config
235
+ option. With that option, `logrotate` will copy files, operate on the copies,
236
+ and truncate the original so that the inode remains the same.
237
+
238
+ This comes closest to ensuring that programs watching these files (including
239
+ `remote_syslog`) will not be affected by, or need to be notified of, the
240
+ rotation. The only tradeoff of `copytruncate` is slightly higher disk usage
241
+ during rotation, so we recommend this option whether or not you use
242
+ `remote_syslog`.
243
+
244
+
245
+ ### Excluding files from being sent
246
+
247
+ Provide one or more regular expressions to prevent certain files from being
248
+ matched.
249
+
250
+ exclude_files:
251
+ - \.\d$
252
+ - .bz2
253
+ - .gz
254
+
255
+
256
+ ### Multiple instances
257
+
258
+ Run multiple instances to support more than one message-specific file format
259
+ or to specify unique syslog hostnames.
260
+
261
+ To do that, provide an alternate PID path as a command-line option to the
262
+ additional instance(s). For example:
263
+
264
+ --pid-file /var/run/remote_syslog_2.pid
265
+
266
+
267
+ ### Parse fields from log messages
268
+
269
+ Rarely needed. Usually only used when remote_syslog is watching files
270
+ generated by syslogd (rather than by apps), like ``/var/log/messages``.
271
+
272
+ remote_syslog can parse the program and hostname from the log line. When one
273
+ file contains logs from multiple programs (like with syslog), the log line
274
+ may include text that is not part of the log message, like a timestamp,
275
+ hostname, or program name. remote_syslog will extract those and use them in
276
+ the corresponding syslog packet fields.
277
+
278
+ To do that, use the config file option `parse_fields` with the name of a
279
+ format supported by remote_syslog, or your own regex. Included format names
280
+ are `syslog` and `rfc3339`. For example:
281
+
282
+ parse_fields: syslog
283
+
284
+ The included `syslog` format uses the regex `(\w+ \d+ \S+) (\S+) ([^:]+): (.*)`
285
+ to parse standard syslog lines like this:
286
+
287
+ Jul 18 08:25:08 hostname programname[1234]: The log message
288
+
289
+ The included `rfc3339` format uses the regex `(\S+) (\S+) ([^: ]+):? (.*)` to
290
+ parse syslog lines with high-precision RFC 3339 timestamps, like this:
291
+
292
+ 2011-07-16T08:25:08.651413-07:00 hostname programname[1234]: The log message
293
+
294
+ To parse a format other than those, provide your own regex. It should include
295
+ 4 backreferences to parse, in order: timestamp, system name, program name,
296
+ message.
297
+
298
+ Match and return empty strings for any empty positions where the log line
299
+ doesn't provide a value. For example, given the log message:
300
+
301
+ something-meaningless The log message
302
+
303
+ One could use a regex to ignore "something-meaningless" (and not to extract
304
+ a program or hostname). To ignore that prefix and return 3 empty values
305
+ then the log message, use parse_fields with this regex:
306
+
307
+ parse_fields: "something-meaningless ()()()(.*)"
308
+
309
+ Per-file regexes are not supported. Run multiple instances with different
310
+ config files.
311
+
312
+
313
+ ### Excluding lines matching a pattern
314
+
315
+ There may be certain log messages that you do not want to be sent. These may
316
+ repetitive log lines that are "noise" that you might not be able to filter out
317
+ easily from the respective application. To filter these lines, use the
318
+ exclude_patterns with an array or regexes:
319
+
320
+ exclude_patterns:
321
+ - exclude this
322
+ - \d+ things
323
+
324
+ ### Prepending a string to log messages
325
+
326
+ Use `prepend` to prepend a string to every log message before
327
+ transmitting. The string is prepended to the log message body, as if it
328
+ occurred at the start of every log file line. Include a trailing space
329
+ if desired.
330
+
331
+ Examples:
332
+
333
+ prepend: important:
334
+
335
+ or:
336
+
337
+ prepend: cafebabe-1024-4096-badd-1234abcd1234
338
+
339
+ ### Choosing app name
340
+
341
+ remote_syslog uses the log file name (like "access_log") as the syslog
342
+ program name, or what the syslog RFCs call the "tag." This is ideal unless
343
+ remote_syslog watches many files that have the same name.
344
+
345
+ In that case, tell remote_syslog to set another program name by creating
346
+ symbolic link to the generically-named file:
347
+
348
+ cd /path/to/logs
349
+ ln -s generic_name.log unique_name.log
350
+
351
+ Point remote_syslog at unique_name.log. It will use that as the program name.
352
+
353
+
354
+ ## Troubleshooting
355
+
356
+ ## Installation
357
+
358
+ ### `gem` not found
359
+
360
+ Install a [Ruby distribution](https://www.ruby-lang.org/en/downloads/), which typically takes a minute.
361
+
362
+ ### `g++` not found
363
+
364
+ Install `gcc` and `g++` so this system can compile C/C++ source. Installation
365
+ is typically `sudo yum install gcc-c++` (RPM-based distros) or `sudo apt-get
366
+ install build-essential` (.deb-based distros).
367
+
368
+ ### Getting `Encryption not available...` or `TLS is not supported...`
369
+
370
+ The exact error might appear as:
371
+
372
+ Encryption not available on this event-machine
373
+
374
+ or
375
+
376
+ TLS is not supported by eventmachine installed on this system. The openssl-devel/openssl-dev package must be installed before installing eventmachine.
377
+
378
+ Install the OpenSSL C++ package for your distribution, then reinstall the eventmachine.
379
+ For example:
380
+
381
+ * *.deb distros like Ubuntu:* `sudo apt-get install libssl-dev`
382
+ * *RPM distros like Fedora* `sudo yum install openssl-devel`
383
+
384
+ Then:
385
+
386
+ gem install eventmachine -f
387
+
388
+ ### Getting `no such file to load -- mkmf (LoadError)`?
389
+
390
+ Try these:
391
+
392
+ * *Ubuntu:* determine which Ruby version is active with `ruby -v`.
393
+
394
+ For 1.8.7: `sudo apt-get install build-essential ruby1.8 ruby1.8-dev rubygems`.
395
+ For 1.9.x, including 1.9.1 and 1.9.3: `sudo apt-get install build-essential ruby1.9.1-dev`.
396
+ For 2.0: `sudo apt-get install build-essential ruby2.0-dev`
397
+
398
+ * *Fedora:* `sudo yum install ruby-devel`.
399
+
400
+ * Getting errors about missing header files, like `ssl.cpp`? Try:
401
+ * *CentOS:* `sudo yum install libstdc++-devel ruby-devel`
402
+
403
+ ### Getting `Package ruby1.8 is not available...`
404
+
405
+ The exact error might appear as:
406
+
407
+ Package ruby1.8 is not available, but is referred to by another package.` and/or `Package rubygems is not available, but is referred to by another package.` on Ubuntu 14.04
408
+
409
+ Ubuntu 14.04 changed the name of the ruby 1.8.7 packages. Try this instead:
410
+
411
+ sudo apt-get install build-essential ruby-full ruby
412
+
413
+ ### Freezes at the compilation stage
414
+
415
+ This can happen when the system is low on memory. The installation process starts up
416
+ the compiler, but it gets killed as soon it consumes too much memory.
417
+ Tailing `/var/log/syslog` or `/var/log/messages` will confirm whether or not this is
418
+ occurring.
419
+
420
+ The solution is to temporarily stop any memory intensive tasks, install remote_syslog,
421
+ and then restart them.
422
+
423
+ ## Operations
424
+
425
+ ### Reconnect failures
426
+
427
+ `remote_syslog` depends on I/O code provided by the Ruby VM, `eventmachine` library,
428
+ and OS. There is at least one environment and failure case where `remote_syslog` will
429
+ not reconnect when using the `--tls` option. Although we've never been able to
430
+ reproduce this problem (and known occurrences are correspondingly rare), the dependency
431
+ and problem are worth noting.
432
+
433
+ ### `remote_syslog` not found?
434
+
435
+ It may not be in your path. Run `find / -name remote_syslog` to locate it, then run it
436
+ with the full path (such as `/var/lib/gems/1.8/bin/remote_syslog`).
437
+
438
+ ### The system rebooted and `remote_syslog` didn't start
439
+
440
+ Install an [init file](https://github.com/papertrail/remote_syslog#auto-starting-at-boot).
441
+
442
+ ### Logs not appearing?
443
+
444
+ Two commands are particularly useful for observing `remote_syslog`
445
+ behavior. First, its own debugging:
446
+
447
+ remote_syslog --debug-level DEBUG --debug-log remote_syslog.log
448
+
449
+ This will write internal operations to the file `remote_syslog.log`.
450
+
451
+ Second, strace or ktrace shows the interaction between `remote_syslog`
452
+ and the OS. To run `strace` against an existing `remote_syslog` instance
453
+ (process ID 12345):
454
+
455
+ strace -fp 12345 -s 500
456
+
457
+ Feel free to ask questions or report bugs.
458
+
459
+
460
+ ## Reporting bugs
461
+
462
+ 1. See whether the issue has already been reported: <https://github.com/papertrail/remote_syslog/issues/>
463
+ 2. If you don't find one, create an issue with a repro case.
464
+
465
+
466
+ ## Contributing
467
+
468
+ Once you've made your great commits:
469
+
470
+ 1. [Fork][fk] remote_syslog
471
+ 2. Create a topic branch - `git checkout -b my_branch`
472
+ 3. Commit the changes without changing the Rakefile or other files unrelated to your enhancement.
473
+ 4. Push to your branch - `git push origin my_branch`
474
+ 5. Create a Pull Request or an [Issue][is] with a link to your branch
475
+ 6. That's it!
476
+
477
+ [remote_syslog2]: https://github.com/papertrail/remote_syslog2
478
+ [sample config]: https://github.com/papertrail/remote_syslog/blob/master/examples/log_files.yml.example
479
+ [available here]: https://github.com/papertrail/remote_syslog/blob/master/examples/
480
+ [init files]: https://github.com/papertrail/remote_syslog/blob/master/examples/
481
+ [remote_syslog.init.d]: https://github.com/papertrail/remote_syslog/blob/master/examples/remote_syslog.init.d
482
+ [launchd]: https://github.com/papertrail/remote_syslog/blob/master/examples/com.papertrailapp.remote_syslog.plist
483
+ [supervisor]: https://github.com/papertrail/remote_syslog/blob/master/examples/remote_syslog.supervisor.conf
484
+ [upstart]: https://github.com/papertrail/remote_syslog/blob/master/examples/remote_syslog.upstart.conf
485
+ [advanced config]: https://github.com/papertrail/remote_syslog/blob/master/examples/log_files.yml.example.advanced
486
+ [fk]: http://help.github.com/forking/
487
+ [is]: https://github.com/papertrail/remote_syslog/issues/
488
+ [Papertrail]: http://papertrailapp.com/
data/Rakefile ADDED
@@ -0,0 +1,150 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+ require 'date'
4
+
5
+ #############################################################################
6
+ #
7
+ # Helper functions
8
+ #
9
+ #############################################################################
10
+
11
+ def name
12
+ @name ||= Dir['*.gemspec'].first.split('.').first
13
+ end
14
+
15
+ def version
16
+ line = File.read("lib/#{name}.rb")[/^\s*VERSION\s*=\s*.*/]
17
+ line.match(/.*VERSION\s*=\s*['"](.*)['"]/)[1]
18
+ end
19
+
20
+ def date
21
+ Date.today.to_s
22
+ end
23
+
24
+ def rubyforge_project
25
+ name
26
+ end
27
+
28
+ def gemspec_file
29
+ "#{name}.gemspec"
30
+ end
31
+
32
+ def gem_file
33
+ "#{name}-#{version}.gem"
34
+ end
35
+
36
+ def replace_header(head, header_name)
37
+ head.sub!(/(\.#{header_name}\s*= ').*'/) { "#{$1}#{send(header_name)}'"}
38
+ end
39
+
40
+ #############################################################################
41
+ #
42
+ # Standard tasks
43
+ #
44
+ #############################################################################
45
+
46
+ task :default => :test
47
+
48
+ require 'rake/testtask'
49
+ Rake::TestTask.new(:test) do |test|
50
+ test.libs << 'lib' << 'test'
51
+ test.pattern = 'test/**/*_test.rb'
52
+ test.verbose = true
53
+ end
54
+
55
+ desc "Generate RCov test coverage and open in your browser"
56
+ task :coverage do
57
+ require 'rcov'
58
+ sh "rm -fr coverage"
59
+ sh "rcov test/test_*.rb"
60
+ sh "open coverage/index.html"
61
+ end
62
+
63
+ # require 'rdoc/task'
64
+ # Rake::RDocTask.new do |rdoc|
65
+ # rdoc.rdoc_dir = 'rdoc'
66
+ # rdoc.title = "#{name} #{version}"
67
+ # rdoc.rdoc_files.include('README*')
68
+ # rdoc.rdoc_files.include('lib/**/*.rb')
69
+ # end
70
+
71
+ desc "Open an irb session preloaded with this library"
72
+ task :console do
73
+ sh "irb -rubygems -r ./lib/#{name}.rb"
74
+ end
75
+
76
+ #############################################################################
77
+ #
78
+ # Custom tasks (add your own tasks here)
79
+ #
80
+ #############################################################################
81
+
82
+
83
+
84
+ #############################################################################
85
+ #
86
+ # Packaging tasks
87
+ #
88
+ #############################################################################
89
+
90
+ desc "Create tag v#{version} and build and push #{gem_file} to Rubygems"
91
+ task :release => :build do
92
+ unless `git branch` =~ /^\* master$/
93
+ puts "You must be on the master branch to release!"
94
+ exit!
95
+ end
96
+ sh "git commit --allow-empty -a -m 'Release #{version}'"
97
+ sh "git tag v#{version}"
98
+ sh "git push origin master"
99
+ sh "git push origin v#{version}"
100
+ sh "gem push pkg/#{name}-#{version}.gem"
101
+ end
102
+
103
+ desc "Build #{gem_file} into the pkg directory"
104
+ task :build => :gemspec do
105
+ sh "mkdir -p pkg"
106
+ sh "gem build #{gemspec_file}"
107
+ sh "mv #{gem_file} pkg"
108
+ end
109
+
110
+ desc "Generate #{gemspec_file}"
111
+ task :gemspec => :validate do
112
+ # read spec file and split out manifest section
113
+ spec = File.read(gemspec_file)
114
+ head, manifest, tail = spec.split(" # = MANIFEST =\n")
115
+
116
+ # replace name version and date
117
+ replace_header(head, :name)
118
+ replace_header(head, :version)
119
+ replace_header(head, :date)
120
+ #comment this out if your rubyforge_project has a different name
121
+ replace_header(head, :rubyforge_project)
122
+
123
+ # determine file list from git ls-files
124
+ files = `git ls-files`.
125
+ split("\n").
126
+ sort.
127
+ reject { |file| file =~ /^\./ }.
128
+ reject { |file| file =~ /^(rdoc|pkg)/ }.
129
+ map { |file| " #{file}" }.
130
+ join("\n")
131
+
132
+ # piece file back together and write
133
+ manifest = " s.files = %w[\n#{files}\n ]\n"
134
+ spec = [head, manifest, tail].join(" # = MANIFEST =\n")
135
+ File.open(gemspec_file, 'w') { |io| io.write(spec) }
136
+ puts "Updated #{gemspec_file}"
137
+ end
138
+
139
+ desc "Validate #{gemspec_file}"
140
+ task :validate do
141
+ libfiles = Dir['lib/*'] - ["lib/#{name}.rb", "lib/#{name}"]
142
+ unless libfiles.empty?
143
+ puts "Directory `lib` should only contain a `#{name}.rb` file and `#{name}` dir."
144
+ exit!
145
+ end
146
+ unless Dir['VERSION*'].empty?
147
+ puts "A `VERSION` file at root level violates Gem best practices."
148
+ exit!
149
+ end
150
+ end
data/bin/remote_syslog ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'remote_syslog'
4
+ require 'remote_syslog/cli'
5
+
6
+ RemoteSyslog::Cli.process!(ARGV)
@@ -0,0 +1,20 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <!-- Put this file in /Library/LaunchDaemons/ -->
4
+ <plist version = "1.0">
5
+ <dict>
6
+ <key>Label</key>
7
+ <string>com.papertrailapp.remote_syslog</string>
8
+ <key>RunAtLoad</key>
9
+ <true/>
10
+ <key>KeepAlive</key>
11
+ <true/>
12
+ <key>UserName</key>
13
+ <string>root</string>
14
+ <key>ProgramArguments</key>
15
+ <array>
16
+ <string>remote_syslog</string>
17
+ <string>-D</string>
18
+ </array>
19
+ </dict>
20
+ </plist>