diff --git a/history.txt b/history.txt index 823a8f1..e2d63ff 100644 --- a/history.txt +++ b/history.txt @@ -1,7 +1,7 @@ == 1.1.0.beta2 * Minor enhancements: - * Time handling improved in accordance with CouchRest 1.0.3. Always set to UTC. + * Time handling improved in accordance with CouchRest 1.1.0. Always set to UTC. * Refinements to associations and uniqueness validation for proxy (based on issue found by Gleb Kanterov) * Added :allow_nil and :allow_blank options when creating a new view * Unique Validation now supports scopes! diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 415a2c7..3a865b5 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -32,7 +32,7 @@ RSpec.configure do |config| cr = TEST_SERVER test_dbs = cr.databases.select { |db| db =~ /^#{TESTDB}/ } test_dbs.each do |db| - #cr.database(db).delete! rescue nil + cr.database(db).delete! rescue nil end end end