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:
parent
4d290e56a3
commit
fffbf8ae36
3 changed files with 21 additions and 1 deletions
5
Gemfile
Normal file
5
Gemfile
Normal file
|
@ -0,0 +1,5 @@
|
|||
source 'https://rubygems.org'
|
||||
|
||||
gem 'bourbon', "~> 3.1.8"
|
||||
gem "sass", "~> 3.3.1"
|
||||
|
15
Gemfile.lock
Normal file
15
Gemfile.lock
Normal 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)
|
|
@ -10,7 +10,7 @@
|
|||
@import "modules/mixins";
|
||||
/* Sass variables like colours, font sizes, basic styles. */
|
||||
|
||||
@import "normalize.css";
|
||||
@import "normalize";
|
||||
/* Browser cross compatibility normalisation*/
|
||||
|
||||
@import "modules/icons";
|
||||
|
|
Loading…
Add table
Reference in a new issue