Sha256: 4fcca4fdcd86753179e41addeecb2dacece15fd9af3977bf28d36e7bc828f369
Contents?: true
Size: 543 Bytes
Versions: 2
Compression:
Stored size: 543 Bytes
Contents
module Copy module Operations module Meta module ClassMethods # Shows a given object # # @param [Integer] id The id of the object that should be shown # @return [Copy::Base] The found object def meta(attributes={}) response = Copy.request(:get, nil, 'meta/' + api_member_url(attributes[:id], :meta), {}, options_for_request(attributes)) self.new(response) end end def self.included(base) base.extend(ClassMethods) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
copy-ruby-0.0.2 | lib/copy/operations/meta.rb |
copy-ruby-0.0.1 | lib/copy/operations/meta.rb |