[Gary] profile_array $LOAD_PATH, Gemfile tweaks

This commit is contained in:
Gary Murakami 2012-04-11 11:56:45 -04:00
parent 64c87e93a3
commit 52cbaa689f
2 changed files with 3 additions and 7 deletions

View File

@ -5,7 +5,7 @@ group :development, :test do
gem "bundler"
gem "rake"
gem "json"
gem "bson_ext" unless RUBY_PLATFORM == "java"
gem "bson_ext" unless RUBY_PLATFORM =~ /java/
# Deployment
gem "git"
@ -15,7 +15,7 @@ group :development, :test do
gem "shoulda"
gem "test-unit"
gem "ci_reporter"
gem "ruby-prof" unless RUBY_PLATFORM == "java"
gem "ruby-prof" unless RUBY_PLATFORM =~ /java/
# Java
platforms :jruby do

View File

@ -1,9 +1,5 @@
#!/usr/bin/env ruby
$LOAD_PATH[0,0] = File.join(File.dirname(__FILE__), '..', 'lib')
#
# Note: Ruby 1.9 is faster than 1.8, as expected.
# This suite will be run against the installed version of ruby-mongo-driver.
# The c-extension, bson_ext, will be used if installed.
$LOAD_PATH.unshift(File.expand_path("../../lib", __FILE__))
require 'rubygems'
require 'mongo'