bibliotech 0.2.6 → 0.2.7

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: 919a784cbc71ae6bc45f971f18a27f1af5c481e7
4
- data.tar.gz: cf153fa187fc464dfbca7d2651d358cb339dd18b
3
+ metadata.gz: f8ab1fe00c875d062b981cd72231994461afabe4
4
+ data.tar.gz: 79859147aae212198e852bf30f67781bbae12ef4
5
5
  SHA512:
6
- metadata.gz: 8c92e75621478014eafff6776da25d10423f92b5cf47a4561b7688358010403d5982eab03a1b53f176bf2f8528e151fe2bce2623ea93bcbe65c65189b41d0858
7
- data.tar.gz: 8e6083d0a358b9518132518e2dd86031595bdf71b0c95ec9b0ec2f0be64710e9caeb6784f959155d19033ba29f6cff6f68c11fc3357cc4560a556fa96914d51e
6
+ metadata.gz: d3f106ed97cf3b468010ada6c7d8876724dd2f6f6f8a3b31f15d6c29491701b78c273c10eab65ad164a9def9ba2eac203ee99ea5c1c65dd105f397ed3fb788db
7
+ data.tar.gz: eea6a2754eb6f02cd7c393388afe37c2c6d69a3cfed71881e1702f82dec1566d5081043318e5d37d2893d0ba5514336209e15b4cb7879b011750f002d4238bcd
@@ -5,6 +5,7 @@ module BiblioTech
5
5
  module MySql
6
6
  class Export < Builders::Export
7
7
  register :mysql
8
+ register :mysql2
8
9
 
9
10
  def go(command)
10
11
  command.from('mysqldump')
@@ -19,6 +20,7 @@ module BiblioTech
19
20
 
20
21
  class Import < Builders::Import
21
22
  register :mysql
23
+ register :mysql2
22
24
 
23
25
  def go(command)
24
26
  command.from('mysql')
@@ -5,6 +5,8 @@ module BiblioTech
5
5
  module Postgres
6
6
  class Export < Builders::Export
7
7
  register :postgres
8
+ register :postgresql
9
+ register :postgis
8
10
 
9
11
  def go(command)
10
12
  command.from('pg_dump', '-Fc')
@@ -20,6 +22,8 @@ module BiblioTech
20
22
 
21
23
  class Import < Builders::Import
22
24
  register :postgres
25
+ register :postgresql
26
+ register :postgis
23
27
 
24
28
  def go(command)
25
29
  command.from('pg_restore')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bibliotech
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.6
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Evan Dorn
@@ -128,7 +128,7 @@ rdoc_options:
128
128
  - --main
129
129
  - doc/README
130
130
  - --title
131
- - bibliotech-0.2.6 Documentation
131
+ - bibliotech-0.2.7 Documentation
132
132
  require_paths:
133
133
  - lib/
134
134
  required_ruby_version: !ruby/object:Gem::Requirement