ktlacaelel-plog 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/Rakefile +2 -2
- data/VERSION +1 -1
- data/lib/plog.rb +5 -5
- data/plog.gemspec +3 -3
- metadata +5 -4
data/Rakefile
CHANGED
@@ -5,8 +5,8 @@ begin
|
|
5
5
|
require 'jeweler'
|
6
6
|
Jeweler::Tasks.new do |gem|
|
7
7
|
gem.name = "plog"
|
8
|
-
gem.summary = %Q{
|
9
|
-
gem.description = %Q{
|
8
|
+
gem.summary = %Q{Plog - Ruby on Rails production log statistic generator. by Kazuyoshi Tlacaelel}
|
9
|
+
gem.description = %Q{Plog - Ruby on Rails production log statistic generator. by Kazuyoshi Tlacaelel}
|
10
10
|
gem.email = "kazu.dev@gmail.com"
|
11
11
|
gem.homepage = "http://github.com/ktlacaelel/plog"
|
12
12
|
gem.authors = ["Kazuyoshi Tlacaelel"]
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.3
|
data/lib/plog.rb
CHANGED
@@ -5,9 +5,9 @@ require 'md5'
|
|
5
5
|
require 'uri'
|
6
6
|
|
7
7
|
# required internal libraries
|
8
|
-
require '
|
9
|
-
require '
|
10
|
-
require '
|
11
|
-
require '
|
12
|
-
require '
|
8
|
+
require 'cli'
|
9
|
+
require 'completed_line'
|
10
|
+
require 'log_file'
|
11
|
+
require 'object_file'
|
12
|
+
require 'url'
|
13
13
|
|
data/plog.gemspec
CHANGED
@@ -5,13 +5,13 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{plog}
|
8
|
-
s.version = "0.0.
|
8
|
+
s.version = "0.0.3"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Kazuyoshi Tlacaelel"]
|
12
12
|
s.date = %q{2009-09-07}
|
13
13
|
s.default_executable = %q{plog}
|
14
|
-
s.description = %q{
|
14
|
+
s.description = %q{Plog - Ruby on Rails production log statistic generator. by Kazuyoshi Tlacaelel}
|
15
15
|
s.email = %q{kazu.dev@gmail.com}
|
16
16
|
s.executables = ["plog"]
|
17
17
|
s.extra_rdoc_files = [
|
@@ -45,7 +45,7 @@ Gem::Specification.new do |s|
|
|
45
45
|
s.rdoc_options = ["--charset=UTF-8"]
|
46
46
|
s.require_paths = ["lib"]
|
47
47
|
s.rubygems_version = %q{1.3.3}
|
48
|
-
s.summary = %q{
|
48
|
+
s.summary = %q{Plog - Ruby on Rails production log statistic generator. by Kazuyoshi Tlacaelel}
|
49
49
|
s.test_files = [
|
50
50
|
"test/completed_line_test.rb",
|
51
51
|
"test/log_file_test.rb",
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ktlacaelel-plog
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kazuyoshi Tlacaelel
|
@@ -22,7 +22,7 @@ dependencies:
|
|
22
22
|
- !ruby/object:Gem::Version
|
23
23
|
version: "0"
|
24
24
|
version:
|
25
|
-
description:
|
25
|
+
description: Plog - Ruby on Rails production log statistic generator. by Kazuyoshi Tlacaelel
|
26
26
|
email: kazu.dev@gmail.com
|
27
27
|
executables:
|
28
28
|
- plog
|
@@ -55,6 +55,7 @@ files:
|
|
55
55
|
- test/url_test.rb
|
56
56
|
has_rdoc: false
|
57
57
|
homepage: http://github.com/ktlacaelel/plog
|
58
|
+
licenses:
|
58
59
|
post_install_message:
|
59
60
|
rdoc_options:
|
60
61
|
- --charset=UTF-8
|
@@ -75,10 +76,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
76
|
requirements: []
|
76
77
|
|
77
78
|
rubyforge_project:
|
78
|
-
rubygems_version: 1.
|
79
|
+
rubygems_version: 1.3.5
|
79
80
|
signing_key:
|
80
81
|
specification_version: 3
|
81
|
-
summary:
|
82
|
+
summary: Plog - Ruby on Rails production log statistic generator. by Kazuyoshi Tlacaelel
|
82
83
|
test_files:
|
83
84
|
- test/completed_line_test.rb
|
84
85
|
- test/log_file_test.rb
|