kerryb-fakettp 0.2.3 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/README.html +8 -0
  2. data/lib/fakettp/expectation.rb +1 -1
  3. metadata +2 -2
data/README.html CHANGED
@@ -54,6 +54,14 @@
54
54
  <p>To have FakeTTP respond to multiple hostnames, create the appropriate hosts entries. If you&#8217;re using name-based virtual hosts in Apache, add a <em>ServerAlias</em> entry to the virtual host config, under the <em>ServerName</em> line, eg:</p>
55
55
  <p><code>ServerAlias foo.com bar.com</code></p>
56
56
  <h2>Change log</h2>
57
+ <p>0.2.4 (25 Mar 2009)</p>
58
+ <ul>
59
+ <li>Fixed a bug which caused expectations to be run in the wrong order if there were more than nine of them.</li>
60
+ </ul>
61
+ <p>0.2.3 (19 Mar 2009)</p>
62
+ <ul>
63
+ <li>Fixed a bug where expectations were being overwritten on Linux due to Dir.entries not returning results in the expected order</li>
64
+ </ul>
57
65
  <p>0.2.2 (18 Mar 2009)</p>
58
66
  <ul>
59
67
  <li>Only accept control requests (reset, expect, verify) on fakettp.local</li>
@@ -48,7 +48,7 @@ module Fakettp
48
48
  end
49
49
 
50
50
  def self.files
51
- (Dir.entries(EXPECTATION_DIR) - ['.', '..']).sort
51
+ (Dir.entries(EXPECTATION_DIR) - ['.', '..']).sort_by {|a| a.to_i}
52
52
  end
53
53
 
54
54
  private_class_method :next_file_to_create, :next_file_to_read, :files
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kerryb-fakettp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kerry Buckley
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-03-19 00:00:00 -07:00
12
+ date: 2009-03-25 00:00:00 -07:00
13
13
  default_executable: fakettp
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency