mongify 1.3.0 → 1.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1b8acafd0be6a12f8eb24750b59af5748aaf41b0
4
- data.tar.gz: ee61b8d9b9cbbdf81cb58e443d39f662c982048b
3
+ metadata.gz: 2666a90ce1ed143778b58f442d33914ff368d1b6
4
+ data.tar.gz: 231908954f10b624d88056e633141035c1aaaa1b
5
5
  SHA512:
6
- metadata.gz: 87d7fed9f8548673b99a170f0171977459630e9efcd107a846467eca69a0b980465c50b69a30a9111107c554f483997756c7313b4c47b3933d60162aa0416e06
7
- data.tar.gz: f3c84de2581d41a28a79dd386992f54b2bac3e68e026700cfc10325939872442bafe63fc853ee3b67cb54d719c539b033a2953484016d51fb5dffe2b583af672
6
+ metadata.gz: 9b6f9ab2f4445bde689ad9d1ea14fb729e88961030a25c72a21a387e333dae7559ff6a5b11295b7c7b0e8957d372bb0910b339f548b6e95ad0088b0d5c19e3c1
7
+ data.tar.gz: fb4dc2a80709689de982330db5fb900d8d602128e700f243b41c7b5e2c4749f2673222797ab6388ca072b5393f0425e190563251a4e9175881fe14bf2d2ad308
@@ -1,4 +1,13 @@
1
- == 1.3.0 / 07 May 2016
1
+ # Mongify ChangeLog
2
+
3
+ ## 1.3.1 / 09 Nov 2016
4
+ * Updated gem requirements to exlucde ActiveRecord/ActiveSupport 5.0
5
+ * Locked down gem versions to prevent issues on newer gems (Like ActiveRecord 5 and Mongo)
6
+ * Updated README with better markdown
7
+ * Updated 'add_dependency' to 'add_runtime_dependency' in gemspec
8
+ * Updated some development gems
9
+
10
+ ## 1.3.0 / 07 May 2016
2
11
  * Updated gem requirements to ActiveRecord 4.2
3
12
  * Updated type casting to ActiveRecord 4.2 style.
4
13
  * NOTE: Timezone is set to UTC by default in the database
@@ -8,35 +17,35 @@
8
17
  * Ensured updated_at doesn't get parsed multiple times in `sync` command (thanks @hammady)
9
18
  * Improved error message during `sync` command (thanks @hammady)
10
19
  * Minor bug fixes
11
- == 1.2.4 / 29 July 2014
20
+ ## 1.2.4 / 29 July 2014
12
21
  * Fixed bug with ActiveSupport::Autoload (thanks [altieres](https://github.com/anlek/mongify/pull/46))
13
22
  * Moved the order of reference updating to be second (after copying tables), this way embed tables can use new references
14
23
  * Small tweak on table.name (making sure rename_to value gets returns first) - It wasn't commited in version 1.2.3
15
- == 1.2.3 / 17 July 2014
24
+ ## 1.2.3 / 17 July 2014
16
25
  * Fixed MS Sql batching issue
17
26
  * Fixed row.delete requiring you to send in a string (vs symbol)
18
27
  * ~~Small tweak on table.name (making sure rename_to value gets returns first)~~
19
- == 1.2.2 / 9 July 2014
28
+ ## 1.2.2 / 9 July 2014
20
29
  * Locked in BSON and rspec gem to versions that will work with Mongify
21
30
  * Updated gems
22
- == 1.2.1 / 16 June 2014
31
+ ## 1.2.1 / 16 June 2014
23
32
  * Fixed polymorphic associations not getting set properly
24
- == 1.2 / 16 June 2014
33
+ ## 1.2 / 16 June 2014
25
34
  * Added batching to embedded and polymorphic tables.
26
35
  * Tweaked progress bar display.
27
36
  * Fixed issue with embedding
28
37
  * Updated mongo drivers to version 1.10.2
29
- == 1.1 / 24 March 2014
38
+ ## 1.1 / 24 March 2014
30
39
  * Sync feature add (thanks to {hammady}[https://github.com/hammady])
31
40
  * Parent unset in before_save (tanks to {nessche}[https://github.com/nessche])
32
41
  * Added batch_size (recommended by {mosheka}[https://github.com/mosheka])
33
42
  * bugs and performance improvments
34
- == 1.0.1 / 24 December 2013
43
+ ## 1.0.1 / 24 December 2013
35
44
  * Updated and locked down gems to prevent Mongify from breaking when rails gets updated.
36
- == 1.0.0 / 28 May 2013
45
+ ## 1.0.0 / 28 May 2013
37
46
  * Fixed issue with MySql when specifying port (thanks to sebastianmarr)
38
47
  * Added information Mongify-Mongoid
39
- == 0.9 / 08 Feb 2013
48
+ ## 0.9 / 08 Feb 2013
40
49
  * Changed Mongify Syntax (thanks to tanema)
41
50
  * Improved error handling
42
51
  * Improved Test output
@@ -44,45 +53,45 @@
44
53
  * Updated Gem Requirements
45
54
  * Removed depricated calls (from Mongo insert statement)
46
55
  * Removed MySql2 dependency (ActiveRecord takes care of that)
47
- == 0.3.1 / 21 Jan 2013
56
+ ## 0.3.1 / 21 Jan 2013
48
57
  * README examples updated
49
58
  * README typos fixed.
50
59
  * Added ability to fetch IDs of fields that have an array of ids
51
- == 0.3 / 12 Sep 2012
60
+ ## 0.3 / 12 Sep 2012
52
61
  * Added ability to work with :key columns that were not :integer values
53
62
  * You can now specify :as value for a type :key column
54
63
  * Tranlsation generator will prefill :as for :key columns
55
64
  * Updated README
56
65
  * Improved tests
57
66
  * Small refactoring
58
- == 0.2.2 / 11 Sep 2012
67
+ ## 0.2.2 / 11 Sep 2012
59
68
  * Fix broken specs (Pranas Kiziela)
60
69
  * Fix translation process when embedding multiple objects (Pranas Kiziela)
61
70
  * Fix typos (Pranas Kiziela)
62
71
  * Rake file fixed to work in Ruby 1.8 and Ruby 1.9
63
- == 0.2.1 / 11 Sep 2012
72
+ ## 0.2.1 / 11 Sep 2012
64
73
  * This version was skipped (internal issues)
65
- == 0.2.0 / 01 Jun 2011
74
+ ## 0.2.0 / 01 Jun 2011
66
75
  * Added the ability to modify parent table when working with embedded tables
67
- == 0.1.7 / 03 May 2011
76
+ ## 0.1.7 / 03 May 2011
68
77
  * Changed logic to NOT translate columns that are not in the translation file. If column is not listed, it's not moved over.
69
78
  * Fixed issue with case sensitivity of column names
70
79
  * Made sure that default value returned is a string (when translating)
71
80
  * Ensured to_s/to_print would output correct column name (even if it's renamed_to)
72
- == 0.1.6 / 13 Apr 2011
81
+ ## 0.1.6 / 13 Apr 2011
73
82
  * Removed no longer needed dependencies
74
83
  * Small tweak to the cucumber tests to ensure correct feedback
75
84
  * Small changes to the README
76
- == 0.1.5 / 08 Apr 2011
85
+ ## 0.1.5 / 08 Apr 2011
77
86
  * Removed Gem::Specification#default_executable= from gemspec because it's deprecated with no replacement
78
87
  * Updated code to work with Ruby 1.9 (thanks to eimermusic for pointing out a ruby 1.9 issue to me)
79
88
  * Added Rake as a development dependency
80
89
  * Added new rake tasks: test, test:rspec, test:cucumber
81
90
  * Updated to newer gems for ActiveSupport and Mongo Drivers.
82
- == 0.1.4 / 04 Mar 2011
91
+ ## 0.1.4 / 04 Mar 2011
83
92
  * Changed gemspec to point to new homepage at 'http://mongify.com'
84
93
  * Small change to attempt to fix issue in Ruby 1.9 (Mongify still doesn't work in 1.9, but making a step towards it)
85
- == 0.1.3 / 21 Feb 2011
94
+ ## 0.1.3 / 21 Feb 2011
86
95
  * Made all exception stem from MongifyError and system always raises a child of MongifyError.
87
96
  * Brought in the progress bar into source
88
97
  * Changed behaviour on storing BigDecimal (now converts into String)
@@ -91,18 +100,18 @@
91
100
  * Added an index on pre_mongified_id to speedup lookup times (Making it 42 times faster on import of embedded tables)
92
101
  * Fixed bug in importing of polymorphic tables where associations are nil
93
102
  * Fixed bug where pre_mongified_id would be a string and not an integer (causing no updates of ref_ids)
94
- == 0.1.2 / 14 Feb 2011
103
+ ## 0.1.2 / 14 Feb 2011
95
104
  * More Improvements to README and RDOC
96
105
  * Added ability to :force => true on a mongodb_connection, forcing it to drop database before processing.
97
106
  * Improved UI output
98
107
  * Added activesupport notifications to keep track of what is happening with the system during import.
99
- == 0.1.1 / 28 Jan 2011
108
+ ## 0.1.1 / 28 Jan 2011
100
109
  * Renamed GenerateDatabase to DatabaseGenerator
101
110
  * Renamed Table#embed? to Table#embedded?
102
111
  * Renamed Table#embed_as_object? to Table#embedded_as_object?
103
112
  * Added support for polymorphic tables
104
113
  * Did some file cleanup for unused files
105
- == 0.1.0 / 21 Jan 2011
114
+ ## 0.1.0 / 21 Jan 2011
106
115
  * Moved from Alpha to Beta! :)
107
116
  * Improved internal RDocs
108
117
  * Improved specs
@@ -110,30 +119,30 @@
110
119
  * Renamed 'translate' command to 'translation'
111
120
  * Added :auto_detect option to columns
112
121
  * Added ability to do a before_save on the table.
113
- == 0.0.9 / 19 Jan 2011
122
+ ## 0.0.9 / 19 Jan 2011
114
123
  * Added ability to rename tables
115
124
  * Fixed bug 'pre_mogified_id' not being removed in all records
116
125
  * Added ability to ignore tables
117
126
  * Added ability to ignore columns
118
127
  * Added ability to rename columns
119
- == 0.0.8 / 18 Jan 2011
128
+ ## 0.0.8 / 18 Jan 2011
120
129
  * Added ability to embed as object on an embedded table
121
130
  * Some bugs fixed
122
131
  * Updated README with new table options
123
132
  * Improved data conversion on processing
124
- == 0.0.7 / 17 Jan 2011
133
+ ## 0.0.7 / 17 Jan 2011
125
134
  * Added mysql2 as a dependency
126
135
  * Improved error message when configuration file not provided
127
136
  * More detailed README file
128
137
  * Removed :default flag for column (there was no need for this)
129
138
  * Removed 'pre_mongified_id' from all collections (including embedded)
130
139
  * Removed the parent_id from an embedded row
131
- == 0.0.6 / 16 Jan 2011
140
+ ## 0.0.6 / 16 Jan 2011
132
141
  * Added the ability to embed tables into collections (currently only one to many relationship)
133
142
  * Few tweaks and improvements in code
134
- == 0.0.5 / 15 Jan 2011
143
+ ## 0.0.5 / 15 Jan 2011
135
144
  * Improved description for mongify.
136
- == 0.0.4 / 15 Jan 2011
145
+ ## 0.0.4 / 15 Jan 2011
137
146
  * Switched the way connection files are written out.
138
147
  * Fixed issue with Configuration File reader
139
148
  * Added a Rake task to setup a mysql database for testing (for development only)
@@ -144,14 +153,14 @@
144
153
  * Added the first version of processing command (very basic)
145
154
  * Indexed columns in table class to speedup lookup time
146
155
  * Added ability to update references once database is populated
147
- == 0.0.3 / 28 Dec 2010
156
+ ## 0.0.3 / 28 Dec 2010
148
157
  * Switched gemspec generation to raw gemspec and added Bundler for easier development
149
158
  * Added LICENSE
150
159
  * Cleaned up the require statements through out the app
151
- == 0.0.2 / 09 Jun 2010
160
+ ## 0.0.2 / 09 Jun 2010
152
161
  * Rewrote the whole CLI interface
153
162
  * Removed datamapper and added active_record
154
163
  * Improved tests to cover most of the code
155
164
  * Changed overall commands for Mongify
156
- == 0.0.1 / 22 Mar 2010
165
+ ## 0.0.1 / 22 Mar 2010
157
166
  * Initial Setup
@@ -1,96 +1,88 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- mongify (1.3.0)
5
- activerecord (>= 4.2)
6
- activesupport (>= 4.2)
7
- bson (>= 1.10.2)
8
- bson_ext (>= 1.10.2)
9
- highline (>= 1.6.1)
10
- mongo (>= 1.10.2)
4
+ mongify (1.3.1)
5
+ activerecord (>= 4.2, < 5.0)
6
+ activesupport (>= 4.2, < 5.0)
7
+ bson (= 1.12.5)
8
+ bson_ext (= 1.12.5)
9
+ highline (= 1.7.8)
10
+ mongo (= 1.12.5)
11
11
 
12
12
  GEM
13
13
  remote: http://rubygems.org/
14
14
  specs:
15
- activemodel (4.2.6)
16
- activesupport (= 4.2.6)
15
+ activemodel (4.2.7.1)
16
+ activesupport (= 4.2.7.1)
17
17
  builder (~> 3.1)
18
- activerecord (4.2.6)
19
- activemodel (= 4.2.6)
20
- activesupport (= 4.2.6)
18
+ activerecord (4.2.7.1)
19
+ activemodel (= 4.2.7.1)
20
+ activesupport (= 4.2.7.1)
21
21
  arel (~> 6.0)
22
- activesupport (4.2.6)
22
+ activesupport (4.2.7.1)
23
23
  i18n (~> 0.7)
24
24
  json (~> 1.7, >= 1.7.7)
25
25
  minitest (~> 5.1)
26
26
  thread_safe (~> 0.3, >= 0.3.4)
27
27
  tzinfo (~> 1.1)
28
28
  arel (6.0.3)
29
- awesome_print (1.6.1)
29
+ awesome_print (1.7.0)
30
30
  bson (1.12.5)
31
31
  bson_ext (1.12.5)
32
32
  bson (~> 1.12.5)
33
33
  builder (3.2.2)
34
- byebug (2.7.0)
35
- columnize (~> 0.3)
36
- debugger-linecache (~> 1.2)
34
+ byebug (9.0.6)
37
35
  coderay (1.1.1)
38
- columnize (0.9.0)
39
36
  coolline (0.5.0)
40
37
  unicode_utils (~> 1.4)
41
- cucumber (2.3.3)
38
+ cucumber (2.4.0)
42
39
  builder (>= 2.1.2)
43
- cucumber-core (~> 1.4.0)
40
+ cucumber-core (~> 1.5.0)
44
41
  cucumber-wire (~> 0.0.1)
45
42
  diff-lcs (>= 1.1.3)
46
- gherkin (~> 3.2.0)
43
+ gherkin (~> 4.0)
47
44
  multi_json (>= 1.7.5, < 2.0)
48
45
  multi_test (>= 0.1.2)
49
- cucumber-core (1.4.0)
50
- gherkin (~> 3.2.0)
46
+ cucumber-core (1.5.0)
47
+ gherkin (~> 4.0)
51
48
  cucumber-wire (0.0.1)
52
- debugger-linecache (1.2.0)
53
49
  diff-lcs (1.2.5)
54
- gherkin (3.2.0)
50
+ gherkin (4.0.0)
55
51
  highline (1.7.8)
56
52
  hirb (0.7.3)
57
53
  i18n (0.7.0)
58
- jazz_fingers (3.0.2)
54
+ jazz_fingers (4.0.1)
59
55
  awesome_print (~> 1.6)
60
56
  hirb (~> 0.7)
61
57
  pry (~> 0.10)
62
- pry-byebug (= 1.3.3)
58
+ pry-byebug (~> 3.4)
63
59
  pry-coolline (~> 0.2)
64
60
  pry-doc (~> 0.6)
65
- pry-remote (>= 0.1.7)
66
61
  json (1.8.3)
67
62
  metaclass (0.0.4)
68
63
  method_source (0.8.2)
69
- minitest (5.8.4)
70
- mocha (1.1.0)
64
+ minitest (5.9.1)
65
+ mocha (1.2.1)
71
66
  metaclass (~> 0.0.1)
72
67
  mongo (1.12.5)
73
68
  bson (= 1.12.5)
74
- multi_json (1.12.0)
69
+ multi_json (1.12.1)
75
70
  multi_test (0.1.2)
76
- mysql2 (0.4.4)
77
- pg (0.18.4)
78
- pry (0.10.3)
71
+ mysql2 (0.4.5)
72
+ pg (0.19.0)
73
+ pry (0.10.4)
79
74
  coderay (~> 1.1.0)
80
75
  method_source (~> 0.8.1)
81
76
  slop (~> 3.4)
82
- pry-byebug (1.3.3)
83
- byebug (~> 2.7)
77
+ pry-byebug (3.4.0)
78
+ byebug (~> 9.0)
84
79
  pry (~> 0.10)
85
80
  pry-coolline (0.2.5)
86
81
  coolline (~> 0.5)
87
- pry-doc (0.8.0)
82
+ pry-doc (0.9.0)
88
83
  pry (~> 0.9)
89
84
  yard (~> 0.8)
90
- pry-remote (0.1.8)
91
- pry (~> 0.9)
92
- slop (~> 3.0)
93
- rake (11.1.2)
85
+ rake (11.3.0)
94
86
  rspec (2.99.0)
95
87
  rspec-core (~> 2.99.0)
96
88
  rspec-expectations (~> 2.99.0)
@@ -102,13 +94,13 @@ GEM
102
94
  diff-lcs (>= 1.1.3, < 2.0)
103
95
  rspec-mocks (2.99.4)
104
96
  slop (3.6.0)
105
- sqlite3 (1.3.11)
97
+ sqlite3 (1.3.12)
106
98
  thread_safe (0.3.5)
107
99
  tzinfo (1.2.2)
108
100
  thread_safe (~> 0.1)
109
101
  unicode_utils (1.4.0)
110
102
  watchr (0.7)
111
- yard (0.8.7.6)
103
+ yard (0.9.5)
112
104
 
113
105
  PLATFORMS
114
106
  ruby
@@ -128,4 +120,4 @@ DEPENDENCIES
128
120
  yard (>= 0.8)
129
121
 
130
122
  BUNDLED WITH
131
- 1.11.2
123
+ 1.13.5
@@ -10,11 +10,15 @@ module Mongify
10
10
  # A hash of available commands
11
11
  # Including description, additional shortcuts to run the commands and requirements to run the command
12
12
  AVAILABLE_COMMANDS = {
13
- :check => {:commands => ['check', 'ck'], :description => "Checks connection for sql and no_sql databases", :required => [:configuration_file]},
14
- :translation => {:commands => ['translation', 'tr'], :description => "Outputs a translation file from a sql connection", :required => [:configuration_file]},
15
- :process => {:commands => ['process', 'pr'], :description => "Takes a translation and process it to mongodb", :required => [:configuration_file, :translation_file]},
16
- :sync => {:commands => ['sync', 'sy'], :description => "Takes a translation and process it to mongodb, only syncs (insert/update) new or updated records based on the updated_at column", :required => [:configuration_file, :translation_file]}
17
- }
13
+ :check => {
14
+ :commands => ['check', 'ck'],
15
+ :description => "Checks connection for sql and no_sql databases",
16
+ :required => [:configuration_file]
17
+ },
18
+ :translation => {:commands => ['translation', 'tr'], :description => "Outputs a translation file from a sql connection", :required => [:configuration_file]},
19
+ :process => {:commands => ['process', 'pr'], :description => "Takes a translation and process it to mongodb", :required => [:configuration_file, :translation_file]},
20
+ :sync => {:commands => ['sync', 'sy'], :description => "Takes a translation and process it to mongodb, only syncs (insert/update) new or updated records based on the updated_at column", :required => [:configuration_file, :translation_file]}
21
+ }
18
22
 
19
23
  # Prints out a nice display of the list of commands
20
24
  def self.list_commands
@@ -1,4 +1,4 @@
1
1
  module Mongify
2
2
  # Mongify's Current Version Number
3
- VERSION = "1.3.0"
3
+ VERSION = "1.3.1"
4
4
  end
@@ -12,12 +12,12 @@ Gem::Specification.new do |s|
12
12
  s.description = %q{Mongify allows you to map your sql data into a mongodb document database with a simple DSL.}
13
13
  s.required_ruby_version = ">= 1.8.7"
14
14
 
15
- s.add_dependency('activerecord', ">= 4.2")
16
- s.add_dependency('activesupport', ">= 4.2")
17
- s.add_dependency('mongo', ">= 1.10.2")
18
- s.add_dependency('bson', ">= 1.10.2")
19
- s.add_dependency('bson_ext', ">= 1.10.2") unless RUBY_PLATFORM == 'java'
20
- s.add_dependency('highline', '>= 1.6.1')
15
+ s.add_runtime_dependency('activerecord', ">= 4.2", "< 5.0")
16
+ s.add_runtime_dependency('activesupport', ">= 4.2", "< 5.0")
17
+ s.add_runtime_dependency('mongo', "= 1.12.5")
18
+ s.add_runtime_dependency('bson', "= 1.12.5")
19
+ s.add_runtime_dependency('bson_ext', "= 1.12.5") unless RUBY_PLATFORM == 'java'
20
+ s.add_runtime_dependency('highline', '= 1.7.8')
21
21
 
22
22
 
23
23
  s.add_development_dependency('rspec', '~> 2.0')
@@ -38,7 +38,7 @@ Gem::Specification.new do |s|
38
38
  s.require_paths = ["lib"]
39
39
 
40
40
  s.extra_rdoc_files = [
41
- "CHANGELOG.rdoc",
41
+ "CHANGELOG.md",
42
42
  "README.rdoc"
43
43
  ]
44
44
  s.rdoc_options = ["--title", "Mongify -- SQL db to Mongo db converter", "--main", "README", "--line-numbers", "--inline-source"]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mongify
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kalek
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-07 00:00:00.000000000 Z
11
+ date: 2016-11-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -17,6 +17,9 @@ dependencies:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '4.2'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '5.0'
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -24,6 +27,9 @@ dependencies:
24
27
  - - ">="
25
28
  - !ruby/object:Gem::Version
26
29
  version: '4.2'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '5.0'
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: activesupport
29
35
  requirement: !ruby/object:Gem::Requirement
@@ -31,6 +37,9 @@ dependencies:
31
37
  - - ">="
32
38
  - !ruby/object:Gem::Version
33
39
  version: '4.2'
40
+ - - "<"
41
+ - !ruby/object:Gem::Version
42
+ version: '5.0'
34
43
  type: :runtime
35
44
  prerelease: false
36
45
  version_requirements: !ruby/object:Gem::Requirement
@@ -38,62 +47,65 @@ dependencies:
38
47
  - - ">="
39
48
  - !ruby/object:Gem::Version
40
49
  version: '4.2'
50
+ - - "<"
51
+ - !ruby/object:Gem::Version
52
+ version: '5.0'
41
53
  - !ruby/object:Gem::Dependency
42
54
  name: mongo
43
55
  requirement: !ruby/object:Gem::Requirement
44
56
  requirements:
45
- - - ">="
57
+ - - '='
46
58
  - !ruby/object:Gem::Version
47
- version: 1.10.2
59
+ version: 1.12.5
48
60
  type: :runtime
49
61
  prerelease: false
50
62
  version_requirements: !ruby/object:Gem::Requirement
51
63
  requirements:
52
- - - ">="
64
+ - - '='
53
65
  - !ruby/object:Gem::Version
54
- version: 1.10.2
66
+ version: 1.12.5
55
67
  - !ruby/object:Gem::Dependency
56
68
  name: bson
57
69
  requirement: !ruby/object:Gem::Requirement
58
70
  requirements:
59
- - - ">="
71
+ - - '='
60
72
  - !ruby/object:Gem::Version
61
- version: 1.10.2
73
+ version: 1.12.5
62
74
  type: :runtime
63
75
  prerelease: false
64
76
  version_requirements: !ruby/object:Gem::Requirement
65
77
  requirements:
66
- - - ">="
78
+ - - '='
67
79
  - !ruby/object:Gem::Version
68
- version: 1.10.2
80
+ version: 1.12.5
69
81
  - !ruby/object:Gem::Dependency
70
82
  name: bson_ext
71
83
  requirement: !ruby/object:Gem::Requirement
72
84
  requirements:
73
- - - ">="
85
+ - - '='
74
86
  - !ruby/object:Gem::Version
75
- version: 1.10.2
87
+ version: 1.12.5
76
88
  type: :runtime
77
89
  prerelease: false
78
90
  version_requirements: !ruby/object:Gem::Requirement
79
91
  requirements:
80
- - - ">="
92
+ - - '='
81
93
  - !ruby/object:Gem::Version
82
- version: 1.10.2
94
+ version: 1.12.5
83
95
  - !ruby/object:Gem::Dependency
84
96
  name: highline
85
97
  requirement: !ruby/object:Gem::Requirement
86
98
  requirements:
87
- - - ">="
99
+ - - '='
88
100
  - !ruby/object:Gem::Version
89
- version: 1.6.1
101
+ version: 1.7.8
90
102
  type: :runtime
91
103
  prerelease: false
92
104
  version_requirements: !ruby/object:Gem::Requirement
93
105
  requirements:
94
- - - ">="
106
+ - - '='
95
107
  - !ruby/object:Gem::Version
96
- version: 1.6.1
108
+ version: 1.7.8
97
109
  - !ruby/object:Gem::Dependency
98
110
  name: rspec
99
111
  requirement: !ruby/object:Gem::Requirement
@@ -256,13 +268,13 @@ executables:
256
268
  - mongify
257
269
  extensions: []
258
270
  extra_rdoc_files:
259
- - CHANGELOG.rdoc
271
+ - CHANGELOG.md
260
272
  - README.rdoc
261
273
  files:
262
274
  - ".gitignore"
263
275
  - ".rspec"
264
276
  - ".yardopts"
265
- - CHANGELOG.rdoc
277
+ - CHANGELOG.md
266
278
  - Gemfile
267
279
  - Gemfile.lock
268
280
  - LICENSE
@@ -358,7 +370,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
358
370
  version: '0'
359
371
  requirements: []
360
372
  rubyforge_project:
361
- rubygems_version: 2.5.1
373
+ rubygems_version: 2.6.7
362
374
  signing_key:
363
375
  specification_version: 4
364
376
  summary: Translate your SQL data to MongoDB with ease
@@ -401,4 +413,3 @@ test_files:
401
413
  - spec/support/database_generator.rb
402
414
  - spec/support/database_output.txt
403
415
  - spec/tmp/.gitignore
404
- has_rdoc: