rublique 0.0.1 → 0.0.2
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/CHANGES +6 -0
- data/Rakefile +4 -2
- data/bin/rublique_analyzer +1 -1
- data/lib/rublique_logger.rb +1 -1
- metadata +10 -5
data/CHANGES
ADDED
data/Rakefile
CHANGED
|
@@ -15,15 +15,17 @@ end
|
|
|
15
15
|
|
|
16
16
|
spec = Gem::Specification.new do |s|
|
|
17
17
|
s.name = %q{rublique}
|
|
18
|
-
s.version = "0.0.
|
|
18
|
+
s.version = "0.0.2"
|
|
19
19
|
s.date = %q{2006-12-19}
|
|
20
20
|
s.summary = %q{Rublique monitors object lifetimes across various code sections, outputting a logfile of object deltas which can be used to generate CSV files of object use over time}
|
|
21
21
|
s.email = %q{tony@clickcaster.com}
|
|
22
22
|
s.homepage = %q{http://rublique.rubyforge.org}
|
|
23
23
|
s.rubyforge_project = %q{rublique}
|
|
24
24
|
s.has_rdoc = true
|
|
25
|
+
s.rdoc_options = ["--exclude", "definitions", "--exclude", "indexes"]
|
|
26
|
+
s.extra_rdoc_files = ["README", "CHANGES"]
|
|
25
27
|
s.authors = ["Tony Arcieri"]
|
|
26
|
-
s.files = ["README", "Rakefile", "lib", "lib/rublique.rb", "lib/rublique_logger.rb", "lib/rublique_dispatcher.rb", "bin", "bin/rublique_analyzer"]
|
|
28
|
+
s.files = ["README", "CHANGES", "Rakefile", "lib", "lib/rublique.rb", "lib/rublique_logger.rb", "lib/rublique_dispatcher.rb", "bin", "bin/rublique_analyzer"]
|
|
27
29
|
s.add_dependency('json', '>= 0.4.0')
|
|
28
30
|
s.executables << 'rublique_analyzer'
|
|
29
31
|
end
|
data/bin/rublique_analyzer
CHANGED
data/lib/rublique_logger.rb
CHANGED
metadata
CHANGED
|
@@ -3,7 +3,7 @@ rubygems_version: 0.9.0
|
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: rublique
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 0.0.
|
|
6
|
+
version: 0.0.2
|
|
7
7
|
date: 2006-12-19 00:00:00 -07:00
|
|
8
8
|
summary: Rublique monitors object lifetimes across various code sections, outputting a logfile of object deltas which can be used to generate CSV files of object use over time
|
|
9
9
|
require_paths:
|
|
@@ -30,6 +30,7 @@ authors:
|
|
|
30
30
|
- Tony Arcieri
|
|
31
31
|
files:
|
|
32
32
|
- README
|
|
33
|
+
- CHANGES
|
|
33
34
|
- Rakefile
|
|
34
35
|
- lib
|
|
35
36
|
- lib/rublique.rb
|
|
@@ -39,10 +40,14 @@ files:
|
|
|
39
40
|
- bin/rublique_analyzer
|
|
40
41
|
test_files: []
|
|
41
42
|
|
|
42
|
-
rdoc_options:
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
43
|
+
rdoc_options:
|
|
44
|
+
- --exclude
|
|
45
|
+
- definitions
|
|
46
|
+
- --exclude
|
|
47
|
+
- indexes
|
|
48
|
+
extra_rdoc_files:
|
|
49
|
+
- README
|
|
50
|
+
- CHANGES
|
|
46
51
|
executables:
|
|
47
52
|
- rublique_analyzer
|
|
48
53
|
extensions: []
|