From 842c1a42c2f2f34e2bdca5dd2d14a63161134b8e Mon Sep 17 00:00:00 2001 From: Mohammed Chisti <93mchisti@gmail.com> Date: Fri, 13 Jan 2017 20:24:43 -0500 Subject: [PATCH] Update READEME.md Didn't know how to add Skeleton without a gem. So I learned how to install bootstrap without a gem, then figured out how to install Skeleton without a gem. Thought it would be nice for some people like me to just have something like this on the page too. --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index 6914f38..118749d 100644 --- a/README.md +++ b/README.md @@ -35,3 +35,21 @@ command. This should add: into `app/assets/stylesheets/application.css`. That's it, have fun! + +### Installation Without Gemfile + +Download Skeleton-2.0.4.zip [here](https://github.com/dhg/Skeleton/releases/download/2.0.4/Skeleton-2.0.4.zip) or see if there is a more up to date version of [skeleton](http://getskeleton.com). + +Unzip `Skeleton-2.0.4.zip` from your downloads folder. + +Copy `Skeleton-2.0.4/css/normalize.css` & `Skeleton-2.0.4/css/skeleton.css` into your `vendor/assets/stylesheets` + +Add the following lines: + +```ruby +*=require normalize.css +*=require skeleton.css +``` +into `app/assets/stylesheets/application.css` before `*=require_self`. + +That's it, have fun!