Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a reference to the Writing Extensions doc #2851

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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