mongoid_location 0.3.3 → 0.3.5
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.
- checksums.yaml +7 -0
- data/lib/mongoid_location/location.rb +3 -1
- data/lib/mongoid_location/version.rb +1 -1
- data/mongoid_location.gemspec +6 -5
- metadata +19 -37
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: e3966aa48019ee3a69e71f1db3b78e4c0a87ab53
|
|
4
|
+
data.tar.gz: 23f750031a64b30dd37a82639d9487fa2bc0b44f
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 06d3535458ce0d8267150a4fb0c85dba454919fa06cc02915d5f41762df7bf89e4fe4e892e9144a2b42ea724e306e799a9aeb511d53442cce968ba9da25bc4fd
|
|
7
|
+
data.tar.gz: a3f1e0c67dff857968ba3fe318d6e2b820ad3b27dc727c67eb004a2897eeba95e957b5e5226e771ec132258fd9d2965ad9090ebefd9ed034f0d45c59514dc11e
|
|
@@ -54,7 +54,9 @@ module Mongoid
|
|
|
54
54
|
|
|
55
55
|
def spatial_index name, options = {}
|
|
56
56
|
self.spatial_fields_indexed << name
|
|
57
|
-
|
|
57
|
+
# fix 3.x version
|
|
58
|
+
if Mongoid::VERSION =~ /^3.\d/
|
|
59
|
+
#if Mongoid::VERSION =~ /3.0/
|
|
58
60
|
index({name => '2d'}, options)
|
|
59
61
|
else
|
|
60
62
|
index [[name, '2d']], options
|
data/mongoid_location.gemspec
CHANGED
|
@@ -4,17 +4,18 @@ require File.expand_path('../lib/mongoid_location/version', __FILE__)
|
|
|
4
4
|
Gem::Specification.new do |gem|
|
|
5
5
|
gem.authors = ["alex_tian"]
|
|
6
6
|
gem.email = ["peterwillcn@gmail.com"]
|
|
7
|
-
gem.description = %q{mongoid_location simplifies mongoid geo location calculations
|
|
7
|
+
gem.description = %q{mongoid_location simplifies mongoid geo location calculations, experimental Mongoid 3.0 support}
|
|
8
8
|
gem.summary = %q{A Mongoid Extension that simplifies and adds support for MongoDB Geo Location Calculations.}
|
|
9
9
|
gem.homepage = "http://www.openxid.com"
|
|
10
|
-
|
|
10
|
+
|
|
11
|
+
gem.name = "mongoid_location"
|
|
12
|
+
gem.platform = Gem::Platform::RUBY
|
|
13
|
+
gem.version = Mongoid::Location::VERSION
|
|
11
14
|
gem.files = `git ls-files`.split($\)
|
|
12
15
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
13
16
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
14
|
-
gem.name = "mongoid_location"
|
|
15
17
|
gem.require_paths = ["lib"]
|
|
16
|
-
|
|
17
|
-
gem.platform = Gem::Platform::RUBY
|
|
18
|
+
|
|
18
19
|
|
|
19
20
|
gem.add_dependency('rgeo', ['>= 0.3.5'])
|
|
20
21
|
gem.add_dependency('mongoid', ['>= 2.5.0'])
|
metadata
CHANGED
|
@@ -1,52 +1,46 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mongoid_location
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 0.3.5
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- alex_tian
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date:
|
|
11
|
+
date: 2013-08-12 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: rgeo
|
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
|
17
|
-
none: false
|
|
18
16
|
requirements:
|
|
19
|
-
- -
|
|
17
|
+
- - '>='
|
|
20
18
|
- !ruby/object:Gem::Version
|
|
21
19
|
version: 0.3.5
|
|
22
20
|
type: :runtime
|
|
23
21
|
prerelease: false
|
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
-
none: false
|
|
26
23
|
requirements:
|
|
27
|
-
- -
|
|
24
|
+
- - '>='
|
|
28
25
|
- !ruby/object:Gem::Version
|
|
29
26
|
version: 0.3.5
|
|
30
27
|
- !ruby/object:Gem::Dependency
|
|
31
28
|
name: mongoid
|
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
|
33
|
-
none: false
|
|
34
30
|
requirements:
|
|
35
|
-
- -
|
|
31
|
+
- - '>='
|
|
36
32
|
- !ruby/object:Gem::Version
|
|
37
33
|
version: 2.5.0
|
|
38
34
|
type: :runtime
|
|
39
35
|
prerelease: false
|
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
41
|
-
none: false
|
|
42
37
|
requirements:
|
|
43
|
-
- -
|
|
38
|
+
- - '>='
|
|
44
39
|
- !ruby/object:Gem::Version
|
|
45
40
|
version: 2.5.0
|
|
46
41
|
- !ruby/object:Gem::Dependency
|
|
47
42
|
name: activesupport
|
|
48
43
|
requirement: !ruby/object:Gem::Requirement
|
|
49
|
-
none: false
|
|
50
44
|
requirements:
|
|
51
45
|
- - ~>
|
|
52
46
|
- !ruby/object:Gem::Version
|
|
@@ -54,7 +48,6 @@ dependencies:
|
|
|
54
48
|
type: :runtime
|
|
55
49
|
prerelease: false
|
|
56
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
57
|
-
none: false
|
|
58
51
|
requirements:
|
|
59
52
|
- - ~>
|
|
60
53
|
- !ruby/object:Gem::Version
|
|
@@ -62,7 +55,6 @@ dependencies:
|
|
|
62
55
|
- !ruby/object:Gem::Dependency
|
|
63
56
|
name: yard
|
|
64
57
|
requirement: !ruby/object:Gem::Requirement
|
|
65
|
-
none: false
|
|
66
58
|
requirements:
|
|
67
59
|
- - ~>
|
|
68
60
|
- !ruby/object:Gem::Version
|
|
@@ -70,7 +62,6 @@ dependencies:
|
|
|
70
62
|
type: :development
|
|
71
63
|
prerelease: false
|
|
72
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
73
|
-
none: false
|
|
74
65
|
requirements:
|
|
75
66
|
- - ~>
|
|
76
67
|
- !ruby/object:Gem::Version
|
|
@@ -78,7 +69,6 @@ dependencies:
|
|
|
78
69
|
- !ruby/object:Gem::Dependency
|
|
79
70
|
name: rspec
|
|
80
71
|
requirement: !ruby/object:Gem::Requirement
|
|
81
|
-
none: false
|
|
82
72
|
requirements:
|
|
83
73
|
- - ~>
|
|
84
74
|
- !ruby/object:Gem::Version
|
|
@@ -86,7 +76,6 @@ dependencies:
|
|
|
86
76
|
type: :development
|
|
87
77
|
prerelease: false
|
|
88
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
89
|
-
none: false
|
|
90
79
|
requirements:
|
|
91
80
|
- - ~>
|
|
92
81
|
- !ruby/object:Gem::Version
|
|
@@ -94,53 +83,47 @@ dependencies:
|
|
|
94
83
|
- !ruby/object:Gem::Dependency
|
|
95
84
|
name: mocha
|
|
96
85
|
requirement: !ruby/object:Gem::Requirement
|
|
97
|
-
none: false
|
|
98
86
|
requirements:
|
|
99
|
-
- -
|
|
87
|
+
- - '>='
|
|
100
88
|
- !ruby/object:Gem::Version
|
|
101
89
|
version: '0'
|
|
102
90
|
type: :development
|
|
103
91
|
prerelease: false
|
|
104
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
105
|
-
none: false
|
|
106
93
|
requirements:
|
|
107
|
-
- -
|
|
94
|
+
- - '>='
|
|
108
95
|
- !ruby/object:Gem::Version
|
|
109
96
|
version: '0'
|
|
110
97
|
- !ruby/object:Gem::Dependency
|
|
111
98
|
name: will_paginate
|
|
112
99
|
requirement: !ruby/object:Gem::Requirement
|
|
113
|
-
none: false
|
|
114
100
|
requirements:
|
|
115
|
-
- -
|
|
101
|
+
- - '>='
|
|
116
102
|
- !ruby/object:Gem::Version
|
|
117
103
|
version: '0'
|
|
118
104
|
type: :development
|
|
119
105
|
prerelease: false
|
|
120
106
|
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
-
none: false
|
|
122
107
|
requirements:
|
|
123
|
-
- -
|
|
108
|
+
- - '>='
|
|
124
109
|
- !ruby/object:Gem::Version
|
|
125
110
|
version: '0'
|
|
126
111
|
- !ruby/object:Gem::Dependency
|
|
127
112
|
name: kaminari
|
|
128
113
|
requirement: !ruby/object:Gem::Requirement
|
|
129
|
-
none: false
|
|
130
114
|
requirements:
|
|
131
|
-
- -
|
|
115
|
+
- - '>='
|
|
132
116
|
- !ruby/object:Gem::Version
|
|
133
117
|
version: '0'
|
|
134
118
|
type: :development
|
|
135
119
|
prerelease: false
|
|
136
120
|
version_requirements: !ruby/object:Gem::Requirement
|
|
137
|
-
none: false
|
|
138
121
|
requirements:
|
|
139
|
-
- -
|
|
122
|
+
- - '>='
|
|
140
123
|
- !ruby/object:Gem::Version
|
|
141
124
|
version: '0'
|
|
142
|
-
description: mongoid_location simplifies mongoid geo location calculations
|
|
143
|
-
|
|
125
|
+
description: mongoid_location simplifies mongoid geo location calculations, experimental
|
|
126
|
+
Mongoid 3.0 support
|
|
144
127
|
email:
|
|
145
128
|
- peterwillcn@gmail.com
|
|
146
129
|
executables: []
|
|
@@ -177,27 +160,26 @@ files:
|
|
|
177
160
|
- mongoid_location.gemspec
|
|
178
161
|
homepage: http://www.openxid.com
|
|
179
162
|
licenses: []
|
|
163
|
+
metadata: {}
|
|
180
164
|
post_install_message:
|
|
181
165
|
rdoc_options: []
|
|
182
166
|
require_paths:
|
|
183
167
|
- lib
|
|
184
168
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
185
|
-
none: false
|
|
186
169
|
requirements:
|
|
187
|
-
- -
|
|
170
|
+
- - '>='
|
|
188
171
|
- !ruby/object:Gem::Version
|
|
189
172
|
version: '0'
|
|
190
173
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
191
|
-
none: false
|
|
192
174
|
requirements:
|
|
193
|
-
- -
|
|
175
|
+
- - '>='
|
|
194
176
|
- !ruby/object:Gem::Version
|
|
195
177
|
version: '0'
|
|
196
178
|
requirements: []
|
|
197
179
|
rubyforge_project:
|
|
198
|
-
rubygems_version:
|
|
180
|
+
rubygems_version: 2.0.0
|
|
199
181
|
signing_key:
|
|
200
|
-
specification_version:
|
|
182
|
+
specification_version: 4
|
|
201
183
|
summary: A Mongoid Extension that simplifies and adds support for MongoDB Geo Location
|
|
202
184
|
Calculations.
|
|
203
185
|
test_files: []
|