Story
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