quietbacktrace 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,4 +1,8 @@
1
- == 0.0.2 / 2007-12-03
1
+ == 0.0.4 / 2007-12-03
2
+
3
+ * Added an init file so it can be added to Rails with gemsonrails
4
+
5
+ == 0.0.3 / 2007-12-03
2
6
 
3
7
  * Trying to get RDoc with Allison template showing on home page
4
8
 
data/Manifest.txt CHANGED
@@ -3,7 +3,8 @@ Manifest.txt
3
3
  README.txt
4
4
  Rakefile
5
5
  bin/quietbacktrace
6
+ init.rb
6
7
  lib/aliasing.rb
7
8
  lib/attribute_accessors.rb
8
- lib/quiet_backtrace.rb
9
+ lib/quietbacktrace.rb
9
10
  test/quiet_backtrace_test.rb
data/Rakefile CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  require 'rubygems'
4
4
  require 'hoe'
5
- require './lib/quiet_backtrace.rb'
5
+ require './lib/quietbacktrace.rb'
6
6
 
7
- Hoe.new('quietbacktrace', '0.0.3') do |p|
7
+ Hoe.new('quietbacktrace', '0.0.4') do |p|
8
8
  p.rubyforge_name = 'quietbacktrace'
9
9
  p.author = 'Dan Croak'
10
10
  p.email = 'dcroak@thoughtbot.com'
@@ -15,7 +15,7 @@ Hoe.new('quietbacktrace', '0.0.3') do |p|
15
15
  p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
16
16
  p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1]
17
17
  p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
18
- p.remote_rdoc_dir = 'doc' # Release to root
18
+ p.remote_rdoc_dir = '' # Release to root
19
19
  end
20
20
 
21
21
  # vim: syntax=Ruby
data/init.rb ADDED
@@ -0,0 +1 @@
1
+ require 'quietbacktrace'
File without changes
@@ -21,7 +21,7 @@
21
21
  #
22
22
  # For more on Shoulda, see http://thoughtbot.com/projects/shoulda
23
23
 
24
- require 'lib/quiet_backtrace'
24
+ require 'lib/quietbacktrace'
25
25
  require 'test/unit'
26
26
  require 'rubygems'
27
27
  require 'shoulda'
metadata CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: quietbacktrace
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.0.3
6
+ version: 0.0.4
7
7
  date: 2007-12-03 00:00:00 -05:00
8
8
  summary: quiet_backtrace suppresses the noise in your Test::Unit backtrace. It also provides hooks for you to add additional filters.
9
9
  require_paths:
@@ -34,9 +34,10 @@ files:
34
34
  - README.txt
35
35
  - Rakefile
36
36
  - bin/quietbacktrace
37
+ - init.rb
37
38
  - lib/aliasing.rb
38
39
  - lib/attribute_accessors.rb
39
- - lib/quiet_backtrace.rb
40
+ - lib/quietbacktrace.rb
40
41
  - test/quiet_backtrace_test.rb
41
42
  test_files: []
42
43