colortail 0.1.2 → 0.1.3
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 +7 -2
- data/VERSION +1 -1
- data/colortail.gemspec +1 -1
- data/lib/colortail/configuration.rb +5 -2
- metadata +1 -1
data/Changelog.markdown
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
### colortail 0.1.2 2010-04-19
|
|
2
|
-
|
|
2
|
+
|
|
3
|
+
* BUGFIX: Ensure config file exists before sourcing it
|
|
4
|
+
|
|
5
|
+
### colortail 0.1.2 2010-04-19
|
|
6
|
+
|
|
7
|
+
* FEATURE: Added multi-threading to allow for tailing multiple files
|
|
3
8
|
|
|
4
9
|
### colortail 0.1.1 2010-04-19
|
|
5
10
|
|
|
6
|
-
* Fixed help menu to work properly
|
|
11
|
+
* BUGFIX: Fixed help menu to work properly
|
|
7
12
|
|
|
8
13
|
### colortail 0.1.0 2010-04-19
|
|
9
14
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.3
|
data/colortail.gemspec
CHANGED
|
@@ -26,8 +26,11 @@ module ColorTail
|
|
|
26
26
|
# isn't available in the configuration object until after a new object
|
|
27
27
|
# has been instantiated.
|
|
28
28
|
def load_opts(group)
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
colorset = []
|
|
30
|
+
if File.exists?(@config_file)
|
|
31
|
+
load @config_file
|
|
32
|
+
colorset = self.colorit( group, Groupings )
|
|
33
|
+
end
|
|
31
34
|
return colorset
|
|
32
35
|
end
|
|
33
36
|
end
|