diff --git a/.gitignore b/.gitignore index 029376f..7f8854f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ _site .gist-cache +.sass-cache \ No newline at end of file diff --git a/Gemfile b/Gemfile index 0d0dabb..8dbac14 100644 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,4 @@ source "http://rubygems.org" gem "rake" gem "jekyll" +gem "susy" diff --git a/Gemfile.lock b/Gemfile.lock index 041370a..f06c113 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,13 +1,19 @@ GEM remote: http://rubygems.org/ specs: + chunky_png (1.2.9) classifier (1.3.3) fast-stemmer (>= 1.0.0) colorator (0.1) commander (4.1.5) highline (~> 1.6.11) + compass (0.12.2) + chunky_png (~> 1.2) + fssm (>= 0.2.7) + sass (~> 3.1) fast-stemmer (1.0.2) ffi (1.9.3) + fssm (0.2.10) highline (1.6.20) jekyll (1.3.0) classifier (~> 1.3) @@ -38,6 +44,10 @@ GEM ffi (>= 0.5.0) redcarpet (2.3.0) safe_yaml (0.9.7) + sass (3.2.12) + susy (1.0.9) + compass (>= 0.12.2) + sass (>= 3.2.0) syntax (1.0.0) yajl-ruby (1.1.0) @@ -47,3 +57,4 @@ PLATFORMS DEPENDENCIES jekyll rake + susy diff --git a/config.rb b/config.rb new file mode 100644 index 0000000..92d7ea4 --- /dev/null +++ b/config.rb @@ -0,0 +1,25 @@ +require 'susy' + +http_path = "/" +css_dir = "stylesheets" +sass_dir = "_sass" +images_dir = "images" +fonts_dir = "fonts" +javascripts_dir = "javascripts" +output_style = :compressed + +# You can select your preferred output style here (can be overridden via the command line): +# output_style = :expanded or :nested or :compact or :compressed + +# To enable relative paths to assets via compass helper functions. Uncomment: +# relative_assets = true + +# To disable debugging comments that display the original location of your selectors. Uncomment: +# line_comments = false + + +# If you prefer the indented syntax, you might want to regenerate this +# project again passing --syntax sass, or you can uncomment this: +# preferred_syntax = :sass +# and then run: +# sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass