Skip to content

Commit

Permalink
Install gems into vendor/bundle. Gitignore vendor/bundle, and tell je…
Browse files Browse the repository at this point in the history
…kyll not to include it in the site.
  • Loading branch information
Benji Shine committed Nov 29, 2014
1 parent c55e13f commit 24df9c5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .bundle/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
BUNDLE_PATH: vendor/bundle
BUNDLE_DISABLE_SHARED_GEMS: '1'
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ _site
.project
.settings
*~
vendor/bundle
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,11 @@ in order to be accepted.

## Dependencies ##

This site uses a Jekyll, a ruby framework. You'll need ruby and bundler installed; see [Jekyll installation instructions](http://jekyllrb.com/docs/installation/) for the details.
This site uses a Jekyll, a Ruby framework. You'll need Ruby and Bundler installed; see [Jekyll installation instructions](http://jekyllrb.com/docs/installation/) for the details.

## Building & Viewing ##

cd into the directory where you cloned this repository, then install the required gems:

bundle install
cd into the directory where you cloned this repository, then install the required gems with `bundle install`. This will automatically put the gems into `./vendor/bundle`.

Start the server in the context of the bundle:

Expand Down
3 changes: 1 addition & 2 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,4 @@ scala-version: 2.10.0
highlighter: pygments
permalink: /:categories/:title.html
baseurl:

# markdown: rdiscount
exclude: ["vendor"]

0 comments on commit 24df9c5

Please sign in to comment.