mongify 0.0.4 → 0.0.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.
- data/CHANGELOG.rdoc +2 -0
- data/Gemfile.lock +1 -1
- data/README.rdoc +9 -2
- data/lib/mongify/version.rb +1 -1
- data/mongify.gemspec +1 -1
- metadata +4 -4
data/CHANGELOG.rdoc
CHANGED
data/Gemfile.lock
CHANGED
data/README.rdoc
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
A data translator from sql database to mongoDB.
|
|
4
4
|
|
|
5
|
+
Supports MySQL, PostgreSQL, SQLite, Oracle, SQLServer, and DB2 (Basically anything ActiveRecord has built-in)
|
|
6
|
+
Supports any version of MongoDB
|
|
7
|
+
|
|
5
8
|
Learn more about mongoDB at: http://www.mongodb.org
|
|
6
9
|
|
|
7
10
|
== Install
|
|
@@ -12,7 +15,7 @@ Learn more about mongoDB at: http://www.mongodb.org
|
|
|
12
15
|
|
|
13
16
|
== Usage
|
|
14
17
|
|
|
15
|
-
=== WARNING: Mongify is still a work in progress
|
|
18
|
+
=== WARNING: Mongify is still a work in progress.
|
|
16
19
|
|
|
17
20
|
Build a config file such as:
|
|
18
21
|
|
|
@@ -42,7 +45,11 @@ Save the file as <tt>"my_database_translation.rb"</tt> and run the command:
|
|
|
42
45
|
mongify check -c datbase.config
|
|
43
46
|
mongify process database_translation.rb -c database.config
|
|
44
47
|
|
|
45
|
-
**this is subject to change
|
|
48
|
+
**this is subject to change during the alpha (0.0.x release)**
|
|
49
|
+
|
|
50
|
+
== Notes
|
|
51
|
+
I have currently only tested this in Ruby 1.8.7
|
|
52
|
+
More testing will be done once the basic functionality is done
|
|
46
53
|
|
|
47
54
|
== Development
|
|
48
55
|
=== Requirements
|
data/lib/mongify/version.rb
CHANGED
data/mongify.gemspec
CHANGED
|
@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
|
|
|
9
9
|
s.email = ["andrew.kalek@anlek.com"]
|
|
10
10
|
s.homepage = "http://github.com/anlek/mongify"
|
|
11
11
|
s.summary = %q{Translate your SQL data to MongoDB}
|
|
12
|
-
s.description = %q{Mongify allows you to map your
|
|
12
|
+
s.description = %q{Mongify allows you to map your sql data into a mongodb document database.}
|
|
13
13
|
|
|
14
14
|
s.default_executable = "mongify"
|
|
15
15
|
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mongify
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 21
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 5
|
|
10
|
+
version: 0.0.5
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Andrew Kalek
|
|
@@ -221,7 +221,7 @@ dependencies:
|
|
|
221
221
|
version: 2.8.1
|
|
222
222
|
type: :development
|
|
223
223
|
version_requirements: *id013
|
|
224
|
-
description: Mongify allows you to map your
|
|
224
|
+
description: Mongify allows you to map your sql data into a mongodb document database.
|
|
225
225
|
email:
|
|
226
226
|
- andrew.kalek@anlek.com
|
|
227
227
|
executables:
|