Skip to content

Commit 41a6d97

Browse files
committed
setup->set up where necessary
1 parent 08dc798 commit 41a6d97

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Don't forget you may need to run yarn after adding packages with yalc to install
112112

113113
### Prereqs
114114

115-
After checking out the repo, making sure you have rvm and nvm setup (setup ruby and node), cd to `spec/dummy` and run `bin/setup` to install ruby dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
115+
After checking out the repo, making sure you have Ruby and Node version managers set up (such as rvm and nvm, or rbenv and nodenv, etc.), cd to `spec/dummy` and run `bin/setup` to install ruby dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
116116

117117
### Local Node Package
118118

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ _A history of the news. A few bullets at the top will also show on the [README.m
77

88
- **October 1, 2020**: See the [spec/dummy](https://github.com/shakacode/react_on_rails/tree/master/spec/dummy) example repo for a simple configuration of Webpack via the rails/webpacker gem
99
that supports SSR.
10-
- **August 2, 2020**: See the example repo of [React on Rails Tutorial With SSR, HMR fast refresh, and TypeScript](https://github.com/shakacode/react_on_rails_demo_ssr_hmr) for a new way to setup the creation of your SSR bundle with `rails/webpacker`.
10+
- **August 2, 2020**: See the example repo of [React on Rails Tutorial With SSR, HMR fast refresh, and TypeScript](https://github.com/shakacode/react_on_rails_demo_ssr_hmr) for a new way to set up the creation of your SSR bundle with `rails/webpacker`.
1111
- July 8, 2020: Release **v12**.
1212
1. **React Hooks Support** for top level components
1313
2. **Typescript bindings**

docs/guides/tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ heroku buildpacks:add --index 1 heroku/nodejs
172172

173173
## Swap out sqlite for postgres:
174174

175-
Heroku requires your app to use Postgresql. If you have not setup your app
175+
Heroku requires your app to use Postgresql. If you have not set up your app
176176
with Postgresql, you need to change your app settings to use this database.
177177

178178
Run the following command (in Rails 6+):
@@ -215,7 +215,7 @@ production:
215215
database: ror_production
216216
```
217217
218-
Then you need to setup postgres so you can run locally:
218+
Then you need to set up Postgres so you can run locally:
219219
220220
```bash
221221
rake db:setup

docs/guides/upgrading-react-on-rails.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ gem "webpacker"
297297
- Find your `webpacker_lite.yml` and rename it to `webpacker.yml`
298298
299299
- Consider copying a default webpacker.yml setup such as https://github.com/shakacode/react-on-rails-v9-rc-generator/blob/master/config/webpacker.yml
300-
- If you are not using the webpacker webpacker setup, be sure to put in `compile: false` in the `default` section.
300+
- If you are not using the webpacker Webpack setup, be sure to put in `compile: false` in the `default` section.
301301
- Alternately, if you are updating from webpacker_lite, you can manually change these:
302302
- Add a default setting
303303
```

spec/dummy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Using NPM for React on Rails
77

88
Read [Dev Initial Setup in Tips for Contributors](/CONTRIBUTING.md#dev-initial-setup).
99

10-
## Setup yalc
10+
## Set up yalc
1111

1212
```sh
1313
cd react_on_rails

0 commit comments

Comments
 (0)