Skip to content

Commit

Permalink
Explicitly add Ruby dependencies to project via Bundler
Browse files Browse the repository at this point in the history
closes TryGhost#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)
  • Loading branch information
mduvall committed Oct 24, 2013
1 parent cf9b5d9 commit 1580ccc
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source 'https://rubygems.org'

gem 'sass'
gem 'bourbon'
15 changes: 15 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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
3 changes: 2 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ var path = require('path'),
'!config.js',
'!CONTRIBUTING.md',
'!SECURITY.md',
'!.travis.yml'
'!.travis.yml',
'!Gemfile*'
],

configureGrunt = function (grunt) {
Expand Down

0 comments on commit 1580ccc

Please sign in to comment.