rack-recorder 1.0.0 → 1.0.1

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.
Files changed (5) hide show
  1. data/LICENSE +1 -1
  2. data/README.rdoc +3 -3
  3. data/VERSION +1 -1
  4. data/rack-recorder.gemspec +1 -1
  5. metadata +2 -2
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2009 Mark Wotton
1
+ Copyright (c) 2010 Key Options Development
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.rdoc CHANGED
@@ -14,10 +14,10 @@ instead of recording outgoing requests, we record incoming ones.
14
14
  use Rack::Recorder, :file => "/tmp/my_requests.bin"
15
15
 
16
16
 
17
- you can recover the information from the binary with Marshal.load - next addition
18
- will be some integration with Rack::Test
17
+ you can recover the information from the binary file with
18
+
19
+ Rack::Recorder.revive "/tmp/my_requests.bin"
19
20
 
20
- Description goes here.
21
21
 
22
22
  == Note on Patches/Pull Requests
23
23
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.0.1
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{rack-recorder}
8
- s.version = "1.0.0"
8
+ s.version = "1.0.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Mark Wotton"]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 0
8
- - 0
9
- version: 1.0.0
8
+ - 1
9
+ version: 1.0.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Mark Wotton