Skip to content

Commit

Permalink
Updated gem dependencies for Jekyl 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
grayghostvisuals committed May 17, 2013
1 parent 9da9552 commit 8d1b10e
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 17 deletions.
30 changes: 19 additions & 11 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,34 +4,42 @@ GEM
anemone (0.7.2)
nokogiri (>= 1.3.0)
robotex (>= 1.0.0)
chunky_png (1.2.7)
chunky_png (1.2.8)
classifier (1.3.3)
fast-stemmer (>= 1.0.0)
colorator (0.1)
commander (4.1.3)
highline (~> 1.6.11)
compass (0.12.2)
chunky_png (~> 1.2)
fssm (>= 0.2.7)
sass (~> 3.1)
directory_watcher (1.4.1)
fast-stemmer (1.0.1)
fssm (0.2.9)
jekyll (0.12.0)
fast-stemmer (1.0.2)
fssm (0.2.10)
highline (1.6.19)
jekyll (1.0.2)
classifier (~> 1.3)
directory_watcher (~> 1.1)
kramdown (~> 0.13.4)
colorator (~> 0.1)
commander (~> 4.1.3)
directory_watcher (~> 1.4.1)
kramdown (~> 1.0.2)
liquid (~> 2.3)
maruku (~> 0.5)
pygments.rb (~> 0.3.2)
kramdown (0.13.8)
liquid (2.4.1)
pygments.rb (~> 0.5.0)
safe_yaml (~> 0.7.0)
kramdown (1.0.2)
liquid (2.5.0)
maruku (0.6.1)
syntax (>= 1.0.0)
nokogiri (1.5.9)
posix-spawn (0.3.6)
pygments.rb (0.3.7)
pygments.rb (0.5.0)
posix-spawn (~> 0.3.6)
yajl-ruby (~> 1.1.0)
robotex (1.0.0)
sass (3.2.5)
safe_yaml (0.7.1)
sass (3.2.9)
syntax (1.0.0)
yajl-ruby (1.1.0)

Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ This site is the product of a community of people who want to help to make web a
========
In order to contribute to the website’s codebase, you’ll need to know a bit about [Jekyll](https://github.com/mojombo/jekyll), [Compass](http://compass-style.org), [Sass](http://sass-lang.com), [Twitter Bootstrap](http://twitter.github.com/bootstrap), [Bash](http://www.gnu.org/software/bash/manual/bashref.html#What-is-Bash_003f) and [Markdown](http://daringfireball.net/projects/markdown/). You'll also need to know how to install *[Ruby Gems](https://rvm.io)* and of course have *[Ruby](http://www.ruby-lang.org/en/downloads/)* installed on your machine.

###Gems
###Gems Installation

Run the following to install the necessary gems for **A11Y Project**. (**Hint**: All the cool kids use [ruby version manager](https://rvm.io) to organize ``gemset`` dependencies):
Use the ``bundle`` command to install the necessary gems for the **A11Y Project**. (**Hint**: All the cool kids use [ruby version manager](https://rvm.io) to organize ``gemset`` dependencies):
If you don't have [bundler](http://gembundler.com) installed you'll need to run ``gem install bundler`` before using ``bundle``.

$ bundle

Expand Down Expand Up @@ -50,7 +51,7 @@ The following ``rake`` tasks are available and are used for testing the site loc
rake check_links # Check links for site already running on localhost:4000
rake clean # Clean up generated site
rake server # Start server with --auto
rake check # Check if site will run on Github pages
rake check # Check

**Local Server**

Expand Down
6 changes: 3 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ end
desc 'Build site with Jekyll'
task :build => :clean do
compass
jekyll
jekyll('build')
end

desc 'Start server with --auto'
Expand All @@ -18,7 +18,7 @@ end

desc 'Check if site will run on Github pages'
task :check => :clean do
jekyll('--safe')
jekyll('doctor --safe')
end


Expand Down Expand Up @@ -65,5 +65,5 @@ def compass(opts = '')
end

def jekyll_compass
sh 'compass watch & jekyll --server --auto'
sh 'compass watch & jekyll serve --watch'
end

0 comments on commit 8d1b10e

Please sign in to comment.