Sequel rubygemを使い始めたばかりですが、「disconnect」メソッドが機能していないようです。これが私のIRBテストセッションからの出力です:
1.9.3-p194 :002 > require 'sequel'
=> true
1.9.3-p194 :003 > DB = Sequel.connect('postgres://postgres:mypassword@my_pg_host:5432/my_db')
=> #<Sequel::Postgres::Database: "postgres://postgres:mypassword@my_pg_host:5432/my_db">
1.9.3-p194 :004 > DB.test_connection
=> true
1.9.3-p194 :005 > DB.disconnect
=> []
1.9.3-p194 :006 > DB.test_connection
=> true
続編のドキュメントには、これが機能しない理由を示すものは何もありません。
http://sequel.rubyforge.org/rdoc/classes/Sequel/Database.html#method-i-disconnect
私は何かが足りないのですか?