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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3791e878bb31b167fa2f5b1a13161c948f65d9bcb2ae6f01a5913d989bee5c04
4
- data.tar.gz: e80e8415ae82ca1d5f9261a774213b8ae24ec711097c244a3fa1e2176501e480
3
+ metadata.gz: 817e478ef05f69c023c000f12699acfe791c14974f90c5ed1fe6175814efc442
4
+ data.tar.gz: 56fc1d66521dbdc6375351ac74a8066edd89a1b7f168a94db43ae894598097c3
5
5
  SHA512:
6
- metadata.gz: 8a6b24470219555dcafb9548ccc65dcecc531783bf7215ee4434fa6f339b2e9646a65109b9e2f276fe9b10438e7423e985409957129dfa1c52015a1ccec35d28
7
- data.tar.gz: 7f6544484f99ca77c0e89038f41415415bbef6adeee0202ba3f82cf7caf0ef1f7f0658972a48ed04c8374e15e2add87700adc70a1a0f0a2135d442d8b5f97bd5
6
+ metadata.gz: c7c79553ba8bc9febc227d7f5e39b8cb690493f2a456f6b378e51ff90bd76c0a4fdbe85b04b350442e38288e4fa762213e8afa78da630dfb80c3c33552031c36
7
+ data.tar.gz: 8b4281a99bf28c9bcc1bda5832f706373618fec52feb2bae7d56acd829aeedb1ec38556aff172f0f26591d90cddf29fce00a7eb5561bd8c70046ce4ad25a1025
data/CHANGELOG.md CHANGED
@@ -1,4 +1,4 @@
1
- ## [0.0.6] - 2024-11-01
1
+ ## [0.0.7] - 2024-11-01
2
2
 
3
3
  - Do not automatically push to github via gh
4
4
 
@@ -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, _stdout, stderr, wait_thr|
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:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foobara-empty-ruby-project-generator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miles Georgi