Socket
Book a DemoInstallSign in
Socket

blogish

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blogish

0.0.2
bundlerRubygems
Version published
Maintainers
1
Created
Source

Blogish

Blogish is a tiny and powerful blogging engine, wrapped up in a Rubygem. It supports markdown-based entries, RSS feeds and syntax highlighting.

It aims to provide the functions you need to create and display entries, but without dictating site layout or design. That makes it well suited for situations where you want to incorporate a simple blog into an pre-existing site.

Installation

Add this line to your application's Gemfile:

gem 'blogish'

And then execute:

$ bundle

Or install it yourself as:

$ gem install blogish

Usage

require 'blogish'

Creating new posts

Blogish reads entries stored in flat markdown files in a views/blog directory.

It relies on certain conventions to work. Each entry should be named using the date of the entry and the URL slug, separated by an underscore and with the .mkd extension.

<date>_<slug>.mkd

The first line of the each entry should contain its title, then three dashes to separate it from the main body of the entry. Putting it all together:

$ cat views/blog/2013-02-07_hello-world.mkd
Hello World!
---
This is the first paragraph.

This is the second paragraph. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Hic porro quae ea amet 
dolores quibusdam magni illum harum unde tempore nisi totam adipisci quisquam aliquid quis ab necessitatibus? 
Mollitia explicabo aperiam asperiores doloremque officiis ipsam. Animi distinctio a dolor consequuntur.

Displaying a post

You can display a single post based on it's slug using the fetch method. For example:

Blogish.fetch('hello-world')

If a matching entry is found, then a Hash with the contents of the post is returned. This Hash can then be passed to your view file, or wherever else you need to use the information.

{
  :title => 'Hello World',
  :date => #<Date: 2013-02-07 ((2456088j,0s,0n),+0s,2299161j)>,
  :slug => 'hello-world',
  :intro => '<p>This is the first paragraph</p>',
  :body => '<p>This is the first paragraph</p><p>This is the second paragraph. Lorem ipsum ...</p>'
}

If no entry with a matching slug is found, the method returns nil.

Displaying multiple posts

You can also display all entries using the fetch_all method. This returns an Array of all entries in the directory, sorted with the most recently dated first.

Blogish.fetch_all

This Array can then be passed to your view file, or wherever else you need to use it.

Using Syntax Highlighting

Syntax highlighting is supported out of the box thanks to Rouge. A list of supported languages is here. Simply wrap any code in your markdown files in fenced blocks, github style.

```ruby
# This is a comment
@foo = bar
```

Contributing

  • Fork it
  • Create your feature branch (git checkout -b my-new-feature)
  • Commit your changes (git commit -am 'Add some feature')
  • Push to the branch (git push origin my-new-feature)
  • Create new Pull Request

FAQs

Package last updated on 21 Feb 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.