Update gemfiles to depend on sass3.1

This commit is contained in:
Chris Eppstein 2010-12-01 01:33:53 -08:00
parent 1d9e2cbc8a
commit 247d6dc8e6
4 changed files with 18 additions and 9 deletions

View File

@ -6,7 +6,7 @@ gem "rspec", "~>2.0.0"
gem "rails", "~>3.0.0.rc" gem "rails", "~>3.0.0.rc"
gem "compass-validator", "3.0.0" gem "compass-validator", "3.0.0"
gem "css_parser", "~> 1.0.1" gem "css_parser", "~> 1.0.1"
gem "sass", "~> 3.1" gem "sass", "~> 3.1", :path => "../sass"
gem "rcov" gem "rcov"
gem "rubyzip" gem "rubyzip"
gem "livereload" gem "livereload"

View File

@ -9,7 +9,8 @@ gem 'fssm'
gem 'serve', "1.0.0" gem 'serve', "1.0.0"
gem 'nokogiri' gem 'nokogiri'
gem 'coderay' gem 'coderay'
gem 'haml', ">=3.0.23", :require => 'sass' gem 'sass', :path => "../../sass"
gem 'haml', ">= 3.1.0.alpha.36"
gem 'rake' gem 'rake'
gem 'compass', :path => ".." gem 'compass', :path => ".."
gem 'compass-susy-plugin', ">=0.7.0.pre8" gem 'compass-susy-plugin', ">=0.7.0.pre8"

View File

@ -1,20 +1,27 @@
GIT GIT
remote: git://github.com/chriseppstein/nanoc.git remote: git://github.com/chriseppstein/nanoc.git
revision: 4ecb400489c83fd2068659de0c651733b8dad28f revision: 4eee0e60c5121b90498caa88605d416521553378
specs: specs:
nanoc3 (3.2.0a3) nanoc3 (3.2.0a3)
cri (>= 1.0.0) cri (>= 1.0.0)
PATH PATH
remote: /Users/bmathis/Documents/Workspace/compass-projects/compass remote: ..
specs: specs:
compass (0.11.alpha.1.8f9cce8) compass (0.11.alpha.1.1d9e2cb)
haml (~> 3.0.23) chunky_png (~> 0.10.3)
sass (~> 3.1)
PATH
remote: ../../sass
specs:
sass (3.1.0.alpha.0)
GEM GEM
remote: http://rubygems.org/ remote: http://rubygems.org/
specs: specs:
activesupport (3.0.1) activesupport (3.0.1)
chunky_png (0.10.5)
coderay (0.9.5) coderay (0.9.5)
compass-susy-plugin (0.8.1) compass-susy-plugin (0.8.1)
compass (>= 0.10.0) compass (>= 0.10.0)
@ -22,7 +29,7 @@ GEM
css-slideshow (0.2.0) css-slideshow (0.2.0)
compass (>= 0.10.0.rc3) compass (>= 0.10.0.rc3)
fssm (0.2.0) fssm (0.2.0)
haml (3.0.23) haml (3.1.0.alpha.36)
i18n (0.4.2) i18n (0.4.2)
json (1.4.6) json (1.4.6)
mime-types (1.16) mime-types (1.16)
@ -47,7 +54,7 @@ DEPENDENCIES
compass-susy-plugin (>= 0.7.0.pre8) compass-susy-plugin (>= 0.7.0.pre8)
css-slideshow (= 0.2.0) css-slideshow (= 0.2.0)
fssm fssm
haml (>= 3.0.23) haml (>= 3.1.0.alpha.36)
json json
mime-types mime-types
nanoc3! nanoc3!
@ -55,5 +62,6 @@ DEPENDENCIES
rack rack
rake rake
rdiscount rdiscount
sass!
serve (= 1.0.0) serve (= 1.0.0)
thor thor

View File

@ -6,7 +6,7 @@ module Sass
visitor.visit(self) visitor.visit(self)
visitor.down(self) if children.any? and visitor.respond_to?(:down) visitor.down(self) if children.any? and visitor.respond_to?(:down)
if is_a?(ImportNode) && visitor.import?(self) if is_a?(ImportNode) && visitor.import?(self)
root = Sass::Files.tree_for(import, @options) root = Sass::Engine.for_file(import, @options).to_tree
imported_children = root.children imported_children = root.children
end end