Project

ramble

0.0
No commit activity in last 3 years
No release in over 3 years
Simple blogging based somewhat off of Jekyll.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.12
~> 10.0
~> 3.0

Runtime

 Project Readme

#Ramble Ramble is a easy-to-use blogging gem that allows ruby developers to simply incorporate blog posts into their applications/websites.

Set Up

You can add it to your Gemfile:

gem 'ramble'

then:

bundle install

(or you can install it yourself)

gem install ramble

then, create the posts directory

mkdir app/blog_posts

and add .md files to the directory!

The file must follow this format

20160706_name_of_blog_post.md

You can then access your posts by calling

Ramble::BlogPost.all

or

Ramble::BlogPost.find_by_slug('name-of-blog-post')

Order

for your index page, you can order the post by date like so:

Ramble::BlogPost.all(sort_by: :written_on, desc: true)

Maintaining

Ramble is currently being developed, and working on some essential features.

TODO: -Category tagging for different posts -Custom Meta Data attributes for posts

Contributing

Pull requests are welcome! Be sure to test.

##License The gem is available as open source under the terms of the MIT License.