gdata-jruby-client 0.7.1 → 0.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/google_service.rb +2 -3
- metadata +1 -1
data/lib/google_service.rb
CHANGED
|
@@ -59,11 +59,10 @@ class Java::ComGoogleGdataClient::GoogleService
|
|
|
59
59
|
end
|
|
60
60
|
|
|
61
61
|
def delete_entry(options={})
|
|
62
|
-
raise "
|
|
63
|
-
raise "Entry is required" unless options[:entry]
|
|
62
|
+
raise "Entry URL is required" unless options[:url]
|
|
64
63
|
options[:url] = url_for(options[:url]) if options[:url]
|
|
65
64
|
|
|
66
|
-
delete(options[:url]
|
|
65
|
+
delete(options[:url])
|
|
67
66
|
end
|
|
68
67
|
|
|
69
68
|
def create_batch(options={})
|