From 9cd051b265dd84c8c27a648968926db8069b8270 Mon Sep 17 00:00:00 2001 From: Roel van Dijk Date: Sat, 8 Sep 2012 17:49:13 +0200 Subject: [PATCH] Fix hash-rocket syntax. --- lib/neography/rest/relationship_properties.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/neography/rest/relationship_properties.rb b/lib/neography/rest/relationship_properties.rb index 14a82c1..c8ba4df 100644 --- a/lib/neography/rest/relationship_properties.rb +++ b/lib/neography/rest/relationship_properties.rb @@ -36,7 +36,7 @@ def get_each(id, *properties) def remove(id, *properties) if properties.none? - @connection.delete(all_path(id: get_id(id))) + @connection.delete(all_path(:id => get_id(id))) else remove_each(id, *properties) end