RSpec Documentation provides a simple but powerful system for generating Ruby documentation using RSpec, designed to help you ensure that all code examples in your documentation really work.
Here’s an example:
And the Markdown that created it:
```rspec
subject { 'my subject' }
it { is_expected.to eql 'my subject' }
```
See the Quickstart setup guide to build your first RSpec Documentation project.
Browse the Examples to get a better idea of the typical usage patterns.