Skip to content

Commit

Permalink
Add a reference to the Writing Extensions doc
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobherrington committed Sep 21, 2018
1 parent e4cfe0a commit ea947fe
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions guides/source/developers/getting-started/develop-solidus.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ rails server

## Testing

Solidus uses [RSpec](http://rspec.info/) for testing. Refer to its documentation
Solidus uses [RSpec][rspec] for testing. Refer to its documentation
for more information about the testing library.

If you intend to submit your work to Solidus as a pull request, it must pass all
Expand All @@ -64,6 +64,8 @@ install [ChromeDriver][chromedriver] on your system first.

You can see the build statuses [on our CircleCI status page][circleci].

[rspec]: http://rspec.info/

### Run all Solidus test suites

To execute all of the test specs, run the `build.sh` script at the root of the
Expand Down Expand Up @@ -102,22 +104,25 @@ DB=postgresql bundle exec rspec

### Generate a code coverage report

You can generate a [SimpleCov](https://github.com/colszowka/simplecov) code
You can generate a [SimpleCov][simplecov] code
coverage report by prepending `COVERAGE=true` to the `rspec` command:

```bash
COVERAGE=true bundle exec rspec
```

[simplecov]: https://github.com/colszowka/simplecov

## Develop a Solidus extension

You can add additional features to your store using Solidus extensions. A list
of supported extensions can be found at [extensions.solidus.io][extensions].

You can use the [`solidus_cmd`][solidus-cmd] gem if you want to start creating a
new Solidus extension.
new Solidus extension. Check out the doc on [writing extensions][writing-extensions] to learn more.

[chromedriver]: https://sites.google.com/a/chromium.org/chromedriver/home
[circleci]: https://circleci.com/gh/solidusio/solidus
[extensions]: http://extensions.solidus.io
[writing-extensions]: https://guides.solidus.io/developers/extensions/writing-extensions.html
[solidus-cmd]: https://github.com/solidusio/solidus_cmd

0 comments on commit ea947fe

Please sign in to comment.