quietbacktrace 0.0.8 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.0.9 / 2007-12-03
2
+
3
+ * Fixed file path bugs with File.expand_path
4
+
1
5
  == 0.0.8 / 2007-12-03
2
6
 
3
7
  * Attempt to fix ERROR: While executing gem ... (OpenURI::HTTPError)
data/Rakefile CHANGED
@@ -4,7 +4,7 @@ require 'rubygems'
4
4
  require 'hoe'
5
5
  require './lib/quietbacktrace.rb'
6
6
 
7
- Hoe.new('quietbacktrace', '0.0.8') do |p|
7
+ Hoe.new('quietbacktrace', '0.0.9') do |p|
8
8
  p.rubyforge_name = 'quietbacktrace'
9
9
  p.author = 'Dan Croak'
10
10
  p.email = 'dcroak@thoughtbot.com'
@@ -82,8 +82,8 @@
82
82
  # Copyright (c) 2007 Dan Croak, thoughtbot, inc., released under the MIT license
83
83
 
84
84
  require 'test/unit'
85
- require 'lib/attribute_accessors'
86
- require 'lib/aliasing'
85
+ require File.expand_path(File.dirname(__FILE__) + '/attribute_accessors')
86
+ require File.expand_path(File.dirname(__FILE__) + '/aliasing')
87
87
 
88
88
  module QuietBacktrace # :nodoc: all
89
89
  module BacktraceFilter
@@ -21,7 +21,7 @@
21
21
  #
22
22
  # For more on Shoulda, see http://thoughtbot.com/projects/shoulda
23
23
 
24
- require 'lib/quietbacktrace'
24
+ require File.expand_path('../lib/quietbacktrace', File.dirname(__FILE__))
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.8
6
+ version: 0.0.9
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: