pg_spec_helper 1.8.1 → 1.8.2
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/CHANGELOG.md +7 -0
- data/lib/pg_spec_helper/functions.rb +1 -1
- data/lib/pg_spec_helper/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2ebec94524d3957bc5a567455f68ca1909a408b959375b48c6e5437b2477d51c
|
|
4
|
+
data.tar.gz: 267491d27ba76d9e38a07243c90e1936b9adcc8a8798ac7b6db27840998f2428
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: da90c294fd7579922d3943d5790ea2198f2675603336885a85691a15a5adcd531170820f84c3c880a8a5f6516ac9f9c08340ffca292bd54f36415756708fbe7c
|
|
7
|
+
data.tar.gz: e2e585f482c3b99a574f4f1e93bca15580a581b0e6ab64d4c6929954f1b606acd528658a62be527e3e0ce5987635a98a1a5a656ccb9e11e82f9fc5975ef89df6
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.8.2](https://github.com/craigulliott/pg_spec_helper/compare/v1.8.1...v1.8.2) (2023-08-06)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* stripping whitespace off the end of the method definition ([027fbc0](https://github.com/craigulliott/pg_spec_helper/commit/027fbc01cc04e79110a97392a6811371c487bab6))
|
|
9
|
+
|
|
3
10
|
## [1.8.1](https://github.com/craigulliott/pg_spec_helper/compare/v1.8.0...v1.8.1) (2023-08-06)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -4,7 +4,7 @@ class PGSpecHelper
|
|
|
4
4
|
module Functions
|
|
5
5
|
# create a function
|
|
6
6
|
def create_function schema_name, function_name, function_definition
|
|
7
|
-
connection.exec <<~SQL
|
|
7
|
+
connection.exec <<~SQL.strip
|
|
8
8
|
CREATE FUNCTION #{schema_name}.#{function_name}() returns trigger language plpgsql AS $$
|
|
9
9
|
BEGIN #{function_definition.strip};
|
|
10
10
|
RETURN NEW;
|