aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/dev-cmd
AgeCommit message (Collapse)Author
2016-10-25Merge pull request #1365 from MikeMcQuaid/audit-stable-url-betaMike McQuaid
audit: check for alpha/beta/rc usage in URLs.
2016-10-25bottle: fix nonexistent pyc bugZhiming Wang
We were deleting pyc files *after* replace_locations_with_placeholders and recording changed_files, meaning that some of the recorded files were to be deleted. The correct order is the opposite. A sample failed session: https://bot.brew.sh/job/Homebrew%20Core/10080/version=el_capitan/testReport/junit/brew-test-bot/el_capitan/bottle_buku/.
2016-10-24keg_relocate: refactor relocate_text_filesJosh Hagins
Replace relocate_text_files with three methods that clarify intent: replace_locations_with_placeholders, replace_placeholders_with_locations and replace_text_in_files, the first two calling the third.
2016-10-24keg_relocate: cache files rewritten during brew bottleJosh Hagins
`brew bottle` replaces instances of the Homebrew prefix, cellar, and repository with placeholders in all text files. Cache these files in INSTALL_RECEIPT.json so that we don't have to check every single text file for placeholders on install.
2016-10-24Don’t use bare percent literals.Markus Reiter
2016-10-24audit: check for alpha/beta/rc usage in URLs.Mike McQuaid
Stable URLs should not use unstable versions.
2016-10-23dev-cmd/man: use SOURCE_PATH instead of HOMEBREW_LIBRARYJosh Hagins
Don't Repeat Yourself.
2016-10-22Merge pull request #1345 from MikeMcQuaid/rubocop-styleMike McQuaid
Update Rubocop style.
2016-10-22Merge pull request #1310 from MikeMcQuaid/changelogMike McQuaid
Add `brew release-notes` developer command.
2016-10-22Update Rubocop style.Mike McQuaid
Another look at the current Rubocop rules and how they fit with our existing and desired future style. Almost all of these changes were automatic. Split some rules between formulae/brew where brew doesn't have millions of cases that need fixed.
2016-10-22Add `brew release-notes` developer command.Mike McQuaid
Outputs the merged pull requests on Homebrew/brew between two Git refs.
2016-10-18audit: don't complain about trailing whitespace.Mike McQuaid
This is handled by `brew style` now.
2016-10-15Merge pull request #1290 from maxnordlund/patch-1Mike McQuaid
Fix wrong ordering on when clauses in audit.rb
2016-10-15Fix when clause ordering.Max Nordlund
2016-10-15Rename tap-readme command to tap-new.Mike McQuaid
Write the README but also a `.travis.yml` file (and in future perhaps a `Jenkinsfile`).
2016-10-14Fix wrong ordering on when clauses in audit.rbMax Nordlund
It looks like a rebase/merge conflict remmenet.
2016-10-12Deprecate apr requirement.Mike McQuaid
It's not used on enough configurations now that there's little point in keeping it around. See e.g. `:autoconf` for prior art.
2016-10-05audit: forbid `deprecated_option` in new formulaeJonathan Chang
2016-10-04Merge pull request #1145 from reitermarkus/module-functionMarkus Reiter
Use `module_function` for `Homebrew` module.
2016-10-03Merge pull request #1193 from MatzFan/fix_verbose_testsMike McQuaid
fix tests failing when verbose set
2016-10-02update-test: fix tag updating, skip core tap.Mike McQuaid
Fix updating the `stable` branch used for tagged updates and ensure that the core tap isn’t retapped (the slowest part by far of this test).
2016-10-02Fix `Tty.gray`.Markus Reiter
2016-10-02Merge pull request #823 from reitermarkus/refactoring-ttyMarkus Reiter
Refactor Tty.
2016-10-02Remove `private_class_method` from commands.Markus Reiter
2016-10-02Use `module_function` for commands.Markus Reiter
2016-10-01Merge pull request #1169 from reitermarkus/rubocop-separate-configsMike McQuaid
Use separate RuboCop configs for formulae and core code.
2016-10-01Add `Formatter` module.Markus Reiter
2016-10-01Refactor Tty.Markus Reiter
2016-10-01Merge pull request #1201 from MikeMcQuaid/update-test-to-tagMike McQuaid
update-test: add --to-tag option.
2016-10-01update-test: add --to-tag option.Mike McQuaid
This option is used to test updating between tags.
2016-10-01man: note --fail-if-changed date behaviour change.Mike McQuaid
As requested in #1199 this updates the documentation accordingly for that change.
2016-10-01man: set date when --fail-if-changed.Mike McQuaid
Set the manpage date to the existing one if we're checking for changes. This avoids the only change being e.g. a new date.
2016-10-01delete verbose env vars in `brew tests`Bruce Steedman
2016-09-29dev-cmd/man: display diff --stat, add --exit-codeSteven Peters
The --fail-if-changed option will cause `brew man` to return a failing status code if the man files have changed.
2016-09-29Fix Lint/NestedMethodDefinition` in `dev-cmd/bottle.rb`.Markus Reiter
2016-09-27Merge pull request #1128 from reitermarkus/rubocopMike McQuaid
RuboCop changes.
2016-09-27bump-formula-pr: document new optionsilovezfs
2016-09-27bump-formula-pr: style fixesilovezfs
2016-09-27bump-formula-pr: forced_version support for develilovezfs
2016-09-27bump-formula-pr: add --write optionilovezfs
intended to be used in combination with --dry-run for a not-so-dry run the expected file modifications are made, but no git actions are taken
2016-09-27bump-formula-pr: handle gnu mirrorsilovezfs
and add explicit version when not preexisting
2016-09-27bump-formula-pr: handle explicit version DSLilovezfs
--version=1.2.3 option to set `version "1.2.3"` Note that --version=0 will remove a no-longer-needed explicit version
2016-09-27bump-formula-pr: --mirror optionilovezfs
2016-09-27bump-formula-pr: formula name guessingilovezfs
2016-09-27bump-formula-pr: set sha256 automatically when possibleilovezfs
2016-09-25RuboCop: Style/IfUnlessModifierMarkus Reiter
2016-09-24Merge pull request #1123 from reitermarkus/rubocopMike McQuaid
RuboCop: Style/AccessorMethodName
2016-09-24test-bot: move to tap.Mike McQuaid
Migrate to https://github.com/Homebrew/homebrew-test-bot to be able to work on this with a different, non-tagged workflow.
2016-09-24RuboCop: Style/AccessorMethodNameMarkus Reiter
2016-09-24Fix Style/GuardClause.Markus Reiter