evt-event_source-postgres 0.18.0.0 → 0.18.0.1
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/database/uninstall.sh +1 -1
- metadata +4 -5
- data/lib/event_source/loader.rb +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4eda29373f8b006a6b7da843efd7cbd5eb36c938
|
|
4
|
+
data.tar.gz: fbbb31a005f0cbcf805956ce651c1203145926dd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dbb6606a15102541418e096b11529bdfde6f4da9e1dd337f5680895aca83f60faf4d9b7b7762cb59825d5e6c3a111aca47606543d98b350fefb65f7c006e669b
|
|
7
|
+
data.tar.gz: e3a2b043f7ae4755f2469bc95b12756d3fdc470ea328d7c1d92353f84b846e7bc9a351c859a35fb7af57275c0a318596a0c0baa1efbe08093b5a6729ce8f39bc
|
data/database/uninstall.sh
CHANGED
|
@@ -43,7 +43,7 @@ function delete-user {
|
|
|
43
43
|
function delete-database {
|
|
44
44
|
echo "Database name is: $database"
|
|
45
45
|
|
|
46
|
-
database_exists=`psql -tAc "SELECT 1 FROM pg_database WHERE datname='$database'"`
|
|
46
|
+
database_exists=`psql postgres -tAc "SELECT 1 FROM pg_database WHERE datname='$database'"`
|
|
47
47
|
|
|
48
48
|
if [ "$database_exists" = "1" ]; then
|
|
49
49
|
echo "Deleting database \"$database\""
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: evt-event_source-postgres
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.18.0.
|
|
4
|
+
version: 0.18.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- The Eventide Project
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: scripts
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-04-
|
|
11
|
+
date: 2017-04-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: evt-event_source
|
|
@@ -83,9 +83,9 @@ dependencies:
|
|
|
83
83
|
description: " "
|
|
84
84
|
email: opensource@eventide-project.org
|
|
85
85
|
executables:
|
|
86
|
-
- evt-pg-create-db
|
|
87
86
|
- evt-pg-delete-db
|
|
88
87
|
- evt-pg-list-events
|
|
88
|
+
- evt-pg-create-db
|
|
89
89
|
- evt-pg-recreate-db
|
|
90
90
|
extensions: []
|
|
91
91
|
extra_rdoc_files: []
|
|
@@ -106,7 +106,6 @@ files:
|
|
|
106
106
|
- database/test/write-event-expected-version.sql
|
|
107
107
|
- database/test/write-event.sql
|
|
108
108
|
- database/uninstall.sh
|
|
109
|
-
- lib/event_source/loader.rb
|
|
110
109
|
- lib/event_source/postgres.rb
|
|
111
110
|
- lib/event_source/postgres/controls.rb
|
|
112
111
|
- lib/event_source/postgres/controls/category.rb
|
|
@@ -150,7 +149,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
150
149
|
version: '0'
|
|
151
150
|
requirements: []
|
|
152
151
|
rubyforge_project:
|
|
153
|
-
rubygems_version: 2.6.
|
|
152
|
+
rubygems_version: 2.6.8
|
|
154
153
|
signing_key:
|
|
155
154
|
specification_version: 4
|
|
156
155
|
summary: Event source client for PostgreSQL
|
data/lib/event_source/loader.rb
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
lib/event_source/postgres.rb
|