[Gary] profile_array $LOAD_PATH, Gemfile tweaks
This commit is contained in:
parent
64c87e93a3
commit
52cbaa689f
4
Gemfile
4
Gemfile
|
@ -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
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Reference in New Issue