Module: Googletastic::Mixins::Actions::ClassMethods

Defined in:
lib/googletastic/mixins/actions.rb

Instance Method Summary collapse

Instance Method Details

#download_url(id) ⇒ Object



35
36
37
# File 'lib/googletastic/mixins/actions.rb', line 35

def download_url(id)
  raise "Implement in Subclass"
end

#edit_url(id) ⇒ Object

edit the data on google docs



12
13
14
# File 'lib/googletastic/mixins/actions.rb', line 12

def edit_url(id)
  raise "Implement in Subclass"
end

#get_url(id) ⇒ Object

xml entry feed



27
28
29
# File 'lib/googletastic/mixins/actions.rb', line 27

def get_url(id)
  raise "Implement 'get' in subclass"
end

#index_url(ids = nil) ⇒ Object

xml feed



22
23
24
# File 'lib/googletastic/mixins/actions.rb', line 22

def index_url(ids = nil)
  raise "Implement in Subclass"
end

#show_url(id) ⇒ Object

see the data live on google docs



7
8
9
# File 'lib/googletastic/mixins/actions.rb', line 7

def show_url(id)
  raise "Implement in Sublass"
end

#update_url(id) ⇒ Object

update the data via xml



17
18
19
# File 'lib/googletastic/mixins/actions.rb', line 17

def update_url(id)
  raise "Implement in Subclass"
end

#upload_url(id = nil) ⇒ Object



31
32
33
# File 'lib/googletastic/mixins/actions.rb', line 31

def upload_url(id = nil)
  raise "Implement in Subclass"
end