minor: hash_with_indifferent fix

This commit is contained in:
Kyle Banker 2010-10-13 18:13:47 -04:00
parent 80044b9a58
commit d1a0f90b5e
2 changed files with 1 additions and 7 deletions

View File

@ -172,12 +172,6 @@ task :ydoc do
system "yardoc lib/**/*.rb lib/mongo/**/*.rb lib/bson/**/*.rb -e docs/yard_ext.rb -p docs/templates -o #{out} --title MongoRuby-#{Mongo::VERSION}"
end
desc "Publish documentation to mongo.rubyforge.org"
task :publish => [:rdoc] do
# Assumes docs are in ./html
Rake::RubyForgePublisher.new(GEM, RUBYFORGE_USER).upload
end
namespace :gem do
desc "Install the gem locally"

View File

@ -1,6 +1,6 @@
# encoding:utf-8
require './test/test_helper'
#require './test/support/hash_with_indifferent_access'
require './test/support/hash_with_indifferent_access'
class HashWithIndifferentAccessTest < Test::Unit::TestCase
include BSON