ts_vector_tags 0.0.7 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/ts_vector_tags.rb +1 -1
- data/ts_vector_tags.gemspec +1 -1
- metadata +3 -3
data/lib/ts_vector_tags.rb
CHANGED
|
@@ -40,7 +40,7 @@ module TsVectorTags
|
|
|
40
40
|
|
|
41
41
|
# Make sure empty vectors are always saved as null values
|
|
42
42
|
before_save lambda {
|
|
43
|
-
self.tags_vector = nil if self.tags_vector.strip.size == 0
|
|
43
|
+
self.tags_vector = nil if self.tags_vector && self.tags_vector.strip.size == 0
|
|
44
44
|
}
|
|
45
45
|
end
|
|
46
46
|
end
|
data/ts_vector_tags.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ts_vector_tags
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.8
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -75,7 +75,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
75
75
|
version: '0'
|
|
76
76
|
segments:
|
|
77
77
|
- 0
|
|
78
|
-
hash: -
|
|
78
|
+
hash: -1097900741923561733
|
|
79
79
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
80
80
|
none: false
|
|
81
81
|
requirements:
|
|
@@ -84,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
84
84
|
version: '0'
|
|
85
85
|
segments:
|
|
86
86
|
- 0
|
|
87
|
-
hash: -
|
|
87
|
+
hash: -1097900741923561733
|
|
88
88
|
requirements: []
|
|
89
89
|
rubyforge_project: ts_vector_tags
|
|
90
90
|
rubygems_version: 1.8.24
|