mongo-ruby-driver/Gemfile

28 lines
479 B
Ruby
Raw Normal View History

2012-02-07 00:56:58 +00:00
source :rubygems
group :development, :test do
# Generic
gem "bundler"
gem "rake"
gem "json"
gem "bson_ext" unless RUBY_PLATFORM =~ /java/
2012-02-07 00:56:58 +00:00
2012-03-01 01:21:20 +00:00
# Deployment
gem "git"
2012-02-07 00:56:58 +00:00
# Testing
gem "mocha"
gem "shoulda"
gem "test-unit"
gem "ci_reporter"
gem "ruby-prof" unless RUBY_PLATFORM =~ /java/
2012-04-16 21:28:48 +00:00
gem "perftools.rb" unless RUBY_PLATFORM =~ /java/
2012-02-07 00:56:58 +00:00
# Java
platforms :jruby do
gem "bouncy-castle-java"
gem "jruby-launcher"
gem "jruby-openssl"
end
end