Sha256: 774faedbb19abd43983fe99bf4fe8baec4164034aa146d408afd63044948fb1b
Contents?: true
Size: 654 Bytes
Versions: 1
Compression:
Stored size: 654 Bytes
Contents
module FootStats class Resource # Waiting for ActiveModel::Model. =p # def initialize(options={}) options.each do |key, value| send("#{key}=", value) if respond_to?("#{key}=") end end # Return the resource name to request to FootStats. # # @return [String] # def self.resource_name raise NotImplementedError, "need to implement .resource_name in #{self}." end # Return the resource key that is fetch from the API response. # # @return [String] # def self.resource_key raise NotImplementedError, "need to implement .resource_key in #{self}." end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
foot_stats-0.0.1 | lib/foot_stats/resource.rb |