28 lines
553 B
Ruby
28 lines
553 B
Ruby
source 'http://rubygems.org'
|
|
|
|
gem 'rails', '3.0.0.beta4'
|
|
# gem 'rails', :git => 'git://github.com/rails/rails.git'
|
|
|
|
gem "mongoid", :git => "http://github.com/durran/mongoid.git"
|
|
gem "bson_ext", "1.0.1"
|
|
gem "nifty-generators"
|
|
gem "haml"
|
|
gem "devise", :git => "git://github.com/plataformatec/devise.git"
|
|
|
|
# Use unicorn as the web server
|
|
# gem 'unicorn'
|
|
|
|
# Deploy with Capistrano
|
|
# gem 'capistrano'
|
|
|
|
# To use debugger
|
|
gem 'ruby-debug'
|
|
|
|
group :test do
|
|
gem 'rspec-rails', ">= 2.0.0.beta.8"
|
|
gem "mocha"
|
|
gem 'webrat'
|
|
gem 'redgreen'
|
|
gem 'autotest'
|
|
end
|
|
|