generated_schema_validations 0.5.4 → 0.5.5

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: fd9e8c56b1df3693d2fcf47a61b8904277a1fbfc3c2c0dcf71bc2f30baa30097
4
- data.tar.gz: 7f68dab0123374dd86106df0f462e5d68fd8ec227938378799aa377bbe281c5d
3
+ metadata.gz: 5132d3be501617c0096cedc576b6d9167643b90c7fcca7023fb21117e78ecc42
4
+ data.tar.gz: '095f22b4ff3e06758bf03a1c271cf27d3c504370bafc41c5f47710ac9ba626c3'
5
5
  SHA512:
6
- metadata.gz: aa9eb0de4a2144fe689bd34e5cd63f75853592cf2da93b7a30034f389283b8c401201178c5cfa63ec5d444f58fbe984fc0cce033c1f4baf196619ef3b440f4ad
7
- data.tar.gz: 6de0ba1f0471ab2d42a907c99031bfbde9595c2a81812877d8713bf74487e99ce93dc827629c4772d19e73bde561d6ff033f71a649e8a22cb42fa2e3ed476a03
6
+ metadata.gz: a227d2c716e5b9c05cd6349305b1dbaed35f567bfc72ee35d0ba0490e112016a4e4392f0e84792ab733b86b17e61385b271408cdd2af4808465ebc2b4110c40a
7
+ data.tar.gz: 4f329cd8c928056756df0dba6048e94c34b0de3a310dd8abc9d2f91cda1b11351837af4b1f3cb158c5e0ba459211736a50e7e77e4c9925b17fff8cf4a14a974d
data/README.md CHANGED
@@ -105,6 +105,10 @@ You can watch changes on `schema_validations.rb` to understand the generated val
105
105
 
106
106
  ## Changelog
107
107
 
108
+ ### 0.5.5
109
+
110
+ * ignore geography fields
111
+
108
112
  ### 0.5.4
109
113
 
110
114
  * adds support for time fields
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = 'generated_schema_validations'
5
- spec.version = '0.5.4'
5
+ spec.version = '0.5.5'
6
6
  spec.authors = ['Georg Limbach']
7
7
  spec.email = ['georg.limbach@lichtbit.com']
8
8
 
@@ -168,4 +168,8 @@ class GeneratedSchemaValidations::Table
168
168
  @unique_indexes.push(names.map(&:to_s))
169
169
  end
170
170
  end
171
+
172
+ def geography(*)
173
+ # do nothing
174
+ end
171
175
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: generated_schema_validations
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.4
4
+ version: 0.5.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Georg Limbach
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-02-14 00:00:00.000000000 Z
11
+ date: 2026-04-15 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: After each migration it generates a file with some validations. Each
14
14
  active record should include this file and can uns generated validations.