forked from codebrew/rails3-backbone-coffeescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
31 lines (25 loc) · 734 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
source 'http://rubygems.org'
gem 'rails', '3.0.5'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
# gem 'ruby-debug'
# gem 'ruby-debug19', :require => 'ruby-debug'
gem "haml", ">= 3.0.0"
gem "haml-rails"
gem "compass"
gem "compass-960-plugin"
gem "mongoid", :git => "git://github.com/mongoid/mongoid.git"
gem "bson_ext", ">= 1.2.4"
gem "jammit"
gem "barista", "~> 1.0"
gem "devise", ">= 1.2.rc"
gem 'inherited_resources', '~> 1.2.1'
gem 'has_scope'
group :test, :development do
gem "rspec-rails", ">= 2.5"
gem "database_cleaner"
gem "fabrication"
gem "mongoid-rspec", ">= 1.4.1"
gem 'ruby-debug19'
end