You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-14Lines changed: 14 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -12,21 +12,23 @@ This site uses a Jekyll, a Ruby framework. The required Jekyll version is 1.5.1.
12
12
13
13
There are two ways to run Jekyll to build the site:
14
14
15
-
* using Bundler, so Jekyll and accompanying gems are installed only inside this directory
16
15
* using globally installed Jekyll and accompanying gems
16
+
* using Bundler, so Jekyll and accompanying gems are installed only inside this directory
17
17
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
21
21
installed system-wide.
22
22
23
-
### Building with Bundler
23
+
### Building with global Jekyll
24
24
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:
26
26
27
-
Start the server in the context of the bundle:
27
+
gem install jekyll -v 1.5.1
28
28
29
-
bundle exec jekyll serve
29
+
After cloning, cd into the directory where you cloned this repository and run:
30
+
31
+
jekyll serve
30
32
31
33
and watch the output. You should see something like:
32
34
@@ -37,15 +39,13 @@ and watch the output. You should see something like:
37
39
Generating... done.
38
40
Auto-regeneration: enabled for '/Users/ben/src/scala-lang'
39
41
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
43
43
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`.
45
45
46
-
After cloning, cd into the directory where you cloned this repository and run:
46
+
Start the server in the context of the bundle:
47
47
48
-
jekyll serve
48
+
bundle exec jekyll serve
49
49
50
50
from this point, everything else should be the same, regardless of which method
0 commit comments