This repository has been archived by the owner on Apr 14, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Invalid Github URL in README #5438
Labels
Comments
(Snooping around: These are the locations where the data is dug up and used.) https://github.com/bundler/bundler/blob/master/lib/bundler/cli/gem.rb#L32 https://github.com/bundler/bundler/blob/master/lib/bundler/templates/newgem/README.md.tt#L35 Would you want to author a PR about this? |
Sure, I'd love to! |
bundlerbot
added a commit
that referenced
this issue
Feb 17, 2017
Fix Github username for README.md contrib URL This fixes #5438 where the wrong git config variable was being retrieved. This was using `git config user.name` rather than `git config github.user` in URL in `README.md`
Shekharrajak
pushed a commit
to Shekharrajak/bundler
that referenced
this issue
Feb 20, 2017
This fixes rubygems#5438 where the wrong git config variable was being retrieved. Renamed user name to author name & specs added `git_user_name` renamed to `git_author_name` and tests added for genuine `git_user_name` to verify proper URL in README.md. Renamed `git_user_name` to `github_username` per @segiddins request. Rubocop style fix on hash k,v spacing Replace backticks with `sys_exec` per @segiddins. Hat-tip to @olleolleolle for explaining `sys_exec` from `spec_helpers/support.rb` is a helper method that smooths the path for the RSpec usage in the project. (Thank you.)
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Bundler version 1.14.3
With using
The
README.md
file under contributions shows as:This is taken from
git config --get user.name
(I believe)The command that should be used is
git config --get github.user
which would result in:The text was updated successfully, but these errors were encountered: