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 ADDED
@@ -0,0 +1,6 @@
1
+ 0.0.2:
2
+ - RDoc cleanup
3
+ - Fix LoadError when fjson isn't installed but json is
4
+
5
+ 0.0.1:
6
+ - Initial release
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.1"
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
@@ -3,7 +3,7 @@ require 'rubygems'
3
3
 
4
4
  begin
5
5
  require 'fjson'
6
- rescue
6
+ rescue LoadError
7
7
  require 'json'
8
8
  end
9
9
 
@@ -3,7 +3,7 @@ require 'rublique'
3
3
 
4
4
  begin
5
5
  require 'fjson'
6
- rescue
6
+ rescue LoadError
7
7
  require 'json'
8
8
  end
9
9
 
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.1
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
- extra_rdoc_files: []
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: []