Skip to content

Commit

Permalink
Fixes for relish.
Browse files Browse the repository at this point in the history
  • Loading branch information
myronmarston committed Mar 2, 2011
1 parent bd013c9 commit 5bd3bff
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ Gemfile.lock

features/README.md
features/CHANGELOG.md
features/LICENSE
features/LICENSE.md
2 changes: 0 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# Changelog

## In git

[Full Changelog](http://github.com/myronmarston/vcr/compare/v1.7.0...master)
Expand Down
4 changes: 3 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ namespace :ci do
end

def ensure_relish_doc_symlinked(filename)
from = File.expand_path("../features/#{filename}", __FILE__)
from_filename = filename.dup
from_filename << '.md' unless filename =~ /\.md$/
from = File.expand_path("../features/#{from_filename}", __FILE__)
to = File.expand_path("../#{filename}", __FILE__)

if File.symlink?(from)
Expand Down
8 changes: 4 additions & 4 deletions features/.nav
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
getting_started.md (Getting Started)
CHANGELOG.md (Changelog)
about_the_cucumber_features.md (About the Cucumber Features)
LICENSE (License)
- getting_started.md (Getting Started)
- CHANGELOG.md (Changelog)
- about_these_examples.md (About These Examples)
- LICENSE.md (License)
- cassettes:
- format.feature
- no_cassette.feature
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
## About the Cucumber Features

The cucumber features provided here demonstrate all of the major features of
VCR. These features are executable documentation for VCR.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Feature: allow_http_connections_when_no_cassette
Feature: Allow HTTP connections when no cassette

Usually, HTTP requests made when no cassette is inserted will result
in an error (see cassettes/no_cassette.feature). You can set the
Expand Down
2 changes: 0 additions & 2 deletions features/getting_started.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
## Getting Started

### Install it

[sudo] gem install vcr
Expand Down

0 comments on commit 5bd3bff

Please sign in to comment.