Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

show cask info on browser #8805

Merged
merged 1 commit into from
Sep 30, 2020
Merged

Conversation

hyuraku
Copy link
Contributor

@hyuraku hyuraku commented Sep 24, 2020

  • Have you followed the guidelines in our Contributing document?
  • Have you checked to ensure there aren't other open Pull Requests for the same change?
  • Have you added an explanation of what your changes do and why you'd like us to include them?
  • Have you written new tests for your changes? Here's an example.
  • Have you successfully run brew style with your changes locally?
  • Have you successfully run brew tests with your changes locally?
  • Have you successfully run brew man locally and committed any changes?

add an option --github to brew cask info [Cask] to show a cask's GitHub source Page like brew info [formula] --github

Sorry, something went wrong.

@MikeMcQuaid
Copy link
Member

Could this be put into brew info instead of brew cask info?

@hyuraku
Copy link
Contributor Author

hyuraku commented Sep 24, 2020

@MikeMcQuaid
Now brew info [Cask] --github cause an error like below.

brew info atom --github
Error: No available formula with the name "atom" 

When args is Casks, args.named.to_formulae in cmd/info.rb would not return Cask and cause an error.

  def info
    args = info_args.parse
    --< omit >--
    if args.json
      --< omit >--
    elsif args.github?
      raise FormulaUnspecifiedError if args.no_named?

      exec_browser(*args.named.to_formulae.map { |f| github_info(f) })

@zachauten
Copy link
Contributor

@hyuraku you can use args.named.to_formulae_and_casks but you'll need to refactor the github_info function to handle casks.

@hyuraku
Copy link
Contributor Author

hyuraku commented Sep 29, 2020

@MikeMcQuaid @zachauten
I improved that brew info [Cask] --github and brew cask info [Cask] --github can work.

@MikeMcQuaid MikeMcQuaid requested review from a team, whoiswillma and reitermarkus September 29, 2020 07:49
@miccal
Copy link
Contributor

miccal commented Sep 30, 2020

I pulled and tested this locally, (brew info [Formula] --github, brew info [Cask] --github, brew cask info [Cask] --github), and it works as expected.

Also tested for the cases where a Formula and Cask have the same name, and it defaults to the Formula and suggests the full tap name for the corresponding Cask (as expected).

I did not even know about the --github flag for Formula, very handy! Even more handy now that it works for Casks too.

Great work @hyuraku.

@MikeMcQuaid
Copy link
Member

Thanks again @hyuraku!

@MikeMcQuaid MikeMcQuaid merged commit 86f4362 into Homebrew:master Sep 30, 2020
@BrewTestBot BrewTestBot added the outdated PR was locked due to age label Dec 3, 2020
@Homebrew Homebrew locked as resolved and limited conversation to collaborators Dec 3, 2020
@hyuraku hyuraku deleted the cask_github_info branch January 27, 2021 12:33
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
outdated PR was locked due to age
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants