pg_spec_helper 1.8.2 → 1.8.3

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
  SHA256:
3
- metadata.gz: 2ebec94524d3957bc5a567455f68ca1909a408b959375b48c6e5437b2477d51c
4
- data.tar.gz: 267491d27ba76d9e38a07243c90e1936b9adcc8a8798ac7b6db27840998f2428
3
+ metadata.gz: 0273accb1b779e4bc7110b9ddb01642f49c4417dfe6a3460d2f17d4ce8534ba4
4
+ data.tar.gz: e5524ec22aa600611f4703e3a34bde74d6303bc829a2d708f486628dc125e0dd
5
5
  SHA512:
6
- metadata.gz: da90c294fd7579922d3943d5790ea2198f2675603336885a85691a15a5adcd531170820f84c3c880a8a5f6516ac9f9c08340ffca292bd54f36415756708fbe7c
7
- data.tar.gz: e2e585f482c3b99a574f4f1e93bca15580a581b0e6ab64d4c6929954f1b606acd528658a62be527e3e0ce5987635a98a1a5a656ccb9e11e82f9fc5975ef89df6
6
+ metadata.gz: c8e3bdf16a61937ec635969008f29bacac74ee58d5bff2995b3279bd9eeb7e3d702ac8b8b7b1489ca29a7018dd30c5d76fdad23634177e2b35d248da6422bb9f
7
+ data.tar.gz: 3586365ba81191a108877387224d71634b93db0712b89ac43746de5716a027cca1c24fd3c647950b6ab09475b62f028d7c6fe198440b9a95671632a38e635dcd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.8.3](https://github.com/craigulliott/pg_spec_helper/compare/v1.8.2...v1.8.3) (2023-08-06)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * stripping whitespace off the end of the method definition ([df63ae9](https://github.com/craigulliott/pg_spec_helper/commit/df63ae96faf090b98220a9e64d87dbaaf89135d0))
9
+
3
10
  ## [1.8.2](https://github.com/craigulliott/pg_spec_helper/compare/v1.8.1...v1.8.2) (2023-08-06)
4
11
 
5
12
 
@@ -4,11 +4,11 @@ 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.strip
8
- CREATE FUNCTION #{schema_name}.#{function_name}() returns trigger language plpgsql AS $$
9
- BEGIN #{function_definition.strip};
7
+ connection.exec <<~SQL
8
+ CREATE FUNCTION #{schema_name}.#{function_name}() returns trigger language plpgsql AS
9
+ $$BEGIN #{function_definition.strip};
10
10
  RETURN NEW;
11
- END $$;
11
+ END$$;
12
12
  SQL
13
13
  end
14
14
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class PGSpecHelper
4
- VERSION = "1.8.2"
4
+ VERSION = "1.8.3"
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.2
4
+ version: 1.8.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Craig Ulliott