Skip to content

Commit cc7c97e

Browse files
committed
📝 Replace shell and bash with console
1 parent 32d3263 commit cc7c97e

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

CONTRIBUTING.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ From time to time the appraisal gemfiles in `gemfiles/` will need to be updated.
2828

2929
Create or update them with the commands:
3030

31-
```shell
31+
```console
3232
BUNDLE_GEMFILE=Appraisal.root.gemfile bundle
3333
BUNDLE_GEMFILE=Appraisal.root.gemfile bundle exec appraisal update
3434
bundle exec rake rubocop_gradual:autocorrect
@@ -71,7 +71,7 @@ Take a look at the `reek` list which is the file called `REEK` and find somethin
7171

7272
To refresh the `reek` list:
7373

74-
```bash
74+
```console
7575
bundle exec reek > REEK
7676
```
7777

@@ -80,18 +80,18 @@ bundle exec reek > REEK
8080
NOTE: To run *all* tests have the following databases installed, configured, and running.
8181

8282
1. [RethinkDB](https://rethinkdb.com), an open source, real-time, web database, [installed](https://rethinkdb.com/docs/install/) and [running](https://rethinkdb.com/docs/start-a-server/), e.g.
83-
```bash
83+
```console
8484
brew install rethinkdb
8585
rethinkdb
8686
```
8787
2. [MongoDB](https://docs.mongodb.com/manual/administration/install-community/)
88-
```bash
88+
```console
8989
brew tap mongodb/brew
9090
brew install mongodb-community@4.4
9191
mongod --config /usr/local/etc/mongod.conf
9292
```
9393
3. [CouchDB](https://couchdb.apache.org) - download the .app, or:
94-
```bash
94+
```console
9595
brew install couchdb
9696
```
9797
CouchDB 3.x requires a set admin password set before startup.
@@ -105,24 +105,24 @@ NOTE: To run *all* tests have the following databases installed, configured, and
105105
export COUCHDB_PASSWORD=yourabsolutesecret
106106
```
107107
Then start the CouchDB service
108-
```bash
108+
```console
109109
brew services start couchdb
110110
```
111111

112112
Now you can run any of the tests!
113113

114114
To run all tests on all databases (except RethinkDB):
115-
```bash
115+
```console
116116
bundle exec rake spec:orm:all
117117
```
118118

119119
To run all tests that do not require any additional services, i.e. excluding MongoDB, CouchDB, & RethinkDB:
120-
```bash
120+
```console
121121
bundle exec rake test
122122
```
123123

124124
To run a specific DB:
125-
```bash
125+
```console
126126
# CouchDB / CouchPotato
127127
bundle exec rspec spec spec_orms --tag 'couchdb'
128128

@@ -143,13 +143,13 @@ bundle exec rspec spec_ignored/nobrainer_spec.rb
143143

144144
Run all the default tasks, which includes running the gradually autocorrecting linter, `rubocop-gradual`.
145145

146-
```bash
146+
```console
147147
bundle exec rake
148148
```
149149

150150
Or just run the linter.
151151

152-
```bash
152+
```console
153153
bundle exec rake rubocop_gradual:autocorrect
154154
```
155155

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@ by following the instructions below.
5858

5959
Add my public key (if you haven’t already, expires 2045-04-29) as a trusted certificate:
6060

61-
```shell
61+
```console
6262
gem cert --add <(curl -Ls https://raw.github.com/omniauth/omniauth-identity/main/certs/pboling.pem)
6363
```
6464

6565
You only need to do that once. Then proceed to install with:
6666

67-
```shell
67+
```console
6868
gem install omniauth-identity -P MediumSecurity
6969
```
7070

@@ -74,7 +74,7 @@ This is necessary because not all of `omniauth-identity`’s dependencies are si
7474

7575
If you want to up your security game full-time:
7676

77-
```shell
77+
```console
7878
bundle config set --global trust-policy MediumSecurity
7979
```
8080

0 commit comments

Comments
 (0)