colortail 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/ChangeLog.markdown CHANGED
@@ -1,3 +1,7 @@
1
- ### colortail 0.0.0 2010-04-19
1
+ ### colortail 0.1.1 2010-04-19
2
+
3
+ * Fixed help menu to work properly
4
+
5
+ ### colortail 0.1.0 2010-04-19
2
6
 
3
7
  * Initial release
data/Changelog.markdown CHANGED
@@ -1,3 +1,7 @@
1
- ### colortail 0.0.0 2010-04-19
1
+ ### colortail 0.1.1 2010-04-19
2
+
3
+ * Fixed help menu to work properly
4
+
5
+ ### colortail 0.1.0 2010-04-19
2
6
 
3
7
  * Initial release
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.0
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.0"
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 = [
@@ -14,7 +14,7 @@ module ColorTail
14
14
  end
15
15
 
16
16
  if options[:help]
17
- $stderr.puts options.opts
17
+ $stderr.puts opt.opts
18
18
  return 1
19
19
  end
20
20
 
@@ -68,9 +68,8 @@ module ColorTail
68
68
  end
69
69
 
70
70
  options[:help] = false
71
- o.on( '-h', '--help', 'Display this help screen' ) do
71
+ o.on_tail( '-h', '--help', 'Display this help screen' ) do
72
72
  options[:help] = true
73
- exit
74
73
  end
75
74
  end
76
75
 
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.0
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