A Ruby based blog framework.
Blast (BLog fAST) is a blogging framework that gives you the speed of a static site generator while still allowing dynamic content like comments and searches.
Blast "compiles" your articles and pages to static HTML for unparalleled speed while also giving you the flexibility and power of a dynamic site by providing a server-side back-end that only gets called when it's needed.
Blast provides the same speed advantages as a static site generator like nanoc or Jekyll while bridging the gap between feature bereft blog engines like Toto and a resource intensive CMS like Wordpress. It's not so simple you'll instantly be wanting more and it's not so complex it brings your webserver to a crawl.
Blast is for programmers that want a fast, expandable, secure, and most of all simple framework for blogging. You can be up and running in as little as X minutes.
Yes, check out these screencasts showing how...
On your own server
[video tutorial]
On Heroku
[video tutorial]
Probably. You can use it right out of the box with the provided template and just write plain text articles but to get the most out of it you'll want to have a basic understanding of HTML, HAML or Erb, Ruby, and a little knowledge of Git wouldn't hurt either. (It's really meant for programmers)
Blast is written in Ruby 1.9.2 and uses the Rack framework for the dynamic back-end.
If Ruby and Rack work on your OS then Blast should too. I personally develop on a MacBook Pro running OS X 10.6 and my server is an Ubuntu 10.10 virtual server on top of a Mac Mini also running OS X 10.6.
Again, if your webserver supports Ruby and Rack it should work on that server but it was designed with Nginx and Unicorn in mind; using Nginx as a reverse proxy and Unicorn as the webserver. This configuration allows you to add new Unicorn proxies for scalable horizontal load balancing.
Yes, it works on Heroku but you'll need to be aware if you're running on the free account with only 5MB of database storage you'll want to compile comments into your blog every now and then (simply republishing your site will do this for you). You'll also want to restrict searches to keywords and categories; when you do this your articles are not stored in the database so you have a much smaller database footprint but you also can't do full text searches.
MySQL, PostgreSQL, and SQLite right now. Blast uses SQLite on your local machine so you don't have to muck about with a database server just to write a text file then when you publish any data, like pre-indexed searches, are uploaded to your server's database. It's the best of both worlds.
Yes, there are, but this one is mine. I'm doing this as a programming exercise but I also think it can be really useful since it provides a solution that doesn't currently exist; a hybrid of a static site generator with a dynamic back-end giving you the best of both worlds.
Not currently but I am envisioning one. I'd like to learn some GUI design using Ruby so maybe after I'm done with this.
- Markup-Extra for articles
- HAML for template design
- SASS for CSS design
- Minifies css, javascript
- GZips css, javascript (leaves plain-text intact as well for non-gzip browsers)
- Proper cache management - when files are changed they get downloaded if not they are still cached
External links are, by default, opened in a new tab