aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
AgeCommit message (Collapse)Author
2017-10-08Fix regexes in `CaskLoader`.Markus Reiter
2017-10-08Fix comment location.Markus Reiter
2017-10-08audit: tweak assert/refute_predicate auditDominyk Tiller
Addresses some of the issues I raised in https://github.com/Homebrew/homebrew-core/pull/19127#issue-263566817. Would still like to work out a way to check `File.exist?`-style language inside the `test do` block exclusively but for now it's better to be too conservative on the audit than to be overly-zealous and flag too much.
2017-10-08Don’t track files in `test` and `vendor`.Markus Reiter
2017-10-07Fix RuboCop tests.Markus Reiter
2017-10-07Merge pull request #3283 from reitermarkus/cask-loaderMarkus Reiter
Add helper method for Cask fixture paths and refactor CaskLoader.
2017-10-07Add helper method for Cask fixture paths and refactor CaskLoader.Markus Reiter
2017-10-07Merge pull request #3280 from commitay/cask-internal-auditMarkus Reiter
InternalAuditModifiedCask: audit renamed Casks
2017-10-07add pkg / binary commentcommitay
2017-10-07Cask AbstractArtifact: fix install ordercommitay
2017-10-07InternalAuditModifiedCask: audit renamed Caskscommitay
2017-10-07Merge pull request #3267 from reitermarkus/refactoringMarkus Reiter
Refactor DSL and Artifact classes.
2017-10-06Merge pull request #3273 from MikeMcQuaid/mdfind-reject-backupsMike McQuaid
os/mac: ignore apps found in Time Machine backups.
2017-10-05Merge pull request #3274 from MikeMcQuaid/official-taps-remove-apacheilovezfs
official_taps: remove apache.
2017-10-06Merge pull request #3269 from DomT4/assert_predicateMike McQuaid
audit: prefer assert/refute_predicate over File.exist?
2017-10-06Merge pull request #3262 from kabel/version-detect-phpMike McQuaid
Add version detection support for php URL
2017-10-05official_taps: remove apache.Mike McQuaid
It's now deprecated.
2017-10-05os/mac: ignore apps found in Time Machine backups.Mike McQuaid
These can introduce confusion on e.g. outdated Xcode versions when they are the only (or first) versions that are found.
2017-10-05audit: prefer assert/refute_predicate over File.exist?Dominyk Tiller
2017-10-04Refactor tests.Markus Reiter
2017-10-04Don’t reorder “basic” artifacts.Markus Reiter
2017-10-04Directly save artifacts in DSL.Markus Reiter
2017-10-04Refactor DSL and Artifacts.Markus Reiter
2017-10-04Merge pull request #3263 from MikeMcQuaid/formulary-unreadable-bottle-formulaMike McQuaid
formulary: handle unreadable bottle formula.
2017-10-04Merge pull request #3259 from reitermarkus/underscore_supporting_uriMarkus Reiter
Remove `UnderscoreSupportingURI`.
2017-10-04Merge pull request #3260 from reitermarkus/cask-cli-specsMarkus Reiter
Refactor `cask/cli` specs.
2017-10-04formulary: handle unreadable bottle formula.Mike McQuaid
This occurs for any formulae that use relative `require` to files that are inside of e.g. a tap to use abstract formulae.
2017-10-03Add test for php version in URL middleKevin Abel
2017-10-03Add version detection support for php URLKevin Abel
Pulls a semver from anywhere in the URL (not just stem).
2017-10-03Merge pull request #3256 from claui/pkg-unshadow-optionsMarkus Reiter
Unshadow `allow_untrusted` option for pkg artifact
2017-10-03Refactor `cask/cli` specs.Markus Reiter
2017-10-03Merge pull request #3220 from yzguy/yzguy/cask_available_languages_to_infoMarkus Reiter
add available languages to cask info command
2017-10-03Remove `UnderscoreSupportingURI`.Markus Reiter
2017-10-02stylistic changes for cask info testsAdam Smith
2017-10-02Merge pull request #3255 from reitermarkus/summarizeMarkus Reiter
Add missing `summarize` method.
2017-10-02Merge pull request #3247 from reitermarkus/fix-trashMarkus Reiter
Fix `brew tests` leaving last file in trash.
2017-10-02Unshadow `allow_untrusted` option for pkg artifactClaudia
The pkg stanza has an option called `allow_untrusted`, which is supposed to cause `/usr/sbin/installer` to be called with the `-allowUntrusted` switch. PR #3141 seems to have renamed the `pkg_install_opts` field to `options`. At the same time, it introduces an `options` parameter for the `run_installer` method, which shadows the `options` getter method, causing the `allow_untrusted` option to be silently ignored. The issue affects just the `pkg` stanza because `Hbc::Artifact::Pkg` is the only artifact class that has an `options` method. This commit removes the shadowing by renaming the field to `stanza_options`; in one case, it uses `_options` for a parameter name (instead of the more canonical `_`) for the sake of clarity.
2017-10-01text_files: Skip the formula in .brew/formula.rbShaun Jackman
2017-10-01Add missing `summarize` method.Markus Reiter
2017-10-01Merge pull request #3248 from reitermarkus/audit-warningMarkus Reiter
Add audit warning if previous Cask version cannot be read.
2017-10-01Only run trash test when collecting coverage.Markus Reiter
2017-10-01Fix `brew tests` leaving last file in trash.Markus Reiter
2017-10-01diagnostic: remove unnecessary blank line.Mike McQuaid
2017-10-01Merge pull request #3252 from MikeMcQuaid/no-export-default-makeilovezfs
shims/super/make: don't export MAKE=make.
2017-10-01shims/super/make: don't export MAKE=make.Mike McQuaid
This is redundant and breaks Handbrake: https://github.com/HandBrake/HandBrake/issues/872
2017-09-30pour_bottle?: Check bottle.compatible_cellar?Shaun Jackman
formula.bottled? is false when the bottle has no sha256, as with a local bottle.
2017-09-30add available languages to cask info commandAdam Smith
add language tests for dsl add fixtures, tests for languages info output add extra lines
2017-10-01Add audit warning if previous Cask version cannot be read.Markus Reiter
2017-09-29Use `PATH` where possible.Markus Reiter
2017-09-29brew: handle Ruby 2.3 more gracefully.Mike McQuaid
- `brew.rb` needed updated to fail unless on Ruby 2.3 - `brew update` should unset `HOMEBREW_RUBY_PATH` to ensure that this doesn't "stick" on a Ruby 2.0 version after a portable Ruby has been installed.