validates_timeliness/Gemfile
José Valim 0e3f56e26d Update Gemfile.
* Use gemspec to retrieve timeliness and other gem specifications.
* Remove test group (since it is the only option) and break groups into AR and Mongoid.
2010-11-01 14:47:19 -02:00

20 lines
354 B
Ruby

source 'http://rubygems.org'
gemspec
gem 'ZenTest'
gem 'rails', '3.0.0'
gem 'rspec', '>= 2.0.0.beta.17'
gem 'rspec-rails', '>= 2.0.0.beta.17'
gem 'timecop'
gem 'rspec_tag_matchers'
gem 'ruby-debug'
group :mongoid do
gem 'mongoid', '2.0.0.beta.17'
gem 'bson_ext', '1.0.4'
end
group :active_record do
gem 'sqlite3-ruby', :require => 'sqlite3'
end