Skip to content

Commit

Permalink
Fix syntax highlighting in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Graham McIntire authored and PragTob committed Aug 18, 2019
1 parent 739156c commit 60f8f95
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,22 +95,22 @@ Getting started
5. Add the following to your `.gitignore` file to ensure that coverage results
are not tracked by Git (optional):

```
echo "coverage" >> .gitignore
```
Or if you use Windows:
```
echo coverage >> .gitignore
```

If you're making a Rails application, SimpleCov comes with built-in configurations (see below for information on
profiles) that will get you started with groups for your Controllers, Views, Models and Helpers. To use it, the
first two lines of your test_helper should be like this:
```ruby
require 'simplecov'
SimpleCov.start 'rails'
```
```
echo "coverage" >> .gitignore
```
Or if you use Windows:
```
echo coverage >> .gitignore
```

If you're making a Rails application, SimpleCov comes with built-in configurations (see below for information on
profiles) that will get you started with groups for your Controllers, Views, Models and Helpers. To use it, the
first two lines of your test_helper should be like this:
```ruby
require 'simplecov'
SimpleCov.start 'rails'
```
## Example output
Expand Down

0 comments on commit 60f8f95

Please sign in to comment.