lono 4.2.2 → 4.2.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/CHANGELOG.md +3 -0
- data/lib/lono/script/build.rb +1 -1
- data/lib/lono/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dd25d8be5704f23db8c6c823d020f5baba06ece9c12fa0922cc1ad55688f2cf8
|
|
4
|
+
data.tar.gz: 3d006e108e46072f945b9b27fef59228136db79ebd935bcf4a07ff82db0371ba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ed286bc182e93c36938736cf75876d71eaa4221fc873b06399d7fcacefb7a28f67569e148f62a40bf0334d76f409b237db44ac841fee4dea29ba8ca16ab63fd9
|
|
7
|
+
data.tar.gz: f7f7897c2a221db221217f5cc6995e9fec6a58a650356ce874f3282464b54b7e110fb35fa9f718f7aa42358a1d1e542eb5e5149e23749e3f3aa26df716e62b2c
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
|
5
5
|
|
|
6
|
+
## [4.2.3]
|
|
7
|
+
- hide type dot_clean check message
|
|
8
|
+
|
|
6
9
|
## [4.2.2]
|
|
7
10
|
- add vendor files to gem package
|
|
8
11
|
|
data/lib/lono/script/build.rb
CHANGED
|
@@ -36,7 +36,7 @@ class Lono::Script
|
|
|
36
36
|
def create_tarball
|
|
37
37
|
# https://apple.stackexchange.com/questions/14980/why-are-dot-underscore-files-created-and-how-can-i-avoid-them
|
|
38
38
|
# using system to avoid displaying command
|
|
39
|
-
system "cd app && dot_clean ." if system("type dot_clean > /dev/null")
|
|
39
|
+
system "cd app && dot_clean ." if system("type dot_clean > /dev/null 2>&1")
|
|
40
40
|
|
|
41
41
|
# https://serverfault.com/questions/110208/different-md5sums-for-same-tar-contents
|
|
42
42
|
# Using tar czf directly results in a new m5sum each time because the gzip
|
data/lib/lono/version.rb
CHANGED