mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
Merge pull request #1220 from mduvall/ruby-dependencies
Explicitly add Ruby dependencies to project
This commit is contained in:
commit
39a777a5ea
3 changed files with 21 additions and 1 deletions
4
Gemfile
Normal file
4
Gemfile
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
source 'https://rubygems.org'
|
||||||
|
|
||||||
|
gem 'sass'
|
||||||
|
gem 'bourbon'
|
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.2.12)
|
||||||
|
thor (0.18.1)
|
||||||
|
|
||||||
|
PLATFORMS
|
||||||
|
ruby
|
||||||
|
|
||||||
|
DEPENDENCIES
|
||||||
|
bourbon
|
||||||
|
sass
|
|
@ -31,7 +31,8 @@ var path = require('path'),
|
||||||
'!config.js',
|
'!config.js',
|
||||||
'!CONTRIBUTING.md',
|
'!CONTRIBUTING.md',
|
||||||
'!SECURITY.md',
|
'!SECURITY.md',
|
||||||
'!.travis.yml'
|
'!.travis.yml',
|
||||||
|
'!Gemfile*'
|
||||||
],
|
],
|
||||||
|
|
||||||
configureGrunt = function (grunt) {
|
configureGrunt = function (grunt) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue