mongoid_fulltext 0.7.0 → 0.7.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- MGNlMDBlNzg5YmVkODU3ZTIyYTFiNGI5N2M2ZTRkYTdmODkwNTA5OQ==
5
- data.tar.gz: !binary |-
6
- OWFjYzllZThlODIyOGQzMzJkN2MwYjc4Y2U3Y2I4ODBlMDUwZDA4Yw==
2
+ SHA1:
3
+ metadata.gz: 7598ad330f18bc2f689cb7d23cfbed98e0511179
4
+ data.tar.gz: f8a70744f5f003a93ec3bc844d6875ed5d27bcef
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- ODViNTM3ZWYyMDdiYjk4NjBkNzBlZGEzNzM2YTIxNWYwZmI3ZjBmMzQ0ZTAz
10
- MzUwODY1MWNiNGFmNWIwYWVkMTRkMTc1YjcxM2RjYzMwZjJiOGVlOTEyZjcy
11
- OGZiYmQ0YmVkMGJhMWIwZjg5YjFkNDc1M2ZlM2NiZmU3MThkMWE=
12
- data.tar.gz: !binary |-
13
- MWMyNmYzYmI4MzUxYjYwOWZmM2RmMDgxYzUxOTg2Zjg2NDFhMTRhOGFlYjU2
14
- NmEyNmU0ZWRhZjRiZmFiNGZhNDY3NTc1YThlODRjNjNkZmI0YThhN2RmZDdi
15
- OTNmNGE5MzM4ZjQ1MTk5YTM0OGNhZjcxZjk0YTdkZmEwNDAxNDE=
6
+ metadata.gz: 7beec5ac44c80c95f79be0399a0afaa73adea430ffdb3465977bbf8c65c5c3c138eee26c7af496a57ea5df07fc4081c4d87600e4de7633185a36845c8a49d57b
7
+ data.tar.gz: 4c435425c706d6fef359f27ccac592352357ff2209fb84f6d582dec0f18269aac7bae1266288e8a74b787237f6b9c731587a244513d567844c2287eeeb86f4b5
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ 0.7.1 (11/18/2015)
2
+ ------------------
3
+
4
+ * [#24](https://github.com/artsy/mongoid_fulltext/pull/24): Fix: `undefined method 'create_indexes' for module 'Mongoid::Indexable::ClassMethods'` - [@dblock](https://github.com/dblock).
5
+
1
6
  0.7.0 (9/18/2015)
2
7
  -----------------
3
8
 
@@ -1,5 +1,5 @@
1
1
  module Mongoid
2
2
  module FullTextSearch
3
- VERSION = '0.7.0'
3
+ VERSION = '0.7.1'
4
4
  end
5
5
  end
@@ -1,10 +1,12 @@
1
1
  require 'mongoid'
2
2
  require 'mongoid/compatibility'
3
+
3
4
  if Mongoid::Compatibility::Version.mongoid3?
4
- require_relative 'indexes'
5
+ require 'mongoid/full_text_search/indexes'
5
6
  else
6
- require_relative 'indexable'
7
+ require 'mongoid/full_text_search/indexable'
7
8
  end
9
+
8
10
  require 'unicode_utils'
9
11
  require 'cgi'
10
12
 
metadata CHANGED
@@ -1,55 +1,55 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mongoid_fulltext
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron Windsor
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-18 00:00:00.000000000 Z
11
+ date: 2015-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mongoid
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ! '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '3.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ! '>='
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '3.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: mongoid-compatibility
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ! '>='
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ! '>='
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: unicode_utils
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ! '>='
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ! '>='
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  description:
@@ -58,21 +58,21 @@ executables: []
58
58
  extensions: []
59
59
  extra_rdoc_files: []
60
60
  files:
61
- - .document
62
- - .gitignore
63
- - .rspec
64
- - .rubocop.yml
65
- - .rubocop_todo.yml
66
- - .travis.yml
61
+ - ".document"
62
+ - ".gitignore"
63
+ - ".rspec"
64
+ - ".rubocop.yml"
65
+ - ".rubocop_todo.yml"
66
+ - ".travis.yml"
67
67
  - CHANGELOG.md
68
68
  - Gemfile
69
69
  - LICENSE
70
70
  - README.md
71
71
  - Rakefile
72
72
  - lib/mongoid/full_text_search.rb
73
+ - lib/mongoid/full_text_search/indexable.rb
74
+ - lib/mongoid/full_text_search/indexes.rb
73
75
  - lib/mongoid/full_text_search/version.rb
74
- - lib/mongoid/indexable.rb
75
- - lib/mongoid/indexes.rb
76
76
  - lib/mongoid_fulltext.rb
77
77
  - mongoid_fulltext.gemspec
78
78
  - spec/models/accentless_artwork.rb
@@ -106,17 +106,17 @@ require_paths:
106
106
  - lib
107
107
  required_ruby_version: !ruby/object:Gem::Requirement
108
108
  requirements:
109
- - - ! '>='
109
+ - - ">="
110
110
  - !ruby/object:Gem::Version
111
111
  version: '0'
112
112
  required_rubygems_version: !ruby/object:Gem::Requirement
113
113
  requirements:
114
- - - ! '>='
114
+ - - ">="
115
115
  - !ruby/object:Gem::Version
116
116
  version: 1.3.6
117
117
  requirements: []
118
118
  rubyforge_project:
119
- rubygems_version: 2.4.5
119
+ rubygems_version: 2.4.8
120
120
  signing_key:
121
121
  specification_version: 4
122
122
  summary: Full-text search for the Mongoid ORM, using n-grams extracted from text.