Sha256: c6b556c33799bc1bd7aff1de8a3d5926665f30bf24e9def6b38ba411d2991a63
Contents?: true
Size: 1.45 KB
Versions: 2
Compression:
Stored size: 1.45 KB
Contents
module ConferenceManager class Resource < ActiveResource::Base class << self def domain Site.current.cm_domain.present? ? Site.current.cm_domain : "http://vcc-test.dit.upm.es:8080" end def subclasses @subclasses ||= [] end def inherited(subclass) @subclasses = subclasses | Array(subclass) super end def reload subclasses.each{ |subclass| subclass.site = subclass.domain } end # This is a single resource, like web or recording, but not events. def singleton @singleton = true end # redefine this two methods to remove .format extension def collection_path(prefix_options = {}, query_options = nil) prefix_options, query_options = split_options(prefix_options) if query_options.nil? @singleton ? "#{prefix(prefix_options)}#{collection_name.singularize}#{query_string(query_options)}" : "#{prefix(prefix_options)}#{collection_name}#{query_string(query_options)}" end def element_path(id, prefix_options = {}, query_options = nil) prefix_options, query_options = split_options(prefix_options) if query_options.nil? @singleton ? "#{prefix(prefix_options)}#{collection_name.singularize}#{query_string(query_options)}" : "#{prefix(prefix_options)}#{collection_name}/#{id}#{query_string(query_options)}" end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
conference_manager-ruby-0.0.2 | lib/conference_manager/resource.rb |
conference_manager-ruby-0.0.1 | lib/conference_manager/resource.rb |