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
+18-18Lines changed: 18 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,15 +12,26 @@ 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 globally installed Jekyll and accompanying gems
16
-
* using Bundler, so Jekyll and accompanying gems are installed only inside this directory
15
+
1. using Bundler, so Jekyll and accompanying gems are installed only inside this directory
16
+
2. using globally installed Jekyll and accompanying gems
17
17
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
-
installed system-wide.
18
+
The latter method is the one currently actually used on scala-lang.org. The
19
+
former method is likely most convenient for users who already have a different
20
+
version of Jekyll installed, or who are comfortable using Bundler and who don't
21
+
want anything else installed system-wide.
22
22
23
-
### Building with global Jekyll
23
+
### Option 1) Building with Bundler
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`.
26
+
27
+
Start the server in the context of the bundle:
28
+
29
+
bundle exec jekyll serve
30
+
31
+
from this point, everything else should be the same, regardless of which method
32
+
you used to run Jekyll.
33
+
34
+
### Option 2) Building with global Jekyll
24
35
25
36
Install Jekyll 1.5.1 on your system using RubyGems:
26
37
@@ -39,17 +50,6 @@ and watch the output. You should see something like:
39
50
Generating... done.
40
51
Auto-regeneration: enabled for '/Users/ben/src/scala-lang'
41
52
42
-
### Building with Bundler
43
-
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
-
46
-
Start the server in the context of the bundle:
47
-
48
-
bundle exec jekyll serve
49
-
50
-
from this point, everything else should be the same, regardless of which method
51
-
you used to run Jekyll.
52
-
53
53
### Windows and UTF-8
54
54
55
55
If you get `incompatible encoding` errors when generating the site under Windows, then ensure that the
0 commit comments