0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00

Re-introduce Ruby

fixes #8, #9, #10, #11
- Add Gemfile
- Swap normalize.css with normalize-scss
- Add grunt-contrib-sass task to compile sass
- Ignore .sass-cache
This commit is contained in:
Fabian Becker 2014-03-11 16:02:54 +01:00
parent 4d290e56a3
commit fffbf8ae36
3 changed files with 21 additions and 1 deletions

5
Gemfile Normal file
View file

@ -0,0 +1,5 @@
source 'https://rubygems.org'
gem 'bourbon', "~> 3.1.8"
gem "sass", "~> 3.3.1"

15
Gemfile.lock Normal file
View file

@ -0,0 +1,15 @@
GEM
remote: https://rubygems.org/
specs:
bourbon (3.1.8)
sass (>= 3.2.0)
thor
sass (3.3.1)
thor (0.18.1)
PLATFORMS
ruby
DEPENDENCIES
bourbon (~> 3.1.8)
sass (~> 3.3.1)

View file

@ -10,7 +10,7 @@
@import "modules/mixins"; @import "modules/mixins";
/* Sass variables like colours, font sizes, basic styles. */ /* Sass variables like colours, font sizes, basic styles. */
@import "normalize.css"; @import "normalize";
/* Browser cross compatibility normalisation*/ /* Browser cross compatibility normalisation*/
@import "modules/icons"; @import "modules/icons";