Created
September 23, 2011 19:59
-
-
Save mjtko/1238311 to your computer and use it in GitHub Desktop.
Rails + DataMapper Gemfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| source 'http://rubygems.org' | |
| RAILS_VERSION = '3.1.0' | |
| DM_VERSION = '~> 1.1.0' | |
| RSPEC_VERSION = '~> 2.5.0' | |
| gem 'activeresource', RAILS_VERSION, :require => 'active_resource' | |
| gem 'activesupport', RAILS_VERSION, :require => 'active_support' | |
| gem 'actionpack', RAILS_VERSION, :require => 'action_pack' | |
| gem 'actionmailer', RAILS_VERSION, :require => 'action_mailer' | |
| gem 'railties', RAILS_VERSION, :require => 'rails' | |
| gem 'tzinfo' | |
| gem 'dm-core', DM_VERSION #, :git => 'git://github.com/mjtko/dm-core.git', | |
| # :branch => 'non-default-repo-fix' | |
| gem 'dm-active_model', '1.1.1' #, :git => "git://github.com/datamapper/dm-active_model.git" | |
| gem 'dm-rails', '1.1.1' #, :git => "git://github.com/datamapper/dm-rails.git" | |
| gem 'dm-sqlite-adapter', DM_VERSION | |
| gem 'dm-migrations', DM_VERSION | |
| gem 'dm-validations', DM_VERSION | |
| gem 'dm-constraints', DM_VERSION | |
| gem 'dm-transactions', DM_VERSION | |
| gem 'dm-aggregates', DM_VERSION | |
| gem 'dm-timestamps', DM_VERSION | |
| gem 'dm-observer', DM_VERSION | |
| # Application server | |
| gem 'rainbows' | |
| # Ruby <-> JS | |
| gem 'therubyracer' | |
| # Gems used only for assets and not required | |
| # in production environments by default. | |
| group :assets do | |
| gem 'sass-rails', " ~> 3.1.0" | |
| gem 'coffee-rails', "~> 3.1.0" | |
| gem 'uglifier' | |
| end | |
| gem 'mootools-rails' | |
| # To use debugger | |
| # gem 'ruby-debug19', :require => 'ruby-debug' | |
| group :development do | |
| gem 'rails-dev-tweaks' | |
| end | |
| group :test do | |
| # Pretty printed test output | |
| gem 'turn', :require => false | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment