Skip to content

Instantly share code, notes, and snippets.

@GertThiel
Created March 7, 2010 18:03
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 GertThiel/324513 to your computer and use it in GitHub Desktop.
Save GertThiel/324513 to your computer and use it in GitHub Desktop.
#############################################################################
# #
# This Gemfile depends on Bundler 0.9.10 and RubyGems 1.3.6 #
# #
#############################################################################
source "http://rubygems.org"
source "http://gems.github.com"
source "http://gemcutter.org"
#### Rails 3
#
git 'git://github.com/rails/rails.git'
#
gem 'activesupport', '~> 3.0.0.beta1', :require => 'active_support'
gem 'actionpack', '~> 3.0.0.beta1', :require => 'action_pack'
gem 'railties', '~> 3.0.0.beta1', :require => 'rails'
gem 'actionmailer', '~> 3.0.0.beta1', :require => 'action_mailer'
#### DataMapper
#
git 'git://github.com/solnic/dm-mongo-adapter.git'
#
gem 'data_objects', '~> 0.10.1'
gem 'dm-mongo-adapter', '~> 0.2.0.pre3', :require => "mongo_adapter"
gem 'do_postgres', '~> 0.10.1'
#
git 'git://github.com/snusnu/dm-core.git', 'branch' => 'active_support'
git "git://github.com/snusnu/dm-more.git", 'branch' => 'active_support'
#
gem 'dm-core', '~> 0.10.2'
gem 'dm-types', '~> 0.10.2'
gem 'dm-validations', '~> 0.10.2'
gem 'dm-constraints', '~> 0.10.2'
gem 'dm-aggregates', '~> 0.10.2'
gem 'dm-timestamps', '~> 0.10.2'
gem 'dm-migrations', '~> 0.10.2'
gem 'dm-observer', '~> 0.10.2'
#
git 'git://github.com/datamapper/dm-rails.git'
#
gem 'dm-rails', '~> 0.10.2'
#### Misc dependencies
#
gem 'haml', '~> 2.2.20'
#### RSpec 2
#
git 'git://github.com/rspec/rspec.git'
git 'git://github.com/rspec/rspec-core.git'
git 'git://github.com/rspec/rspec-expectations.git'
git 'git://github.com/rspec/rspec-mocks.git'
git 'git://github.com/rspec/rspec-rails.git'
#
group(:test) do
gem 'rspec'
gem 'rspec-core', '2.0.0.beta.2', :require => 'rspec/core'
gem 'rspec-expectations', '2.0.0.beta.2', :require => 'rspec/expectations'
gem 'rspec-mocks', '2.0.0.beta.2', :require => 'rspec/mocks'
gem 'rspec-rails', '2.0.0.beta.2'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment