Skip to content

Instantly share code, notes, and snippets.

@vparihar01
Created May 2, 2012 12:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vparihar01/2576232 to your computer and use it in GitHub Desktop.
Save vparihar01/2576232 to your computer and use it in GitHub Desktop.
Compass+susy++rails 3.2.2 working GEMFILE conf
source 'http://rubygems.org'
gem 'rails', '3.2.2'
gem 'acts-as-messageable'
gem 'acts-as-taggable-on'
gem 'mysql'
gem 'haml'
gem 'capistrano'
gem "carrierwave"
gem "breadcrumbs_on_rails"
gem 'rails3-jquery-autocomplete'
gem 'will_paginate'
gem 'therubyracer'
gem 'friendly_id'
gem "highcharts-rails"
#gem 'twitter'
#gem 'newrelic_rpm'
gem 'jquery-rails'
# Gems used only for assets and not required
# in production environments by default.
#gem 'sass-rails','3.1.5'
group :assets do
gem 'sprockets'
gem 'sass-rails'
gem 'coffee-rails'
gem 'compass-rails'
gem 'uglifier'
gem 'compass'
gem "compass-susy-plugin", :require => 'susy'
gem 'bootstrap-sass','2.0.2'
end
#group :assets do
# gem 'execjs'
# gem 'sprockets','2.0.3'
# gem 'sass-rails', "~> 3.1.0.rc"
# gem 'coffee-rails', "~> 3.1.0.rc"
# gem 'uglifier'
# gem 'compass'#, :git => 'git://github.com/chriseppstein/compass.git', :branch => 'stable'
# gem 'compass-rails'
# gem "compass-susy-plugin", :require => 'susy'
# gem 'bootstrap-sass', '1.4.4'
#end
group :development do
gem "rails-erd"
gem "haml-rails"
gem 'hirb'
gem 'railroad'
gem 'itslog'
# gem 'annotate',:git => 'git://github.com/jeremyolliver/annotate_models.git', :branch => 'rake_compatibility'
end
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug'
group :test, :development do
gem "rspec-rails"
end
group :production do
gem 'execjs'
gem 'therubyracer'
end
@Mysrt
Copy link

Mysrt commented May 14, 2012

When i tried this conf the bundle installed but i was using versions of both compass and susy that were too old and not compatible with the asset pipeline. So your bundle will install but it wont actually work.

@vparihar01
Copy link
Author

Thanks Myrst for this information.
I updated my compass and susy gem version .Also i updated the latest working gist .. Which has working compass and susy Gemfile configuration with settings in application.rb

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment