wackamole 0.0.2 → 0.0.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/History.txt +7 -3
- data/lib/wackamole.rb +1 -1
- metadata +1 -1
data/History.txt
CHANGED
@@ -1,8 +1,12 @@
|
|
1
1
|
== 0.0.1 / 2010-01-09
|
2
2
|
|
3
|
-
*
|
3
|
+
* Initial drop. Made wackamole a gem
|
4
4
|
|
5
5
|
== 0.0.2 / 2010-01-28
|
6
6
|
|
7
|
-
*
|
8
|
-
*
|
7
|
+
* Bug fixes and some cleanup
|
8
|
+
* Updated details info on logs from Rackamole user_agent parsing
|
9
|
+
|
10
|
+
=== 0.0.3 / 2010-01-30
|
11
|
+
|
12
|
+
* Bug fixes
|
data/lib/wackamole.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
module Wackamole
|
2
2
|
|
3
3
|
# :stopdoc:
|
4
|
-
VERSION = '0.0.
|
4
|
+
VERSION = '0.0.3' unless defined? Wackamole::VERSION
|
5
5
|
LIBPATH = ::File.expand_path(::File.dirname(__FILE__)) + ::File::SEPARATOR unless defined? Wackamole::LIBPATH
|
6
6
|
PATH = ::File.dirname(LIBPATH) + ::File::SEPARATOR unless defined? Wackamole::PATH
|
7
7
|
# :startdoc:
|