aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
AgeCommit message (Collapse)Author
2014-07-20improve commentAdam Vandenberg
2014-07-20use ObserverPathnameExtension to remove these filesAdam Vandenberg
2014-07-20add clarifying commentsAdam Vandenberg
2014-07-19fix commentAdam Vandenberg
2014-07-19Passing an empty array to puts prints nothingJack Nagel
2014-07-19Pass the string directly to the output methodJack Nagel
2014-07-19Pass array to puts instead of iterating over itJack Nagel
2014-07-19Default to stdout since other code calls this methodJack Nagel
2014-07-19Remove intermediate methodJack Nagel
2014-07-19Allow verbose config to be written to any IO objectJack Nagel
2014-07-19Don't mess with stdout when writing build config to a fileJack Nagel
2014-07-19Improve pull request URL regexpJack Nagel
- use a regexp literal and avoid escaping forward slashes - escape the period in "github.com" - match only hex characters in the commit part - allow hyphen in usernames and repo names, matching what we allow for tap names - avoid unnecessary capture
2014-07-18Fix checking out recursive git submodulesMaurus Cuelenaere
When nested submodules appear in a git repository, the `git submodule foreach git checkout-index ..` command would fail because it would checkout at the root directory instead of in its parent(s)' folder. Eg: root/submodule1/submodule2 would be checked out in root/submodule2 Closes #30841. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-18Add a factory method that accepts a formula objectJack Nagel
2014-07-18Ask the filename object for the prefixJack Nagel
2014-07-18Move bottle URL construction to the bottle objectJack Nagel
2014-07-18Move bottle filename construction to a classJack Nagel
2014-07-18exec_editor with no arguments should not silently succeedJack Nagel
2014-07-18Check nil? || empty? instead of to_s.empty?Jack Nagel
2014-07-18Drop pointless to_s callJack Nagel
2014-07-17Remove dead codeJack Nagel
This method is identical to the superclass implementation.
2014-07-17Spell out "formula" in parameter nameJack Nagel
2014-07-17Only ask for the stem onceJack Nagel
2014-07-17Remove special case for now-deprecated GitHub URLsJack Nagel
2014-07-17Call size on the pathJack Nagel
2014-07-17Use locals instead of repeatedly converting pathnames to stringsJack Nagel
2014-07-17Remove deprecated options from brew-diyJack Nagel
2014-07-17diy: use configure as the heuristic for autotoolsJack Nagel
Closes #30912.
2014-07-17Remove commentary from error messagePhillip Calvin
It might be best not to use the word "lame" here, as it's often considered to be an ableist slur. Closes #30915. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-16Remove more dead codeJack Nagel
2014-07-16Don't raise when converting the tag to a version failsJack Nagel
2014-07-16Raise ArgumentError when a symbol can't be mapped to a versionJack Nagel
The fact that this is implemented as a hash lookup is an implementation detail, so don't let the KeyError bubble up.
2014-07-16Rename testJack Nagel
2014-07-16Separate tag matching and checksum lookupJack Nagel
2014-07-16Use [] on the instance rather than the wrapped hashJack Nagel
2014-07-16Rename variableJack Nagel
2014-07-16Mark private methods as privateJack Nagel
2014-07-16Add key? to BottleCollectorJack Nagel
2014-07-16Remove dead codeJack Nagel
Formula objects are always constructed with an explicit name, so we no longer need to special case an empty name or the name "__UNKNOWN__".
2014-07-16Rename fetch_bottle_for to fetch_checksum_forJack Nagel
2014-07-15Implement []= on BottleCollectorJack Nagel
2014-07-15No need to set the URL for dependency testJack Nagel
2014-07-15Ensure that all required keys are passed to bottle_filenameJack Nagel
2014-07-15Remove default tag value from bottle_filenameJack Nagel
We always call this method with an explicit tag.
2014-07-15Eagerly set the download strategyJack Nagel
2014-07-13Move pjsip to the boneyard.Adam Vandenberg
Will accept an updated pull request to update this to the current version. Closes #27235.
2014-07-13Remove default value from bottle_url options parameterJack Nagel
To construct a URL, we need options to pass to bottle_filename, so this method should error out if none are given.
2014-07-13Remove default value from bottle_suffix parameterJack Nagel
We always call this method with an argument, so we can simplify it.
2014-07-13Inline method so we don't merge and unpack options twiceJack Nagel
2014-07-13Inline method that just wraps a constantJack Nagel