Commit fb6752af4f2afd43578ff36782559cc094111b10

Authored by Caio Almeida
1 parent 53e7fa18

Adding Gemfile and Bash script to compile theme

Showing 3 changed files with 14 additions and 0 deletions   Show diff stats
Gemfile 0 → 100644
... ... @@ -0,0 +1,2 @@
  1 +source 'https://rubygems.org'
  2 +gem 'sass', '3.4.9'
... ...
Gemfile.lock 0 → 100644
... ... @@ -0,0 +1,10 @@
  1 +GEM
  2 + remote: https://rubygems.org/
  3 + specs:
  4 + sass (3.4.9)
  5 +
  6 +PLATFORMS
  7 + ruby
  8 +
  9 +DEPENDENCIES
  10 + sass (= 3.4.9)
... ...
compile-theme.sh 0 → 100755
... ... @@ -0,0 +1,2 @@
  1 +#!/bin/bash
  2 +sass --watch sass/style.scss:style.css
... ...