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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 011ca1cc2f94e7166f75d64edb2a18c1251d66da951b0dee3b15960b98cfbb26
4
- data.tar.gz: cac1093c4e64326f2a0cd145f898a1dd928e62196ee8daef329168d0e248c245
3
+ metadata.gz: 2ebec94524d3957bc5a567455f68ca1909a408b959375b48c6e5437b2477d51c
4
+ data.tar.gz: 267491d27ba76d9e38a07243c90e1936b9adcc8a8798ac7b6db27840998f2428
5
5
  SHA512:
6
- metadata.gz: 0d4faaa80024a38a4c70316d69fe4afc500c43cda4f74f03b89ecb5bed9dd402029fb782275f148d89365f872531c2e7740a196f054f1eb97ee4046fae0a2d22
7
- data.tar.gz: a4bfc6c9583c59c071303add4f443d671dc80bb0c5f7a16597b856344938593fa6c14c439815df8273894688cbc041fd5c7de7fac9ac7381bbaadbc9cc7b8ffe
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;
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class PGSpecHelper
4
- VERSION = "1.8.1"
4
+ VERSION = "1.8.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pg_spec_helper
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.1
4
+ version: 1.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Craig Ulliott