Sha256: a2fea5ddf9603b88d55414e79e744408b1af63cc1b517ff64d9a1ff0f026a826
Contents?: true
Size: 868 Bytes
Versions: 1
Compression:
Stored size: 868 Bytes
Contents
module GoogleCells module UrlHelper def worksheets_uri(key) "https://spreadsheets.google.com/feeds/worksheets/#{key}/private/full" end def copy_uri(key) "https://www.googleapis.com/drive/v2/files/#{key}/copy" end def permissions_uri(key) "https://www.googleapis.com/drive/v2/files/#{key}/permissions" end def folder_uri(key) "https://www.googleapis.com/drive/v2/files/#{key}/children" end def child_uri(folder_key, child_key) "https://www.googleapis.com/drive/v2/files/#{folder_key}/children/#{child_key}" end def file_uri(key) "https://www.googleapis.com/drive/v2/files/#{key}" end def watch_uri(key) "https://www.googleapis.com/drive/v2/files/#{key}/watch" end def unwatch_uri "https://www.googleapis.com/drive/v2/channels/stop" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
google-cells-0.3.0 | lib/google_cells/url_helper.rb |