request-log-analyzer 1.3.0 → 1.3.1
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/request-log-analyzer +2 -2
- data/lib/request_log_analyzer.rb +1 -1
- data/request-log-analyzer.gemspec +1 -1
- metadata +1 -1
data/bin/request-log-analyzer
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
$:.unshift(File.dirname(__FILE__) + '/../lib')
|
3
3
|
require 'request_log_analyzer'
|
4
4
|
require 'cli/command_line_arguments'
|
5
|
-
require '
|
6
|
-
require '
|
5
|
+
require 'cli/progressbar'
|
6
|
+
require 'cli/tools'
|
7
7
|
|
8
8
|
# Parse the arguments given via commandline
|
9
9
|
begin
|
data/lib/request_log_analyzer.rb
CHANGED
@@ -11,7 +11,7 @@ module RequestLogAnalyzer
|
|
11
11
|
|
12
12
|
# The current version of request-log-analyzer.
|
13
13
|
# This will be diplayed in output reports etc.
|
14
|
-
VERSION = "1.3.
|
14
|
+
VERSION = "1.3.1"
|
15
15
|
|
16
16
|
# Loads constants in the RequestLogAnalyzer namespace using self.load_default_class_file(base, const)
|
17
17
|
# <tt>const</tt>:: The constant that is not yet loaded in the RequestLogAnalyzer namespace. This should be passed as a string or symbol.
|