Class: ButterCMS::Post

Inherits:
ButterResource show all
Defined in:
lib/buttercms/post.rb

Instance Attribute Summary

Attributes inherited from ButterResource

#data, #meta

Class Method Summary collapse

Methods inherited from ButterResource

all, endpoint, find, #initialize, #inspect

Constructor Details

This class inherits a constructor from ButterCMS::ButterResource

Class Method Details

.resource_pathObject



3
4
5
# File 'lib/buttercms/post.rb', line 3

def self.resource_path
  "/posts/"
end

.search(query = '', options = {}) ⇒ Object



7
8
9
10
11
# File 'lib/buttercms/post.rb', line 7

def self.search(query = '', options = {})
  response = ButterCMS.request('/search/', {query: query}.merge(options))

  self.create_collection(response)
end