Skip to content

Commit ae37bf4

Browse files
committed
put the non-Bundler instructions first
at @heathermiller's request
1 parent 4ffc8fd commit ae37bf4

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,23 @@ This site uses a Jekyll, a Ruby framework. The required Jekyll version is 1.5.1.
1212

1313
There are two ways to run Jekyll to build the site:
1414

15-
* using Bundler, so Jekyll and accompanying gems are installed only inside this directory
1615
* using globally installed Jekyll and accompanying gems
16+
* using Bundler, so Jekyll and accompanying gems are installed only inside this directory
1717

18-
The latter method is the one currently actually used on
19-
scala-lang.org, but the former method may be more convenient for users
20-
who are comfortable using Bundler and who don't want anything else
18+
The former method is the one currently actually used on
19+
scala-lang.org. The latter method may be more convenient for users who
20+
are comfortable using Bundler and who don't want anything else
2121
installed system-wide.
2222

23-
### Building with Bundler
23+
### Building with global Jekyll
2424

25-
`cd` into the directory where you cloned this repository, then install the required gems with `bundle install`. This will automatically put the gems into `./bundle-vendor/bundle`.
25+
Install Jekyll 1.5.1 on your system using RubyGems:
2626

27-
Start the server in the context of the bundle:
27+
gem install jekyll -v 1.5.1
2828

29-
bundle exec jekyll serve
29+
After cloning, cd into the directory where you cloned this repository and run:
30+
31+
jekyll serve
3032

3133
and watch the output. You should see something like:
3234

@@ -37,15 +39,13 @@ and watch the output. You should see something like:
3739
Generating... done.
3840
Auto-regeneration: enabled for '/Users/ben/src/scala-lang'
3941

40-
### Building with global Jekyll
41-
42-
You can install Jekyll 1.5.1 on your system without involving Bundler by using RubyGems:
42+
### Building with Bundler
4343

44-
gem install jekyll -v 1.5.1
44+
`cd` into the directory where you cloned this repository, then install the required gems with `bundle install`. This will automatically put the gems into `./bundle-vendor/bundle`.
4545

46-
After cloning, cd into the directory where you cloned this repository and run:
46+
Start the server in the context of the bundle:
4747

48-
jekyll serve
48+
bundle exec jekyll serve
4949

5050
from this point, everything else should be the same, regardless of which method
5151
you used to run Jekyll.

0 commit comments

Comments
 (0)