colortail 0.1.0 → 0.1.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.
- data/ChangeLog.markdown +5 -1
- data/Changelog.markdown +5 -1
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/colortail.gemspec +2 -2
- data/lib/colortail/application.rb +1 -1
- data/lib/colortail/configuration.rb +1 -2
- metadata +2 -2
data/ChangeLog.markdown
CHANGED
data/Changelog.markdown
CHANGED
data/Rakefile
CHANGED
|
@@ -7,7 +7,7 @@ begin
|
|
|
7
7
|
gem.name = "colortail"
|
|
8
8
|
gem.executables = "colortail"
|
|
9
9
|
gem.summary = "Tail a file and color lines based on regular expressions within that line"
|
|
10
|
-
gem.description = "Tail a file and color lines based on regular expressions within that line"
|
|
10
|
+
gem.description = "Tail a file and color lines based on regular expressions within that line. By setting up multiple expression and color groups in the configuration file, you can apply highlighting to a file while its being tailed."
|
|
11
11
|
gem.email = "eric@lubow.org"
|
|
12
12
|
gem.homepage = "http://codaset.com/elubow/colortail"
|
|
13
13
|
gem.authors = ["Eric Lubow"]
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
data/colortail.gemspec
CHANGED
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{colortail}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Eric Lubow"]
|
|
12
12
|
s.date = %q{2010-04-19}
|
|
13
13
|
s.default_executable = %q{colortail}
|
|
14
|
-
s.description = %q{Tail a file and color lines based on regular expressions within that line}
|
|
14
|
+
s.description = %q{Tail a file and color lines based on regular expressions within that line. By setting up multiple expression and color groups in the configuration file, you can apply highlighting to a file while its being tailed.}
|
|
15
15
|
s.email = %q{eric@lubow.org}
|
|
16
16
|
s.executables = ["colortail"]
|
|
17
17
|
s.extra_rdoc_files = [
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: colortail
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eric Lubow
|
|
@@ -32,7 +32,7 @@ dependencies:
|
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
33
|
version: "0"
|
|
34
34
|
version:
|
|
35
|
-
description: Tail a file and color lines based on regular expressions within that line
|
|
35
|
+
description: Tail a file and color lines based on regular expressions within that line. By setting up multiple expression and color groups in the configuration file, you can apply highlighting to a file while its being tailed.
|
|
36
36
|
email: eric@lubow.org
|
|
37
37
|
executables:
|
|
38
38
|
- colortail
|