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 +4 -4
- data/lib/bibliotech/builders/mysql.rb +2 -0
- data/lib/bibliotech/builders/postgres.rb +4 -0
- 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: f8ab1fe00c875d062b981cd72231994461afabe4
|
4
|
+
data.tar.gz: 79859147aae212198e852bf30f67781bbae12ef4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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.
|
131
|
+
- bibliotech-0.2.7 Documentation
|
132
132
|
require_paths:
|
133
133
|
- lib/
|
134
134
|
required_ruby_version: !ruby/object:Gem::Requirement
|