2
1
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2023-12-13 21:00:40 +01:00

Explicitly add Ruby dependencies to project via Bundler

closes #1220
- This uses Bundler to install Ruby dependencies to handle explicit
  dependencies in provisioned environments
- The initial Gemfile contains SASS dependencies (sass and bourbon gems)
This commit is contained in:
Matt DuVall 2013-10-21 21:43:35 -07:00 committed by Matthew DuVall
parent cf9b5d9441
commit 1580cccbf1
3 changed files with 21 additions and 1 deletions

4
Gemfile Normal file
View file

@ -0,0 +1,4 @@
source 'https://rubygems.org'
gem 'sass'
gem 'bourbon'

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.2.12)
thor (0.18.1)
PLATFORMS
ruby
DEPENDENCIES
bourbon
sass

View file

@ -31,7 +31,8 @@ var path = require('path'),
'!config.js',
'!CONTRIBUTING.md',
'!SECURITY.md',
'!.travis.yml'
'!.travis.yml',
'!Gemfile*'
],
configureGrunt = function (grunt) {