foobara-empty-ruby-project-generator 0.0.6 → 0.0.7
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 +1 -1
- data/src/write_empty_ruby_project_to_disk.rb +2 -2
- 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: 817e478ef05f69c023c000f12699acfe791c14974f90c5ed1fe6175814efc442
|
4
|
+
data.tar.gz: 56fc1d66521dbdc6375351ac74a8066edd89a1b7f168a94db43ae894598097c3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c7c79553ba8bc9febc227d7f5e39b8cb690493f2a456f6b378e51ff90bd76c0a4fdbe85b04b350442e38288e4fa762213e8afa78da630dfb80c3c33552031c36
|
7
|
+
data.tar.gz: 8b4281a99bf28c9bcc1bda5832f706373618fec52feb2bae7d56acd829aeedb1ec38556aff172f0f26591d90cddf29fce00a7eb5561bd8c70046ce4ad25a1025
|
data/CHANGELOG.md
CHANGED
@@ -122,10 +122,10 @@ module Foobara
|
|
122
122
|
def git_commit
|
123
123
|
# TODO: set author/name with git config in CI so we don't have to skip this
|
124
124
|
# :nocov:
|
125
|
-
Open3.popen3("git commit -m 'Initial commit'") do |_stdin,
|
125
|
+
Open3.popen3("git commit -m 'Initial commit'") do |_stdin, stdout, stderr, wait_thr|
|
126
126
|
exit_status = wait_thr.value
|
127
127
|
unless exit_status.success?
|
128
|
-
raise "could not git commit -m 'Initial commit'. #{stderr.read}"
|
128
|
+
raise "could not git commit -m 'Initial commit'. OUTPUT\n#{stdout.read}\nERROR:#{stderr.read}"
|
129
129
|
end
|
130
130
|
end
|
131
131
|
# :nocov:
|