mattetti-couchrest 0.14.1 → 0.14.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -52,10 +52,6 @@ module CouchRest
52
52
  return true if @options[:allow_nil] && field_value.nil?
53
53
  return false if !@options[:allow_nil] && field_value.nil?
54
54
 
55
- if target.class.properties.has_property?(field_name)
56
- return true unless target.attribute_dirty?(field_name)
57
- end
58
-
59
55
  confirm_value = target.instance_variable_get("@#{@confirm_field_name}")
60
56
  field_value == confirm_value
61
57
  end
data/lib/couchrest.rb CHANGED
@@ -27,7 +27,7 @@ require 'couchrest/monkeypatches'
27
27
 
28
28
  # = CouchDB, close to the metal
29
29
  module CouchRest
30
- VERSION = '0.14.1'
30
+ VERSION = '0.14.2'
31
31
 
32
32
  autoload :Server, 'couchrest/core/server'
33
33
  autoload :Database, 'couchrest/core/database'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mattetti-couchrest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.1
4
+ version: 0.14.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - J. Chris Anderson