• Stars
    star
    479
  • Rank 91,752 (Top 2 %)
  • Language
    Ruby
  • License
    MIT License
  • Created almost 13 years ago
  • Updated about 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Monologue is a basic blogging engine. It is a Rails mountable engine you can mount in your already existing Rails app, or a in a new one! Enjoy.

Monologue

Gem Version Build Status Code Climate Coverage Status

THIS README IS FOR THE MASTER BRANCH AND REFLECTS THE WORK CURRENTLY EXISTING ON THE MASTER BRANCH. IF YOU ARE WISHING TO USE A NON-MASTER BRANCH OF MONOLOGUE, PLEASE CONSULT THAT BRANCH'S README AND NOT THIS ONE.

NOT MAINTAINED ANYMORE: This project hasn't been maintained for a while. It's pretty basic and should still work. Chances are issues and PRs might not receive the attention they deserve, at least, not quickly, if at all.

Monologue is a basic, mountable blogging engine in Rails built to be easily mounted in an already existing Rails app, but it can also be used alone.

Version

This README is for the latest version of Monologue (0-5-stable being the latest stable version).

Upgrade and changes

To learn how to upgrade, see UPGRADE.md file. If you want to learn what changed since the last versions, see CHANGELOG.md.

Questions? Problems? Documentation?

Some features

missing features

Installation

1. Add the gem to your Gemfile.

gem 'monologue'

And run bundle install to fetch the gem and update your 'Gemfile.lock'.

2. Route to Monologue

Add this to your route file (config/routes.rb)

# This line mounts Monologue's routes at the root of your application.
# This means, any requests to URLs such as /my-post, will go to Monologue::PostsController.
# If you would like to change where this engine is mounted, simply change the :at option to something different.
#
# We ask that you don't use the :as option here, as Monologue relies on it being the default of "monologue"
mount Monologue::Engine, at: '/' # or whatever path, be it "/blog" or "/monologue"

For example, if you decide to mount it at /blog, the admin section will be available at /blog/monologue. Here we decide to use monologue as default route mounting it at /, it means that the admin section will directly be available at /monologue.

3. Migrate Monologue's database tables

Run these commands:

  1. $bin/rake monologue:install:migrations
  2. $bin/rake db:create (only if this is a new project)
  3. $bin/rake db:migrate

4. Create a user

Open your development console with bin/rails c, then:

Monologue::User.create(name: "monologue", email:"[email protected]", password:"my-password", password_confirmation: "my-password")

5. Configure Monologue.

This is all done in an initializer file, typically config/initializers/monologue.rb. More on this in the Wiki - Configuration.

6. Ready

Start your server and go to http://localhost:3000/monologue to log in the admin section.

Note to users

Monologue is using its own tables. If you want to use your own tables with monologue (for example the User table) this might help you to monkey patch.

Customization

See the Wiki - Customizations.

Copy views

copy views like devise rails g monologue:views or use scope: rails g monologue:views blog

Requirements

  • Rails 4.2.1 +
  • Database: MySQL & Postgres are supported but other databases might work too.

Authors

Contributing

In the spirit of free software, everyone is encouraged to help improve this project.

Here are some ways you can contribute:

  • by using prerelease versions
  • by reporting bugs
  • by suggesting new features
  • by writing or editing documentation
  • by writing specifications
  • by writing code (no patch is too small: fix typos, add comments, clean up inconsistent whitespace)
  • by refactoring code
  • by resolving issues
  • by reviewing patches

Starting point:

  • Fork the repo
  • Clone your repo
  • Run bundle install
  • Run bundle exec rake db:migrate
  • Run bundle exec rake db:setup
  • Make your changes
  • Ensure specs pass by running bundle exec rspec spec
  • Submit your pull request

You will need to install this before running the test suite:

Thanks to

Zurb for the "social foundicons".

More Repositories

1

forwardlytics

[DEPRECATED & UNMAINTAINED] Take events and customer data in and send them to various providers, mostly analytics providers.
Go
58
star
2

spree_multi_lingual

Spree multi-lingual is a plugin to make multi locale store with Spree possible
Ruby
49
star
3

tumblr-to-hugo

Shitty but working Ruby tool to move your posts from Tumblr to Hugo
Ruby
12
star
4

spree_refinery_auth

Monkey patch to make both Spree and Refinery auth working together. Code quality is bad. Make it better in your own app. You will not need this anymore as soon as this is merged and in your current version: https://github.com/spree/spree/pull/1512:
Ruby
12
star
5

vocal

Blog + Markdown = ❤️
Ruby
11
star
6

go-scraper-go

Playground for web scraping with Go. Ideally, this will be able to scrape different sources for same kind of data easily
Go
6
star
7

refinerycms-imajax

Replacing default bulk image uploading with an Ajaxy, one by one, upload method to prevent timeouts
Ruby
5
star
8

dashing-mounted-rails-app

Dummy Rails app with Dashing mounted - Should be used with https://github.com/jipiboily/dashing/tree/rails-mountable
Ruby
5
star
9

monologue-markdown

A small and simple efficient extension to Monologue that replace the default WYSIWYG editor with a Markdown editor.
Ruby
4
star
10

monologue-dashboard

I have a dream…of a nice dashboard for Monologue. Providing useful and fun analytics facts, and more. See the README.
4
star
11

kemal-bugsnag

Kemal middleware that traps all exceptions, send them to Bugsnag and re-raise them
Crystal
3
star
12

atom-safe-quit

atom-safe-quit: helps you safely quit atom since 2014!
CoffeeScript
2
star
13

forwardlytics-ruby

Ruby gem to send stuff to Forwardlytics (https://github.com/jipiboily/forwardlytics)
Ruby
2
star
14

twandom

Twandom: Open random following's profile in your browser
Ruby
2
star
15

jipiboily.github.com

1
star
16

vocal-theme-default

This is Opinionated's default theme
CSS
1
star
17

tragicace

Pour un trajet efficace et sans tracas à Québec...
JavaScript
1
star
18

spree-multi-lingual

HTML prototype of a multi-lingual tab in Spree's product admin page
1
star
19

spreefinery

Proof of concept. Installing Spree then Refinery. Opposite order than parndt's own spreefinery
Ruby
1
star
20

skeleti

[ABANDONWARE] skeleti is a Titanium Mobile skeleton and VCE generator (this works, but code is crappy, was a real quick test)
Ruby
1
star
21

commandear

Commandear: listening to your commands since 2014
Ruby
1
star
22

io.jipiboily.com

Redirection vers saglac.io
CSS
1
star
23

alfred-on-rails

This is a basic experimentation of working with BatmanJS and Rails together. This is the same Alfred demo app for BatmanJS but with RailsStorage instead of LocalStorage
Ruby
1
star
24

docker-postgresql-9.3-for-ci

This is a rocket science based PostgreSQL container. Not really.
Shell
1
star
25

naive

Naive is a very naive and simple PaaS. This is the playground for my potential PaaS from scratch blog post or serie.
Go
1
star
26

mate_scripts

This is a collection of small script(s) that makes my life easier and happier in my daily work with Textmate.
Ruby
1
star