diff options
author | Jean Boussier <[email protected]> | 2021-12-02 12:59:45 +0100 |
---|---|---|
committer | git <[email protected]> | 2021-12-06 20:27:29 +0900 |
commit | 715a51a0d6963f9d727191d4e1ad0690fd28c4dd (patch) | |
tree | c4ea59b85fdf346526b052839bb455ddbd4dca65 /lib/bundler/man/bundle-show.1 | |
parent | d044ffd77fb3a486bbaca350980beee3f222bdb1 (diff) |
[rubygems/rubygems] Feature: accept pull request URLs as github source
Very often github source is used to temporarily use a modified gem
while a PR upstream is being reviewed.
So for instance https://github.com/ruby/bigdecimal/pull/211 will look like:
```ruby
gem "bigdecimal", github: "casperisfine/bigdecimal", branch: "git-gem" # https://github.com/ruby/bigdecimal/pull/200
```
It's annoying because you have to fiddle with the branch name, which is copied as `casperisfine:git-gem`, etc etc.
If I could simply use the PR URL like this:
```
gem "bigdecimal", github: "https://github.com/ruby/bigdecimal/pull/211"
```
It would make a very common task for me so much simpler.
https://github.com/rubygems/rubygems/commit/517c527751
Diffstat (limited to 'lib/bundler/man/bundle-show.1')
-rw-r--r-- | lib/bundler/man/bundle-show.1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/man/bundle-show.1 b/lib/bundler/man/bundle-show.1 index 733161318f..375699ddf0 100644 --- a/lib/bundler/man/bundle-show.1 +++ b/lib/bundler/man/bundle-show.1 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "BUNDLE\-SHOW" "1" "November 2021" "" "" +.TH "BUNDLE\-SHOW" "1" "December 2021" "" "" . .SH "NAME" \fBbundle\-show\fR \- Shows all the gems in your bundle, or the path to a gem |