Module: Contentstack
- Defined in:
- lib/contentstack.rb,
lib/contentstack/asset.rb,
lib/contentstack/entry.rb,
lib/contentstack/error.rb,
lib/contentstack/query.rb,
lib/contentstack/client.rb,
lib/contentstack/region.rb,
lib/contentstack/sync_result.rb,
lib/contentstack/content_type.rb,
lib/contentstack/asset_collection.rb,
lib/contentstack/entry_collection.rb
Overview
Contentstack - Ruby SDK
Contentstack is a content management system that facilitates the process of publication by separating the content from site-related programming and design.
Installation
gem install contentstack
Initialize the Stack
@stack = Contentstack::Client.new("site_api_key", "delivery_token", "enviroment_name")
Initialize the Stack for EU region
@stack = Contentstack::Client.new("site_api_key", "delivery_token", "enviroment_name", {"region": Contentstack::Region::EU })
Initialize the Stack for custom host
@stack = Contentstack::Client.new("site_api_key", "delivery_token", "enviroment_name", {"host": "https://custom-cdn.contentstack.com" })
Initialize the Stack for EU region
@stack = Contentstack::Client.new("site_api_key", "delivery_token", "enviroment_name", {"branch":"branch_name" })
Usage
Get single entry
@stack.content_type('blog').entry('<entry_uid_here>').fetch
Query entries
@stack.content_type('blog').query.regex('title', '.*hello.*').fetch
Defined Under Namespace
Classes: Asset, AssetCollection, Client, ContentType, Entry, EntryCollection, Error, Host, Query, Region, SyncResult
Class Method Summary collapse
Class Method Details
.json_to_html(content, options) ⇒ Object
29 30 31 |
# File 'lib/contentstack.rb', line 29 def self.json_to_html(content, ) ContentstackUtils.json_to_html(content, ) end |
.render_content(content, options) ⇒ Object
26 27 28 |
# File 'lib/contentstack.rb', line 26 def self.render_content(content, ) ContentstackUtils.render_content(content, ) end |