summaryrefslogtreecommitdiff
path: root/lib/chef/org.rb
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2018-09-26 22:22:29 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2018-09-26 22:22:29 -0700
commit8400f4cb7d977896531ae277fdcf3398dc2d4c6c (patch)
tree33b8b5ba385366457de4990636daa143d64f1043 /lib/chef/org.rb
parent8daa1c6598182777802eba6a74928f28a32f6835 (diff)
downloadchef-8400f4cb7d977896531ae277fdcf3398dc2d4c6c.tar.gz
replace some instances of to_hash with to_hlcg/to-h-cleanup
to_hash on a lot of these objects should go away, but even eliminating all our calls to to_hash on these objects internally is difficult. (e.g. converting the knife ui code to call #to_h means we wind up calling nil#to_h which "helpfully" becomes '{}' which is hilarious and i don't know why someone thought that was a good idea). Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/org.rb')
-rw-r--r--lib/chef/org.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/chef/org.rb b/lib/chef/org.rb
index ea1c411b67..afc5cf148d 100644
--- a/lib/chef/org.rb
+++ b/lib/chef/org.rb
@@ -58,7 +58,7 @@ class Chef
arg, kind_of: String)
end
- def to_hash
+ def to_h
result = {
"name" => @name,
"full_name" => @full_name,
@@ -68,20 +68,22 @@ class Chef
result
end
+ alias_method :to_hash, :to_h
+
def to_json(*a)
- Chef::JSONCompat.to_json(to_hash, *a)
+ Chef::JSONCompat.to_json(to_h, *a)
end
def create
payload = { name: name, full_name: full_name }
new_org = chef_rest.post("organizations", payload)
- Chef::Org.from_hash(to_hash.merge(new_org))
+ Chef::Org.from_hash(to_h.merge(new_org))
end
def update
payload = { name: name, full_name: full_name }
new_org = chef_rest.put("organizations/#{name}", payload)
- Chef::Org.from_hash(to_hash.merge(new_org))
+ Chef::Org.from_hash(to_h.merge(new_org))
end
def destroy