message-recorder 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,4 +1,12 @@
1
- == 1.0.1 2008-02-13
1
+ == 1.0.3 2008-02-15
2
+
3
+ * Fixed a small bug.
4
+
5
+ == 1.0.2 2008-02-15
6
+
7
+ * Enhanced the before and after filters even more, both now only take one argument.
8
+
9
+ == 1.0.1 2008-02-15
2
10
 
3
11
  * 1 major enhancement:
4
12
  * before and after filters are simplified.
@@ -50,7 +50,7 @@ class Message::Recorder
50
50
 
51
51
  # #record returns a mock object which will store all the messages you send to it.
52
52
  def record
53
- collector = nil
53
+ @collector = nil
54
54
  collector.collect_messages
55
55
  end
56
56
 
@@ -23,7 +23,7 @@ module Message #:nodoc:
23
23
  module VERSION #:nodoc:
24
24
  MAJOR = 1
25
25
  MINOR = 0
26
- TINY = 2
26
+ TINY = 3
27
27
 
28
28
  STRING = [MAJOR, MINOR, TINY].join('.')
29
29
  end
data/website/index.html CHANGED
@@ -33,7 +33,7 @@
33
33
  <h1>message recorder</h1>
34
34
  <div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/message-recorder"; return false'>
35
35
  <p>Get Version</p>
36
- <a href="http://rubyforge.org/projects/message-recorder" class="numbers">1.0.2</a>
36
+ <a href="http://rubyforge.org/projects/message-recorder" class="numbers">1.0.3</a>
37
37
  </div>
38
38
  <h2>&#x2192; &#8216;message-recorder&#8217;</h2>
39
39
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: message-recorder
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simon Menke