Project

story

0.0
No commit activity in last 3 years
No release in over 3 years
Ruby blog engine
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
~> 0.12
>= 0
~> 3.2
~> 1.0
~> 2.3
 Project Readme

Story

Gem Version Code Climate Dependency Status Coverage Status
Gem for creating awesome personal blog.

Installing
Setting up
Using (in progress)
API (in progress)

Installation

Story is a RubyGem, so simply install it with gem install story.
Or add it to your Gemfile gem "story" and use $ bundle install in terminal pwd.

Setting Up

Story can work “out of the box”. You don't need any complex customizations or settings.
First of all you should require all necessary gems in your Gemfile:

gem 'sinatra'
gem 'story'
gem 'slim'
gem 'compass'
gem 'sass'

The simpliest way to start working with your blog with default settings is:

# app.rb
require 'story'
Story::Base.run!

And in your terminal:

$ ruby app.rb