It seems the "stack level too deep" error is a known sass-rails problem. Applying the following downgrade appears to fix it...
---------------------------------- Gemfile ----------------------------------- index 1adcf20..caf5ead 100644 @@ -13,7 +13,7 @@ gem 'pg', :group => :production # Gems used only for assets and not required # in production environments by default. group :assets do - gem 'sass-rails', '~> 3.1.5' + gem 'sass-rails', '3.1.4' gem 'coffee-rails', '~> 3.1.1' -- You received this message because you are subscribed to the Google Groups "Hobo Users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/hobousers?hl=en.
