diff options
| author | EricFromCanada | 2017-02-25 17:27:08 -0500 | 
|---|---|---|
| committer | EricFromCanada | 2017-02-25 17:27:08 -0500 | 
| commit | 6cb56297378cb57ade790c392dacf4a3bf02f7da (patch) | |
| tree | 1ad1b60bb5bc5eb2883a9edb32a8c5627ce3b15f /Library/Homebrew/dev-cmd/pull.rb | |
| parent | 2401de493d68f341e34b926883f39e404c88173b (diff) | |
| download | brew-6cb56297378cb57ade790c392dacf4a3bf02f7da.tar.bz2 | |
Work around man page generator bug for pull.rb
To work around ronn's [issue with nested
lists](https://github.com/rtomayko/ronn/issues/35), treat each item as
a separate paragraph with alternate list markers.
Diffstat (limited to 'Library/Homebrew/dev-cmd/pull.rb')
| -rw-r--r-- | Library/Homebrew/dev-cmd/pull.rb | 53 | 
1 files changed, 31 insertions, 22 deletions
diff --git a/Library/Homebrew/dev-cmd/pull.rb b/Library/Homebrew/dev-cmd/pull.rb index c2342d39c..98a62e578 100644 --- a/Library/Homebrew/dev-cmd/pull.rb +++ b/Library/Homebrew/dev-cmd/pull.rb @@ -1,33 +1,42 @@ -#: `pull` [`--bottle`] [`--bump`] [`--clean`] [`--ignore-whitespace`] [`--resolve`] [`--branch-okay`] [`--no-pbcopy`] [`--no-publish`] <patch-source> [<patch-source>] -#: +#:  * `pull` [`--bottle`] [`--bump`] [`--clean`] [`--ignore-whitespace`] [`--resolve`] [`--branch-okay`] [`--no-pbcopy`] [`--no-publish`] <patch-source> [<patch-source>]:  #:    Gets a patch from a GitHub commit or pull request and applies it to Homebrew.  #:    Optionally, installs the formulae changed by the patch.  #:  #:    Each <patch-source> may be one of: -#:      * The ID number of a PR (Pull Request) in the homebrew/core GitHub +#: +#:      ~ The ID number of a PR (pull request) in the homebrew/core GitHub  #:        repository -#:      * The URL of a PR on GitHub, using either the web page or API URL +#: +#:      ~ The URL of a PR on GitHub, using either the web page or API URL  #:        formats. In this form, the PR may be on Homebrew/brew,  #:        Homebrew/homebrew-core or any tap. -#:      * The URL of a commit on GitHub -#:      * A "http://bot.brew.sh/job/..." string specifying a testing job ID  #: -#:   If `--bottle` was passed, handle bottles, pulling the bottle-update -#:   commit and publishing files on Bintray. -#:   If `--bump` was passed, for one-formula PRs, automatically reword -#:   commit message to our preferred format. -#:   If `--clean` was passed, do not rewrite or otherwise modify the -#:   commits found in the pulled PR. -#:   If `--ignore-whitespace` was passed, silently ignore whitespace -#:   discrepancies when applying diffs. -#:   If `--resolve` was passed, when a patch fails to apply, leave in -#:   progress and allow user to -#:                  resolve, instead of aborting. -#:   If `--branch-okay` was passed, do not warn if pulling to a branch -#:   besides master (useful for testing). -#:   If `--no-pbcopy` was passed, do not copy anything to the system -#    clipboard. -#:   If `--no-publish` was passed, do not publish bottles to Bintray. +#:      ~ The URL of a commit on GitHub +#: +#:      ~ A "http://bot.brew.sh/job/..." string specifying a testing job ID +#: +#:    If `--bottle` is passed, handle bottles, pulling the bottle-update +#:    commit and publishing files on Bintray. +#: +#:    If `--bump` is passed, for one-formula PRs, automatically reword +#:    commit message to our preferred format. +#: +#:    If `--clean` is passed, do not rewrite or otherwise modify the +#:    commits found in the pulled PR. +#: +#:    If `--ignore-whitespace` is passed, silently ignore whitespace +#:    discrepancies when applying diffs. +#: +#:    If `--resolve` is passed, when a patch fails to apply, leave in +#:    progress and allow user to resolve, instead of aborting. +#: +#:    If `--branch-okay` is passed, do not warn if pulling to a branch +#:    besides master (useful for testing). +#: +#:    If `--no-pbcopy` is passed, do not copy anything to the system +#:    clipboard. +#: +#:    If `--no-publish` is passed, do not publish bottles to Bintray.  require "net/http"  require "net/https"  | 
