summaryrefslogtreecommitdiff
path: root/lib/chef_zero/endpoints/groups_endpoint.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef_zero/endpoints/groups_endpoint.rb')
-rw-r--r--lib/chef_zero/endpoints/groups_endpoint.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef_zero/endpoints/groups_endpoint.rb b/lib/chef_zero/endpoints/groups_endpoint.rb
index 3e75293..47cd101 100644
--- a/lib/chef_zero/endpoints/groups_endpoint.rb
+++ b/lib/chef_zero/endpoints/groups_endpoint.rb
@@ -1,12 +1,12 @@
-require 'ffi_yajl'
-require 'chef_zero/endpoints/rest_list_endpoint'
+require "ffi_yajl"
+require "chef_zero/endpoints/rest_list_endpoint"
module ChefZero
module Endpoints
# /organizations/ORG/groups/NAME
class GroupsEndpoint < RestListEndpoint
def initialize(server)
- super(server, %w(id groupname))
+ super(server, %w{id groupname})
end
end
end