Skip to content
This repository has been archived by the owner on Apr 14, 2021. It is now read-only.

Fix gem_helper_spec. #2367

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 5 additions & 2 deletions spec/bundler/gem_helper_spec.rb
Expand Up @@ -185,8 +185,11 @@ def mock_build_message
`git init --bare`
}
Dir.chdir(@app) {
`git commit -a -m "another commit"`
`git tag -a -m \"Version 0.0.1\" v0.0.1`
`git init`
`git config user.email "you@example.com"`
`git config user.name "name"`
`git commit -a -m "another commit"`
`git tag -a -m \"Version 0.0.1\" v0.0.1`
}
@helper.release_gem
end
Expand Down