Skip to content

Commit ef028c4

Browse files
committed
Add rspec
I learned of the need for this redirect by clicking the link in "Introducing BDD" by Dan North, which was a bibliographical reference in _Developer Testing_ by Alexander Tarlinder.
1 parent 1dd2d12 commit ef028c4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

config/match-redirects.vcl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ if (req.http.host ~ "^gems.") {
22
error 600 "https://rubygems.org";
33
}
44

5+
if (req.http.host ~ "^rspec.") {
6+
error 600 "https://rspec.info";
7+
}
8+
59
if (req.http.host ~ "^mocha.") {
610
error 600 "https://github.com/freerange/mocha";
711
}

0 commit comments

Comments
 (0)