jw-00000 / sinatra-blog
- Source
- Commits
- Network (0)
- Issues (0)
- Wiki (1)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Fri May 02 04:50:04 -0700 2008 | |
| |
.gitmodules | Tue May 13 12:38:32 -0700 2008 | |
| |
README | Mon Nov 10 10:48:01 -0800 2008 | |
| |
TODO | Thu Nov 06 05:13:20 -0800 2008 | |
| |
app/ | Thu Sep 04 13:19:16 -0700 2008 | |
| |
config.yml | Tue Mar 11 12:56:21 -0700 2008 | |
| |
create_db.rb | Sat May 17 09:54:11 -0700 2008 | |
| |
init.rb | Fri May 30 12:25:06 -0700 2008 | |
| |
vendor/ | Mon May 19 10:57:57 -0700 2008 |
README
"I did it my way." - Sinatra, and many others. = sss(e) Simple, Stylish, Sinatra (Experimental) This is a blog powered by Sinatra, not the singer, but the web framework (http://sinatrarb.com). It is small – very small – based on the REST principles (yay for RESTfulness!), easy, and – most importantly – fun! OK, maybe it's not fun. Maybe it will be. Or maybe not. We'll see. Maybe. sss(e) is also an experiment. Consequence: it doesn't work. Well, to be completely honest, it may actually work. But it may also refuse to even _start_ working for you. It's not your slave, you can't command it to do anything. Free will and all that. So, it's not for the easily frustrated. Try it out on a free Sunday afternoon – at least, if that's the kind of thing you're into on a Sunday afternoon. == How does it work? I currently don't have much time to make detailed descriptions of blogging engines I haven't even written yet, but this may interest you: * sss(e) uses Sinatra (http://sinatrarb.com). * It uses Sequel to connect to a database (http://code.google.com/p/ruby-sequel/). * At this moment, you *have* to use SQLite, your database will be in the file blog.db. You can create the database running "ruby create_db.rb" in the command line. * There's some preliminary configuration in config.yml. * We also use JSON a lot, most REST actions can respond in both HTML and JSON. == Installing SQLite is needed, along with libsqlite. On Ubuntu try running $ sudo apt-get install libsqlite3-ruby Sinatra and Sequel are packaged with sss(e). When using the Git version, however you need to load them first, as Git submodules, using the following command: $ git submodule init && git submodule update You may also need to install the metaid, json, mongrel and haml gems, run: $ gem install metaid json sqlite mongrel haml Afterwards, run $ ruby init.rb to start sss(e). Any errors will be reported. If you have trouble installing, and then find out how to fix your problems, consider changing this README to reflect the changes. Thank you! == Other cool things * Camping (http://code.whytheluckystiff.net/camping/) A small web framework by _why, that makes it easy to create little apps, like a blog. * Reststop (http://reststop.rubyforge.org/) A library on top of Camping, that makes it easy to write RESTful applications in Camping. For a blog implemented in Reststop, see http://reststop.rubyforge.org/svn/trunk/examples/blog.rb. * Wink (http://github.com/rtomayko/wink/tree/master) A minimalist blogging engine written in Ruby using Rack, Sinatra, and DataMapper, by Ryan Tomayko. (Currently marked as unmaintained.) * Sinatra Starter Kit (http://github.com/mikker/sinatra_starter_kit/tree/master) A starting point for Sinatra apps. Might have to steal some ideas there. * Scanty (http://github.com/adamwiggins/scanty/tree/master) A small blogging engine written in Ruby using Sinatra and Sequel.
