geordi 2.9.0 → 2.10.0

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: d129fad452aa0ec9658552b68ceb58190d3fb93b722ca8913ad00a68784ce3dc
4
- data.tar.gz: 45905a2d5413c9cf5828b2a106f2bf32946efc6ab1229cfd9ed3012fa58a7cc0
3
+ metadata.gz: 02e5f45f334a240e117f4cbcca10d6e17ebc8f077eb256b8c0ff8257a7886915
4
+ data.tar.gz: 4d567ce58cbcd578749ddcef2273db8e851211d5f630d3b45453bfc6885c3d58
5
5
  SHA512:
6
- metadata.gz: e91aa9acdb965944b192c23d2a43bebc49d25933b7152f56b99a3175311f4e84a7c0460961bb076b16a4cdfde648e19dc8ac072db35fd4414a3ecbdefb806b7a
7
- data.tar.gz: b00fb2431da652f0cadd628bffb601c19434ba0fdd53d9ac99d463d7c6c2e365199efa271a90ada917e4d54e941c024a9f4dd990b7bc1bd4a24f4ffef87b55b0
6
+ metadata.gz: ba66b7e3f475395408b79f692c79843a61f0271ea299ed98e02d407c56d5db1f373af294e516537460f64170937f6d4a206517108ac14778daded4f6bbc63a47
7
+ data.tar.gz: 3733cc93bc188eada1b81fb17799b7a4fd109dfaa486fe86e14ad45339307e837bc92ca4ff6c731067d66c228dc3333a17bda07e72d6bcb05c3717c36d46e6b4
data/CHANGELOG.md CHANGED
@@ -9,12 +9,18 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
9
9
  ### Breaking changes
10
10
 
11
11
 
12
+ ## 2.10.0 2020-02-11
13
+
14
+ ### Compatible changes
15
+ - Fixes [#78](https://github.com/makandra/geordi/pull/78): Add compatibility for more than 9 CPU cores in
16
+ `geordi drop-databases`.
17
+
18
+
12
19
  ## 2.9.0 2020-01-03
13
20
 
14
21
  ### Compatible changes
15
22
  - Fixes [#37](https://github.com/makandra/geordi/issues/37): `geordi cucumber` crashes with `--format=pretty`
16
23
  - Fixes [#27](https://github.com/makandra/geordi/issues/27): Cucumber rerun switch does work when passing files
17
- ### Breaking changes
18
24
 
19
25
 
20
26
  ## 2.8.0 2020-01-02
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- geordi (2.9.0)
4
+ geordi (2.10.0)
5
5
  thor (>= 0.18.0)
6
6
 
7
7
  GEM
@@ -12,7 +12,7 @@ module Geordi
12
12
  puts ' and `sudo mysql` for MariaDB (which uses PAM auth)'
13
13
  `sudo true`
14
14
  fail 'sudo access is required for database operations as database users' if $? != 0
15
- @derivative_dbname = /_(test\d?|development|cucumber)$/
15
+ @derivative_dbname = /_(test\d*|development|cucumber)$/
16
16
  base_directory = ENV['XDG_CONFIG_HOME']
17
17
  base_directory = "#{Dir.home}" if base_directory.nil?
18
18
  @whitelist_directory = File.join(base_directory, '.config', 'geordi', 'whitelists')
@@ -34,7 +34,7 @@ module Geordi
34
34
  tmp.write <<-HEREDOC
35
35
  # Put each whitelisted database on a new line.
36
36
  # System databases will never be deleted.
37
- # When you whitelist foo, foo_development and foo_test\\d? are whitelisted, too.
37
+ # When you whitelist foo, foo_development and foo_test\\d* are whitelisted, too.
38
38
  # This works even if foo does not exist. Also, you will only see foo in this list.
39
39
  #
40
40
  # Syntax: keep foo
@@ -253,7 +253,7 @@ HEREDOC
253
253
  # Allow explicit whitelisting of derivative databases like projectname_test2
254
254
  if whitelist_content.include? database_name
255
255
  true
256
- # whitelisting `projectname` also whitelists `projectname_test\d+`, `projectname_development`
256
+ # whitelisting `projectname` also whitelists `projectname_test\d*`, `projectname_development`
257
257
  elsif whitelist_content.include? database_name.sub(@derivative_dbname, '')
258
258
  true
259
259
  else
@@ -1,3 +1,3 @@
1
1
  module Geordi
2
- VERSION = '2.9.0'
2
+ VERSION = '2.10.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: geordi
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.9.0
4
+ version: 2.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henning Koch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-01-03 00:00:00.000000000 Z
11
+ date: 2020-02-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor