Ruby on Rails Blog - ruby-on-rails

Does anybody know a basic plugin/gem that will allow me to quickly set up a blog in Rails.
I would like it to have a WYSIWYG editor that allows image upload and basic editing.
All the Google results I checked out were tutorials to creating a blog in Rails.
I'm not looking to roll out my own solution, I'm looking for something that was already made, like Wordpress, but for Rails.
Thanks!

Try using Mephisto
PS: Search for "rails blog engine" in Google and you will find many other hits.

Mephisto and typo used to be the mainstream, but there are many new kids on the block these days.

Related

Buying domain using API

I've been googling for more than 2 weeks to find any Rails code working with OpenSRS API, but I couldn't find any good solution at all.
Could anyone give me some example or references of using OpenSRS API with Rails 3?
After some quick browsing on the OpenSRS site, I found this gem. start here, definitely:
https://github.com/voxxit/opensrs
If you want to write it all yourself, the ruby toolkit is on this page: http://www.opensrs.com/site/resources/documentation/api#api
But really, the opensrs gem looks like it's all you'll need.

Embed Blog in Ruby on Rails

I have a Ruby on Rails application and want to include a blog inside the application.
I was wondering what's the best way to do that. I don't want to have a link to an external blog. I want the blog integrated in my application. Also i don't have the time to programm the blog functionality. I want to use existing solutions.
What's the best way to accomplish that? Any recommendations? What are the best solutions?
The best way to include one application within another is by using engines. This might help you Ruby on Rails 3.1 Blog Engines
Perhaps Typo would address your needs installed as a Rails Engine.
Since nobody has done it so far I need to mention here that the spirit of Rails is to make everything friendly enough so that you can code your own.
It's a bit more work but then your blog module fits right in with the rest of the app.

How to structure Ruby on Rails website

I'm curious to learn Ruby and Ruby on Rails. I have previous experience with PHP and some basic C/Objective C and Java.
I have done a couple of 'Get started with Rails' tutorials and want to try do create a complete site now. I do have some questions.
Is the entire website an app? I mean, sure, the simple 'blog-with-comments' examples fit in a single app. But what if you want more? Say, a forum, a blog, community, shop, task manager and so on (only random examples here... :) ).
Should I split these things into different 'apps' or not? I would still need them to communicate with each other and share user data and so on...
Any ideas?
Regards
Linus
In general, your core competency as a rails app -- that which you provide the most value for your users. You can then supplement from there, so your support section might be GetSatisfaction and live on support.yourdomain.com.
Your online shop could be a link to your shopify page at shop.yourdomain.com, etc.

Simple Rails Blog Application with newsletter functionality

I'm looking for a simple rails blog webapp with newsletter functionality.
As the title says, I'm looking for something simple that can be extensible via plugins later.
Please avoid the answers like "roll your own, it's easy". We really don't have time to do it right now.
Thanks!
you can try it
http://rubygems.org/gems/mynewsletterbuilder
A simple xml restful newsletter application

Any Rails projects that allow community blogging?

I've been looking on Github for a Rails project that allows anyone to sign in and add a blog entry.
Has anyone seen something like this?
TYPO is a blogging platform that uses Ruby on Rails:
https://github.com/fdv/typo/wiki looks to have the capability for multiple authors.
The article here gives a good overview of several other RoR blogging platforms that are out there.
IMHO this is quite easy to make. Especially if you use the twitter-auth gem. Just sign-in with your twitter account, write a post and be done with it.

Resources