Mike McQuaid
3383ae7736
Merge pull request #6816 from boblail/fix-undefined-method-join-for-nilclass
...
Fix bug with printing pinned dependencies.
2019-12-05 09:19:41 +00:00
Bob Lail
a26390be05
Fix bug with printing pinned dependencies.
...
Brew prints this error:
```
Error: undefined method `join' for nil:NilClass
```
because, in this code:
```ruby
puts pinned_dependents.map do |f|
"#{f.full_specified_name} #{f.pkg_version}"
end.join(", ")
```
the block is passed to `puts` and not to `map`. `.join(",")` is called on the output of `puts`.
(I think the regression was introduced in this commit: e12a7b0808353ea81d63774be1edaff81710d7a6)
2019-12-04 12:31:01 -06:00
Steven Peters
97c575b6c3
Merge pull request #6807 from scpeters/formula_installer_rescue_already_attempted
...
FormulaInstaller: rescue already attempted install
2019-12-04 09:58:18 -08:00
Mike McQuaid
86b1ac9d57
Merge pull request #6814 from Homebrew/dependabot/bundler/Library/Homebrew/nokogiri-1.10.7
...
build: bump nokogiri from 1.10.5 to 1.10.7 in /Library/Homebrew
2019-12-04 17:31:49 +00:00
Mike McQuaid
28869be668
Merge pull request #6805 from Homebrew/dependabot/bundler/Library/Homebrew/mustache-1.1.1
...
build: bump mustache from 1.1.0 to 1.1.1 in /Library/Homebrew
2019-12-04 17:15:26 +00:00
dependabot-preview[bot]
67831d8f17
build: bump nokogiri from 1.10.5 to 1.10.7 in /Library/Homebrew
...
Bumps [nokogiri](https://github.com/sparklemotion/nokogiri ) from 1.10.5 to 1.10.7.
- [Release notes](https://github.com/sparklemotion/nokogiri/releases )
- [Changelog](https://github.com/sparklemotion/nokogiri/blob/master/CHANGELOG.md )
- [Commits](https://github.com/sparklemotion/nokogiri/compare/v1.10.5...v1.10.7 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-12-04 17:14:53 +00:00
Mike McQuaid
7da1ba5475
Merge pull request #6811 from Homebrew/dependabot/bundler/docs/github-pages-203
...
build: bump github-pages from 202 to 203 in /docs
2019-12-04 17:13:32 +00:00
dependabot-preview[bot]
e7e70fa5ac
build: bump mustache from 1.1.0 to 1.1.1 in /Library/Homebrew
...
Bumps [mustache](https://github.com/mustache/mustache ) from 1.1.0 to 1.1.1.
- [Release notes](https://github.com/mustache/mustache/releases )
- [Changelog](https://github.com/mustache/mustache/blob/master/HISTORY.md )
- [Commits](https://github.com/mustache/mustache/compare/v1.1.0...v1.1.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-12-04 16:57:50 +00:00
dependabot-preview[bot]
b0b0d22da3
build: bump github-pages from 202 to 203 in /docs
...
Bumps [github-pages](https://github.com/github/pages-gem ) from 202 to 203.
- [Release notes](https://github.com/github/pages-gem/releases )
- [Commits](https://github.com/github/pages-gem/compare/v202...v203 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-12-04 16:57:34 +00:00
Mike McQuaid
8401d84dca
Merge pull request #6809 from MikeMcQuaid/actions-config-doctor
...
.github/workflows/tests: run config, doctor.
2019-12-04 16:45:26 +00:00
Mike McQuaid
bed5297b6c
.github/workflows/tests: run config, doctor.
...
This should help with debugging why the `brew bundle` tests are now
failing.
2019-12-04 15:35:31 +00:00
Mike McQuaid
4a7ea6dbc4
Merge pull request #6800 from figroc/extract-semver-aware
...
extract: semver aware
2019-12-04 11:12:10 +00:00
Steven Peters
13e34ec90d
FormulaInstaller: rescue already attempted install
2019-12-04 09:08:22 +00:00
Figroc Chen
3c09ab0d06
extract: semver aware
2019-12-03 21:45:55 +08:00
Mike McQuaid
6decac5875
Merge pull request #6803 from MikeMcQuaid/latest_version_installed
...
Rename Formula#installed? to Formula#latest_version_installed?
2019-12-03 12:09:01 +00:00
Mike McQuaid
5dd8ead51a
Rename Formula#installed? to Formula#latest_version_installed?
...
This naming has always been a bit weird and confusing so let's change
it and provide a `compat` fallback for later deprecation.
2019-12-03 11:42:42 +00:00
Mike McQuaid
adc630f1ca
Merge pull request #6801 from EricFromCanada/output-formatting
...
Update formatting of status messages
2019-12-03 11:38:56 +00:00
Mike McQuaid
45001ea813
Merge pull request #6802 from tonyravioli/master
...
Fixed "Project Leader" link
2019-12-03 11:36:35 +00:00
Pasta Ravioli
6c3f728ac7
Fixed "Project Leader" link
2019-12-02 11:43:25 -05:00
EricFromCanada
b817796562
Grammar fixes for status messages
2019-12-02 11:38:06 -05:00
EricFromCanada
9bfd597991
Format debug messages with odebug
2019-12-02 11:33:19 -05:00
EricFromCanada
fcdda8d481
commands: add formatting to headings
2019-12-02 11:32:33 -05:00
hyuraku
e6e0d1128c
create new envoronments
2019-12-03 00:45:11 +09:00
Mike McQuaid
1c9e30e24f
Merge pull request #6799 from MikeMcQuaid/clt-download-more
...
os/mac/xcode: add additional CLT download link.
2019-12-02 14:01:46 +00:00
Mike McQuaid
ea44760f8c
os/mac/xcode: add additional CLT download link.
...
Sadly Apple don't seem to be providing these reliably.
Fixes #6796
2019-12-02 13:25:43 +00:00
Mike McQuaid
51ea444460
Merge pull request #6797 from Homebrew/dependabot/bundler/Library/Homebrew/zeitwerk-2.2.2
...
build: bump zeitwerk from 2.2.1 to 2.2.2 in /Library/Homebrew
2019-12-02 12:47:39 +00:00
Mike McQuaid
5246e9f4ab
brew vendor-gems: commit updates.
2019-12-02 12:12:58 +00:00
Mike McQuaid
7180ece893
Merge pull request #6795 from issyl0/readme-remove-patreon-badge
...
README: Remove Patreon badge for consistency amongst donation methods
2019-12-02 11:52:00 +00:00
dependabot-preview[bot]
6f2102d43f
build: bump zeitwerk from 2.2.1 to 2.2.2 in /Library/Homebrew
...
Bumps [zeitwerk](https://github.com/fxn/zeitwerk ) from 2.2.1 to 2.2.2.
- [Release notes](https://github.com/fxn/zeitwerk/releases )
- [Changelog](https://github.com/fxn/zeitwerk/blob/master/CHANGELOG.md )
- [Commits](https://github.com/fxn/zeitwerk/compare/v2.2.1...v2.2.2 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-12-02 05:25:23 +00:00
Issy Long
afe03af835
README: Remove Patreon badge for consistency amongst donation methods
...
- We don't have a badge for other donation methods - this looked slightly out of place.
2019-12-01 23:06:31 +00:00
Mike McQuaid
fcfa80a63a
Merge pull request #6794 from MikeMcQuaid/fix-cask-style
...
Fix `brew cask style`.
2019-12-01 15:19:18 +00:00
Mike McQuaid
c1b00297e0
cask/cmd/style_spec: add rubocop test.
...
This verifies the cask configuration hasn't been broken.
2019-12-01 15:04:32 +00:00
Mike McQuaid
2101de77cf
.rubocop_cask: fix RuboCop names.
...
Broken since a RuboCop update.
2019-12-01 14:51:39 +00:00
Mike McQuaid
ef34fbc634
cask/cmd/style: don't hide warnings.
...
These sometimes display useful RuboCop deprecations.
2019-12-01 14:19:26 +00:00
Mike McQuaid
8ebfc923fb
Merge pull request #6792 from EricFromCanada/issue-template-update
...
Issues: add section for brew config & doctor output
2019-11-29 10:48:59 +00:00
Mike McQuaid
0ffe59e768
Merge pull request #6791 from MikeMcQuaid/apidoc-parallel
...
workflows/apidoc: try to rebase before pushing.
2019-11-29 10:47:45 +00:00
Eric Knibbe
9dc2997b9a
Add section for brew config & doctor output
2019-11-28 18:04:34 -05:00
Mike McQuaid
f989295900
Merge pull request #6789 from Homebrew/dependabot/bundler/Library/Homebrew/rubocop-0.77.0
...
build: bump rubocop from 0.76.0 to 0.77.0 in /Library/Homebrew
2019-11-28 19:16:14 +00:00
Mike McQuaid
c79cb6a2db
workflows/apidoc: try to rebase before pushing.
...
This avoids failures when you have two `master` builds running at once.
2019-11-28 15:24:32 +00:00
Mike McQuaid
766fc4b301
Fix RuboCop 0.77.0 failures.
2019-11-28 15:10:50 +00:00
Mike McQuaid
35bad17e1e
brew vendor-gems: commit updates.
2019-11-28 14:46:04 +00:00
Mike McQuaid
88a1334664
Merge pull request #6790 from raimon49/update-alternative-installation-linuxbrew
...
Update document about Alternative Installation
2019-11-28 14:43:03 +00:00
Mike McQuaid
f5087986e7
Merge pull request #6787 from gfguthrie/remove-standard-compilers
...
Remove STANDARD_COMPILERS & references to it
2019-11-28 14:42:07 +00:00
raimon
90ec6bd500
Update document about Alternative Installation
...
Symbolic link creation does not depend on current directory
2019-11-28 21:21:44 +09:00
Mike McQuaid
e4fd52cb34
Merge pull request #6788 from Homebrew/dependabot/bundler/docs/faraday-0.17.1
...
build: bump faraday from 0.17.0 to 0.17.1 in /docs
2019-11-28 09:16:58 +00:00
dependabot-preview[bot]
b67884acf6
build: bump rubocop from 0.76.0 to 0.77.0 in /Library/Homebrew
...
Bumps [rubocop](https://github.com/rubocop-hq/rubocop ) from 0.76.0 to 0.77.0.
- [Release notes](https://github.com/rubocop-hq/rubocop/releases )
- [Changelog](https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rubocop-hq/rubocop/compare/v0.76.0...v0.77.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-11-28 05:24:11 +00:00
dependabot-preview[bot]
c12c998c31
build: bump faraday from 0.17.0 to 0.17.1 in /docs
...
Bumps [faraday](https://github.com/lostisland/faraday ) from 0.17.0 to 0.17.1.
- [Release notes](https://github.com/lostisland/faraday/releases )
- [Changelog](https://github.com/lostisland/faraday/blob/master/CHANGELOG.md )
- [Commits](https://github.com/lostisland/faraday/compare/v0.17.0...v0.17.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-11-28 05:13:51 +00:00
Grant Guthrie
178a4e55c2
Remove STANDARD_COMPILERS & references to it
2019-11-27 15:38:11 -05:00
Mike McQuaid
b89ec5533b
Merge pull request #6785 from MikeMcQuaid/tests-linux
...
workflows/tests: tweak behaviour by OS.
2019-11-27 14:24:35 +00:00
Mike McQuaid
a6c3ee02dd
workflows/tests: tweak behaviour by OS.
...
This should speed up Homebrew/brew testing by not running generic or
no-compat tests on macOS.
2019-11-27 14:01:39 +00:00