mongery 0.0.1 → 0.0.2
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 +4 -4
- data/README.md +1 -1
- data/lib/mongery/version.rb +1 -1
- data/mongery.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 21bfa4edb20f8deed0f6cdf50a0480c5f08ada06
|
|
4
|
+
data.tar.gz: 0e2446b75dec4e650f4712d6e9d1b05d9ca90bef
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fa8ab72c6b24d24ddd4ffacbe910a171cce25b0d2e11952120da64aef515bdae3b4f22b56de724f25ca919db0d1a999cb1ad06c42720ad302dc54fe67f5a1f72
|
|
7
|
+
data.tar.gz: 494bcbeb04417a58914357b0dd8d6c9572d497eb082064edc75d12c74ef2fefae2d930eb7f3fb2916d0bb80c755c01a6f6016763b75bfa236d9596102423eb09
|
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@ Mongery helps you to migrate off of MongoDB object storage to PostgreSQL with JS
|
|
|
4
4
|
|
|
5
5
|
## Limitation
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Currently, Mongery supports the limited set of queries to use with PostgreSQL 9.3. Most query on JSON data will end up with the full table scan. Index using hstore columns and/or 9.4 `jsonb` types are planned but not implemented.
|
|
8
8
|
|
|
9
9
|
See the spec file in `spec` directory for the supported conversion.
|
|
10
10
|
|
data/lib/mongery/version.rb
CHANGED
data/mongery.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["miyagawa@bulknews.net"]
|
|
11
11
|
spec.summary = %q{Convert MongoDB query to Arel for PostgreSQL + JSON}
|
|
12
12
|
spec.description = %q{}
|
|
13
|
-
spec.homepage = ""
|
|
13
|
+
spec.homepage = "https://github.com/miyagawa/mongery"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0")
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mongery
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tatsuhiko Miyagawa
|
|
@@ -111,7 +111,7 @@ files:
|
|
|
111
111
|
- mongery.gemspec
|
|
112
112
|
- spec/mongery/builder_spec.rb
|
|
113
113
|
- spec/spec_helper.rb
|
|
114
|
-
homepage:
|
|
114
|
+
homepage: https://github.com/miyagawa/mongery
|
|
115
115
|
licenses:
|
|
116
116
|
- MIT
|
|
117
117
|
metadata: {}
|