aaf-gumboot 2.6.2 → 2.6.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: 96071a23367822a4f7ba6656e9b18a93701ba9cb8aec927fbb1dae02e1814310
4
- data.tar.gz: f5f9162f54f1012981d31ff4c9097fafb14d0a0dc179ee7f0efeb336cc314887
3
+ metadata.gz: 1e96ffb261ef7d28f97a927c0067a1fec85a09a2405d8339bdb07407f6b08e55
4
+ data.tar.gz: 76de2a03468a5cfb52bffba3157d21f0af996c7ab66e797f336dca7f75876666
5
5
  SHA512:
6
- metadata.gz: ee5c0ae1ab75d9513b6189b898c9a75beca8373f0b09a77097f1a9a9edd256a6c0723f23b60c1ba42b1a26db958de10d9e6e58a904fa8013f5f37bb136916a7f
7
- data.tar.gz: 33dbbc4251511a602f9f76ac277c2201cd835b597ef89fafbd8ea0e2b0305725b5074bea7422bfcc2ac21069b94d7bbde9c8e40dc7e343da9e0a3ece49e92b76
6
+ metadata.gz: 59dc14d700311e1eb43ccd10045d1287fbf33d79faba65eeef74bf569f293d8b457af612320bb3b2916b0df844cc48c72781045158311982eb7a785e0f397fd9
7
+ data.tar.gz: 99d03220d2bf41b16d67e92f2e9da8ad8487af7ec5c266179c7d1a4d3d51f9f6da6e29afd24e0194ff2e6eaf200db6f25d2909f10c38c804900e401282407d37
data/Makefile ADDED
@@ -0,0 +1,4 @@
1
+ publish-gem:
2
+ gem build aaf-gumboot.gemspec
3
+ gem push aaf-gumboot-*.gem
4
+ rm aaf-gumboot-*.gem
@@ -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(db_collation).to eq('utf8_bin')
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Gumboot
4
- VERSION = '2.6.2'
4
+ VERSION = '2.6.3'
5
5
  end
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.2
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: 2022-07-04 00:00:00.000000000 Z
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