aaf-gumboot 2.6.2 → 2.6.3
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 +4 -4
- data/Makefile +4 -0
- data/lib/gumboot/shared_examples/database_schema.rb +3 -3
- data/lib/gumboot/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1e96ffb261ef7d28f97a927c0067a1fec85a09a2405d8339bdb07407f6b08e55
|
|
4
|
+
data.tar.gz: 76de2a03468a5cfb52bffba3157d21f0af996c7ab66e797f336dca7f75876666
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 59dc14d700311e1eb43ccd10045d1287fbf33d79faba65eeef74bf569f293d8b457af612320bb3b2916b0df844cc48c72781045158311982eb7a785e0f397fd9
|
|
7
|
+
data.tar.gz: 99d03220d2bf41b16d67e92f2e9da8ad8487af7ec5c266179c7d1a4d3d51f9f6da6e29afd24e0194ff2e6eaf200db6f25d2909f10c38c804900e401282407d37
|
data/Makefile
ADDED
|
@@ -30,14 +30,14 @@ RSpec.shared_examples 'Database Schema' do
|
|
|
30
30
|
|
|
31
31
|
db_collation = query('SHOW VARIABLES LIKE "collation_database"')
|
|
32
32
|
.first[:Value]
|
|
33
|
-
expect(
|
|
33
|
+
expect(%w[utf8_bin utf8mb3_bin utf8mb4_bin]).to include(db_collation)
|
|
34
34
|
|
|
35
35
|
query('SHOW TABLE STATUS').each do |table|
|
|
36
36
|
table_name = table[:Name]
|
|
37
37
|
next if table_name == 'schema_migrations'
|
|
38
38
|
|
|
39
39
|
expect(table).to(
|
|
40
|
-
have_collations(%w[utf8_bin utf8mb4_bin], "`#{table_name}`")
|
|
40
|
+
have_collations(%w[utf8_bin utf8mb3_bin utf8mb4_bin], "`#{table_name}`")
|
|
41
41
|
)
|
|
42
42
|
|
|
43
43
|
query("SHOW FULL COLUMNS FROM `#{table_name}`").each do |column|
|
|
@@ -50,7 +50,7 @@ RSpec.shared_examples 'Database Schema' do
|
|
|
50
50
|
end
|
|
51
51
|
|
|
52
52
|
expect(column)
|
|
53
|
-
.to have_collations(%w[utf8_bin utf8_unicode_ci utf8mb4_bin utf8mb4_unicode_ci],
|
|
53
|
+
.to have_collations(%w[utf8_bin utf8_unicode_ci utf8mb3_bin utf8mb4_bin utf8mb4_unicode_ci],
|
|
54
54
|
" `#{table_name}`.`#{column[:Field]}`")
|
|
55
55
|
end
|
|
56
56
|
end
|
data/lib/gumboot/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aaf-gumboot
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.6.
|
|
4
|
+
version: 2.6.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bradley Beddoes
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-05-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: accession
|
|
@@ -291,6 +291,7 @@ files:
|
|
|
291
291
|
- Gemfile
|
|
292
292
|
- Guardfile
|
|
293
293
|
- LICENSE
|
|
294
|
+
- Makefile
|
|
294
295
|
- README.md
|
|
295
296
|
- Rakefile
|
|
296
297
|
- aaf-gumboot.gemspec
|