geordi 4.0.1 → 4.1.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 +4 -4
- data/CHANGELOG.md +8 -1
- data/Gemfile.lock +1 -1
- data/exe/dumple +10 -0
- data/lib/geordi/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e69ce9156f933f0ae381e109b7359fe4da6243036028093ab9ce0f79408bfaad
|
|
4
|
+
data.tar.gz: d6d16d8a1aca0fecc4669aa0b28251c508574f7d4d5ba3fae5d82d92385894fd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8d514a744b90c1d637a91db63ca3c58a36262e3493844a268eea48c920779f98ead441eeff42a9d544e0b0feb6baeb0d9314906531c1b9c3955bbb0758b2e316
|
|
7
|
+
data.tar.gz: c75477cfb8ffb09895f1b6214ef762218e85b831adb4348ea58ed4cae6dd70a213feb7e2df3dc0740a97b0e70394be4878abeff57fb4aefd47a50eed7af5f10d
|
data/CHANGELOG.md
CHANGED
|
@@ -9,10 +9,17 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
9
9
|
### Breaking changes
|
|
10
10
|
|
|
11
11
|
|
|
12
|
+
## 4.1.0 2020-08-18
|
|
13
|
+
|
|
14
|
+
### Compatible changes
|
|
15
|
+
|
|
16
|
+
- Added dumple option `--compress` to compress after dumping
|
|
17
|
+
|
|
12
18
|
## 4.0.1 2020-08-11
|
|
19
|
+
|
|
13
20
|
### Compatible changes
|
|
14
21
|
|
|
15
|
-
|
|
22
|
+
- Fix `geordi migrate` command, that fails with:
|
|
16
23
|
|
|
17
24
|
```
|
|
18
25
|
Don't know how to build task 'db:migrate parallel:prepare'
|
data/Gemfile.lock
CHANGED
data/exe/dumple
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
require 'erb'
|
|
4
4
|
|
|
5
5
|
fail_gently = ARGV.include?("--fail-gently")
|
|
6
|
+
compress = ARGV.include?("--compress")
|
|
6
7
|
|
|
7
8
|
if ARGV.include?("-i")
|
|
8
9
|
puts "*******************************************************"
|
|
@@ -96,6 +97,15 @@ begin
|
|
|
96
97
|
|
|
97
98
|
system "chmod 600 #{dump_path}"
|
|
98
99
|
|
|
100
|
+
if compress
|
|
101
|
+
puts "> Compressing the dump ..."
|
|
102
|
+
|
|
103
|
+
# gzip compresses in place
|
|
104
|
+
compress_success = system("gzip #{dump_path}")
|
|
105
|
+
compress_success or raise "Compressing the dump failed"
|
|
106
|
+
dump_path << ".gz"
|
|
107
|
+
end
|
|
108
|
+
|
|
99
109
|
dump_size_kb = (File.size(dump_path) / 1024).round
|
|
100
110
|
|
|
101
111
|
puts "> Dumped to #{dump_path} (#{dump_size_kb} KB)"
|
data/lib/geordi/version.rb
CHANGED
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: 4.0
|
|
4
|
+
version: 4.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Henning Koch
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-08-
|
|
11
|
+
date: 2020-08-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|
|
@@ -118,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
118
118
|
- !ruby/object:Gem::Version
|
|
119
119
|
version: '0'
|
|
120
120
|
requirements: []
|
|
121
|
-
rubygems_version: 3.
|
|
121
|
+
rubygems_version: 3.1.4
|
|
122
122
|
signing_key:
|
|
123
123
|
specification_version: 4
|
|
124
124
|
summary: Collection of command line tools we use in our daily work with Ruby, Rails
|