Skip to content

Commit

Permalink
Improve setup documentation (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsenramon authored Dec 12, 2016
1 parent 1c8a500 commit 1a0dada
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 16 deletions.
28 changes: 15 additions & 13 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,19 @@ GEM
i18n (~> 0.7)
minitest (~> 5.1)
tzinfo (~> 1.1)
addressable (2.4.0)
autoprefixer-rails (6.5.1.1)
addressable (2.5.0)
public_suffix (~> 2.0, >= 2.0.2)
autoprefixer-rails (6.5.3.1)
execjs
colorator (1.1.0)
colored (1.2)
concurrent-ruby (1.0.2)
ethon (0.9.1)
ethon (0.10.1)
ffi (>= 1.3.0)
execjs (2.7.0)
extras (0.1.0)
forwardable-extended (~> 2.5)
fastimage (2.0.0)
fastimage (2.0.1)
addressable (~> 2)
ffi (1.9.14)
forwardable-extended (2.6.0)
Expand All @@ -31,7 +32,7 @@ GEM
typhoeus (~> 0.7)
yell (~> 2.0)
i18n (0.7.0)
jekyll (3.3.0)
jekyll (3.3.1)
addressable (~> 2.4)
colorator (~> 1.0)
jekyll-sass-converter (~> 1.0)
Expand All @@ -50,27 +51,28 @@ GEM
rack (> 1, < 2)
sprockets (~> 3.3, < 3.7)
jekyll-paginate (1.1.0)
jekyll-sass-converter (1.4.0)
jekyll-sass-converter (1.5.0)
sass (~> 3.4)
jekyll-sitemap (0.12.0)
jekyll (~> 3.3)
jekyll-watch (1.5.0)
listen (~> 3.0, < 3.1)
kramdown (1.12.0)
kramdown (1.13.1)
liquid (3.0.6)
listen (3.0.8)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
mercenary (0.3.6)
mini_magick (4.5.1)
mini_magick (4.6.0)
mini_portile2 (2.1.0)
minitest (5.9.1)
minitest (5.10.1)
nokogiri (1.6.8.1)
mini_portile2 (~> 2.1.0)
parallel (1.9.0)
parallel (1.10.0)
pathutil (0.14.0)
forwardable-extended (~> 2.6)
rack (1.6.4)
public_suffix (2.0.4)
rack (1.6.5)
rb-fsevent (0.9.8)
rb-inotify (0.9.7)
ffi (>= 0.5.0)
Expand All @@ -85,7 +87,7 @@ GEM
ethon (>= 0.8.0)
tzinfo (1.2.2)
thread_safe (~> 0.1)
uglifier (3.0.3)
uglifier (3.0.4)
execjs (>= 0.3.0, < 3)
yell (2.0.7)

Expand All @@ -104,4 +106,4 @@ DEPENDENCIES
uglifier

BUNDLED WITH
1.12.5
1.13.6
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@ Used tools

### Installation

If you haven't installed Ruby then go ahead and install it with: `brew install Ruby`.
If you haven't installed the following tools then go ahead and do so (make sure you have [Homebrew](http://brew.sh/) installed):

brew install ruby
brew install npm

Next setup your environment:

bin/setup
Expand Down
8 changes: 7 additions & 1 deletion _posts/2016-10-17-introducing-chalk.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,13 @@ tags: [web, jekyll]

## Installation

If you haven't installed Ruby then go ahead and install it with: `brew install Ruby`.
If you haven't installed the following tools then go ahead and do so (make sure you have [Homebrew](http://brew.sh/) installed):

{% highlight bash %}
brew install ruby
brew install npm
{% endhighlight %}

Next setup your environment:

{% highlight bash %}
Expand Down
2 changes: 1 addition & 1 deletion bin/setup
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ bundle check || bundle install
bundle update

# Set up JS dependencies via Bower.
bower --version > /dev/null || npm install -g bower
npm i -g bower
bower install

0 comments on commit 1a0dada

Please sign in to comment.