Skip to content

Instantly share code, notes, and snippets.

@willrjmarshall
Created March 24, 2014 05:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save willrjmarshall/9734658 to your computer and use it in GitHub Desktop.
Save willrjmarshall/9734658 to your computer and use it in GitHub Desktop.
File to import not found or unreadable: foundation/variables.
Load paths:
Sass::Rails::Importer(/Users/willmarshall/Projects/openfoodweb/app/assets/stylesheets/darkswarm/sidebar.css.sass)
/Users/willmarshall/Projects/openfoodweb/app/assets/stylesheets
/Users/willmarshall/.rvm/gems/ruby-1.9.3-p392@openfoodnetwork/gems/compass-0.12.4/frameworks/blueprint/stylesheets
/Users/willmarshall/.rvm/gems/ruby-1.9.3-p392@openfoodnetwork/gems/compass-0.12.4/frameworks/compass/stylesheets
Compass::SpriteImporter
/Users/willmarshall/Projects/openfoodweb/lib/chili/eaterprises_feature/app/assets/stylesheets/eaterprises_feature
(in /Users/willmarshall/Projects/openfoodweb/app/assets/stylesheets/darkswarm/sidebar.css.sass)
# =========================================== layout
!!!
%html
%head
%meta{charset: 'utf-8'}/
%meta{name: 'viewport', content: "width=device-width,initial-scale=1.0"}/
%title= content_for?(:title) ? yield(:title) : 'Welcome to Open Food Network'
= favicon_link_tag "favicon.png"
= stylesheet_link_tag "darkswarm/all"
= javascript_include_tag "darkswarm/all"
= render "layouts/bugherd_script"
= csrf_meta_tags
%body.off-canvas{"ng-app" => "Darkswarm"}
= render partial: "shared/menu"
= display_flash_messages
= render "shared/sidebar"
%section{ role: "main" }
= yield
#footer
= yield :scripts
# =========================================== darkswarm/all.scss
/*
* This is a manifest file that'll automatically include all the stylesheets available in this directory
* and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
* the top of the compiled file, but it's generally better to create a new file per style scope.
*= require_self
*= require foundation
*= require_tree .
*/
# =========================================== Gemfile
source 'https://rubygems.org'
ruby "1.9.3"
gem 'rails', '3.2.17'
gem 'pg'
gem 'spree', :github => 'openfoodfoundation/spree', :branch => '1-3-stable'
gem 'spree_i18n', :github => 'spree/spree_i18n'
gem 'spree_auth_devise', :github => 'spree/spree_auth_devise', :branch => '1-3-stable'
gem 'spree_paypal_express', :github => 'openfoodfoundation/spree_paypal_express', :branch => '1-3-stable'
gem 'comfortable_mexican_sofa'
# Fix bug in simple_form preventing collection_check_boxes usage within form_for block
# When merged, revert to upstream gem
gem 'simple_form', :github => 'RohanM/simple_form'
gem 'unicorn'
gem 'angularjs-rails'
gem 'bugsnag'
gem 'newrelic_rpm'
gem 'haml'
gem 'sass', "~> 3.2"
gem 'aws-sdk'
gem 'db2fog'
gem 'andand'
gem 'truncate_html'
gem 'representative_view'
gem 'rabl'
gem 'oj'
gem 'chili', :github => 'openfoodfoundation/chili'
gem 'deface', :github => 'spree/deface', :ref => '1110a13'
gem 'paperclip'
gem 'geocoder'
gem 'gmaps4rails'
gem 'spinjs-rails'
gem 'rack-ssl', :require => 'rack/ssl'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'compass-rails'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
gem 'turbo-sprockets-rails3'
end
gem "foundation-rails"
gem 'foundation_rails_helper', github: 'willrjmarshall/foundation_rails_helper', branch: "rails3"
gem 'jquery-rails'
group :test, :development do
# Pretty printed test output
gem 'turn', '~> 0.8.3', :require => false
gem 'rspec-rails'
gem 'shoulda-matchers'
gem 'factory_girl_rails', :require => false
gem 'faker'
gem 'capybara'
gem 'database_cleaner', '0.7.1', :require => false
gem 'simplecov', :require => false
gem 'awesome_print'
gem 'letter_opener'
gem 'timecop'
gem 'poltergeist'
gem 'json_spec'
gem 'unicorn-rails'
end
group :test do
gem 'webmock'
end
group :chili do
gem 'eaterprises_feature', path: 'lib/chili/eaterprises_feature'
gem 'local_organics_feature', path: 'lib/chili/local_organics_feature'
end
group :development do
gem 'pry-debugger'
gem 'debugger-linecache'
gem 'guard'
gem 'guard-livereload'
gem 'rack-livereload'
gem 'guard-rails'
gem 'guard-zeus'
gem 'guard-rspec'
end
# =========================================== sidebar.css.sass
@import "foundation/variables"
@import "foundation/components/global"
@import "foundation/components/buttons"
@import "foundation/components/panels"
#sidebar
margin-top: 1.875em
$bg: #222
$padding: emCalc(20)
$adjust: true
$adjust: true
@include panel($bg, $padding, $adjust)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment