diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-07-26 17:26:36 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-07-26 17:26:36 -0700 |
commit | 5f6daf7b670b571447a5d907219ab7804e3c9007 (patch) | |
tree | ec228a87abab99d4dbc0626192d30b724a08888e /lib/chef/http/basic_client.rb | |
parent | ba0c5fcd7a1735b4ae170816dc48b05d791b9733 (diff) | |
download | chef-attrs.tar.gz |
Combine attr_readers onto a single lineattrs
The method takes more than 1 argument
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/http/basic_client.rb')
-rw-r--r-- | lib/chef/http/basic_client.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/chef/http/basic_client.rb b/lib/chef/http/basic_client.rb index fa77b67427..2029234579 100644 --- a/lib/chef/http/basic_client.rb +++ b/lib/chef/http/basic_client.rb @@ -31,9 +31,7 @@ class Chef HTTPS = "https".freeze - attr_reader :url - attr_reader :ssl_policy - attr_reader :keepalives + attr_reader :url, :ssl_policy, :keepalives # Instantiate a BasicClient. # === Arguments: |