Skip to content

Instantly share code, notes, and snippets.

@ToQoz
Last active December 18, 2016 15:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ToQoz/9d451513ed19e8d1cc20ba87a4b426b3 to your computer and use it in GitHub Desktop.
Save ToQoz/9d451513ed19e8d1cc20ba87a4b426b3 to your computer and use it in GitHub Desktop.
インストール済みの formula のなかで Xcode.app が必要なやつを知りたい
#/usr/bin/env ruby
require 'json'
JSON.parse(`brew info --json=v1 --installed`)
.select { |formula|
formula["requirements"].any? { |req| req["name"].downcase == "xcode" }
}
.each { |formula|
puts formula["name"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment