dynamic_migrations 3.2.1 → 3.2.2

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: ca3d0e63e744237ce50761c65a92516cc4c53bf5c3bc71b7108fc06220b65185
4
- data.tar.gz: fc9ee993485d527e71558de3ac9d5f5e98b35f6fefadbaffe9a44a90fc44bcee
3
+ metadata.gz: e8f9a1a4cf3316579443b0fed7898a42ab410ba114d194c5ffb874a5ca5027d9
4
+ data.tar.gz: 03651b7187cef799edee4d64e9c7533f0c6fb9ce0f9193b16e721c13e508373b
5
5
  SHA512:
6
- metadata.gz: '00922f2a680713f98d20258d25cc2a7be769a1c1088e7fd717f1de111dfc738301c45a9f022061670a67bd66882700df63b631728767e6591df8f677aaaf4c0f'
7
- data.tar.gz: 449b4d2e2dc6d18a6d3a19f21b5800738b6bcd1e60d29440684f4286a0384bd22564589ad07b6b18122a26a1b5df4011a750468060c94ff9811daa59381c06bd
6
+ metadata.gz: cfdbf88d363b8280f18d1aa63cc7ad9d917de7d5c0582ae43a02ac9341af4c00918f6cd5382c935c2a1a1026873afdd98e2aed42397a722b8660fb876133408a
7
+ data.tar.gz: 35451e4c7cfbcfa0a7dec0133b726d005c32ff4c1d7d2792737f24b4b7c2da98b0ba50250f30876f99743d16b911201243d0a0252f162794ec6a08e1955cc634
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.2.2](https://github.com/craigulliott/dynamic_migrations/compare/v3.2.1...v3.2.2) (2023-08-17)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * automatically strip whitespace off validation check_clause ([f7a3b91](https://github.com/craigulliott/dynamic_migrations/commit/f7a3b91e694db83a5aefcd25e50985c05aaf97e2))
9
+
3
10
  ## [3.2.1](https://github.com/craigulliott/dynamic_migrations/compare/v3.2.0...v3.2.1) (2023-08-17)
4
11
 
5
12
 
@@ -44,7 +44,7 @@ module DynamicMigrations
44
44
  @name = name
45
45
 
46
46
  raise ExpectedStringError, check_clause unless check_clause.is_a? String
47
- @check_clause = check_clause
47
+ @check_clause = check_clause.strip
48
48
 
49
49
  unless description.nil?
50
50
  raise ExpectedStringError, description unless description.is_a? String
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DynamicMigrations
4
- VERSION = "3.2.1"
4
+ VERSION = "3.2.2"
5
5
  end
metadata CHANGED
@@ -1,11 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dynamic_migrations
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.1
4
+ version: 3.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Craig Ulliott
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
  date: 2023-08-17 00:00:00.000000000 Z
@@ -142,13 +142,13 @@ files:
142
142
  - lib/dynamic_migrations/postgres/server/database/triggers_and_functions_loader.rb
143
143
  - lib/dynamic_migrations/postgres/server/database/validations_loader.rb
144
144
  - lib/dynamic_migrations/version.rb
145
- homepage:
145
+ homepage:
146
146
  licenses:
147
147
  - MIT
148
148
  metadata:
149
149
  source_code_uri: https://github.com/craigulliott/dynamic_migrations/
150
150
  changelog_uri: https://github.com/craigulliott/dynamic_migrations/blob/main/CHANGELOG.md
151
- post_install_message:
151
+ post_install_message:
152
152
  rdoc_options: []
153
153
  require_paths:
154
154
  - lib
@@ -163,8 +163,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
163
163
  - !ruby/object:Gem::Version
164
164
  version: '0'
165
165
  requirements: []
166
- rubygems_version: 3.3.26
167
- signing_key:
166
+ rubygems_version: 3.2.3
167
+ signing_key:
168
168
  specification_version: 4
169
169
  summary: Manage your database schema through configuration
170
170
  test_files: []