pg_spec_helper 1.8.1 → 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: 011ca1cc2f94e7166f75d64edb2a18c1251d66da951b0dee3b15960b98cfbb26
4
- data.tar.gz: cac1093c4e64326f2a0cd145f898a1dd928e62196ee8daef329168d0e248c245
3
+ metadata.gz: 0273accb1b779e4bc7110b9ddb01642f49c4417dfe6a3460d2f17d4ce8534ba4
4
+ data.tar.gz: e5524ec22aa600611f4703e3a34bde74d6303bc829a2d708f486628dc125e0dd
5
5
  SHA512:
6
- metadata.gz: 0d4faaa80024a38a4c70316d69fe4afc500c43cda4f74f03b89ecb5bed9dd402029fb782275f148d89365f872531c2e7740a196f054f1eb97ee4046fae0a2d22
7
- data.tar.gz: a4bfc6c9583c59c071303add4f443d671dc80bb0c5f7a16597b856344938593fa6c14c439815df8273894688cbc041fd5c7de7fac9ac7381bbaadbc9cc7b8ffe
6
+ metadata.gz: c8e3bdf16a61937ec635969008f29bacac74ee58d5bff2995b3279bd9eeb7e3d702ac8b8b7b1489ca29a7018dd30c5d76fdad23634177e2b35d248da6422bb9f
7
+ data.tar.gz: 3586365ba81191a108877387224d71634b93db0712b89ac43746de5716a027cca1c24fd3c647950b6ab09475b62f028d7c6fe198440b9a95671632a38e635dcd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
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
+
10
+ ## [1.8.2](https://github.com/craigulliott/pg_spec_helper/compare/v1.8.1...v1.8.2) (2023-08-06)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * stripping whitespace off the end of the method definition ([027fbc0](https://github.com/craigulliott/pg_spec_helper/commit/027fbc01cc04e79110a97392a6811371c487bab6))
16
+
3
17
  ## [1.8.1](https://github.com/craigulliott/pg_spec_helper/compare/v1.8.0...v1.8.1) (2023-08-06)
4
18
 
5
19
 
@@ -5,10 +5,10 @@ class PGSpecHelper
5
5
  # create a function
6
6
  def create_function schema_name, function_name, function_definition
7
7
  connection.exec <<~SQL
8
- CREATE FUNCTION #{schema_name}.#{function_name}() returns trigger language plpgsql AS $$
9
- BEGIN #{function_definition.strip};
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.1"
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.1
4
+ version: 1.8.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Craig Ulliott