Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
brew
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KMSCAKKSCFKA AKFACAMADCAS
brew
Commits
6b0afa3e
Commit
6b0afa3e
authored
7 years ago
by
Mike McQuaid
Browse files
Options
Downloads
Patches
Plain Diff
Remove puts_hash, require pp
I wasn’t aware this existed when I created puts_hash so: may as well remove it.
parent
ceb1629a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Library/Homebrew/global.rb
+1
-0
1 addition, 0 deletions
Library/Homebrew/global.rb
Library/Homebrew/test/utils_spec.rb
+0
-8
0 additions, 8 deletions
Library/Homebrew/test/utils_spec.rb
Library/Homebrew/utils.rb
+0
-16
0 additions, 16 deletions
Library/Homebrew/utils.rb
with
1 addition
and
24 deletions
Library/Homebrew/global.rb
+
1
−
0
View file @
6b0afa3e
...
@@ -10,6 +10,7 @@ require "exceptions"
...
@@ -10,6 +10,7 @@ require "exceptions"
require
"set"
require
"set"
require
"rbconfig"
require
"rbconfig"
require
"official_taps"
require
"official_taps"
require
"pp"
ARGV
.
extend
(
HomebrewArgvExtension
)
ARGV
.
extend
(
HomebrewArgvExtension
)
...
...
This diff is collapsed.
Click to expand it.
Library/Homebrew/test/utils_spec.rb
+
0
−
8
View file @
6b0afa3e
...
@@ -270,12 +270,4 @@ describe "globally-scoped helper methods" do
...
@@ -270,12 +270,4 @@ describe "globally-scoped helper methods" do
}.
to
raise_error
(
MethodDeprecatedError
,
%r{method.*replacement.*homebrew/homebrew-core.*homebrew/core}m
)
}.
to
raise_error
(
MethodDeprecatedError
,
%r{method.*replacement.*homebrew/homebrew-core.*homebrew/core}m
)
end
end
end
end
describe
"#puts_hash"
do
it
"outputs a hash"
do
expect
{
puts_hash
(
a:
1
,
b:
2
,
c:
[
3
,
{
"d"
=>
4
}])
}.
to
output
(
"a: 1
\n
b: 2
\n
c: [3, {
\"
d
\"
=>4}]
\n
"
).
to_stdout
end
end
end
end
This diff is collapsed.
Click to expand it.
Library/Homebrew/utils.rb
+
0
−
16
View file @
6b0afa3e
...
@@ -526,19 +526,3 @@ def migrate_legacy_keg_symlinks_if_necessary
...
@@ -526,19 +526,3 @@ def migrate_legacy_keg_symlinks_if_necessary
end
end
FileUtils
.
rm_rf
legacy_pinned_kegs
FileUtils
.
rm_rf
legacy_pinned_kegs
end
end
def
puts_hash
(
hash
,
indent:
0
)
return
hash
unless
hash
.
is_a?
Hash
hash
.
each
do
|
key
,
value
|
indent_spaces
=
" "
*
(
indent
*
2
)
printf
"
#{
indent_spaces
}#{
key
}
:"
if
value
.
is_a?
Hash
puts
puts_hash
(
value
,
indent:
indent
+
1
)
else
puts
"
#{
value
}
"
end
end
hash
end
alias
ph
puts_hash
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment