Skip to content

Instantly share code, notes, and snippets.

@rodriguezartav
Created October 13, 2011 18:43
Show Gist options
  • Save rodriguezartav/1285090 to your computer and use it in GitHub Desktop.
Save rodriguezartav/1285090 to your computer and use it in GitHub Desktop.
Gem File for Rails 3.1 that will run a SpineJS App with stitch , mongo, sass and compass
source 'http://rubygems.org'
gem 'rails', '3.1.0'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'haml-rails'
gem 'sass-rails', " ~> 3.1.0"
gem 'coffee-rails', "~> 3.1.0"
gem 'uglifier'
gem 'compass', :git => 'git://github.com/chriseppstein/compass.git', :branch => 'rails31'
end
gem "stitch-rb", "0.0.3"
gem 'haml'
gem 'coffee-script'
# mongo drivers
gem 'mongo_mapper'
gem 'bson_ext'
group :development, :test do
gem 'sqlite3'
gem 'jasmine'
gem "rspec"
gem "rspec-rails"
# Pretty printed test output
gem 'turn', :require => false
end
group :production do
gem 'pg'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment