Posted by
stoyan on 31-Jul-2007
I installed JuneBug wiki on bbox . There was some bugs in the installation documentation so will put small notes here. The installation process is for Ubuntu Dapper box on BrightBox beta hosting. Adjust for your own situation:
# Ubuntu/Debian specific
apt-get install sqlite3 libsqlite3-dev
# the original document missing http://
# in front of the url
# ERROR: uri is not an HTTP URI
gem install sqlite3-ruby --source http://code.whytheluckystiff.net
gem install junebug-wiki -y
Question: Is it still needed to install custom sqlite3 version or the stock one from the gems repository will do the job?
Posted by
stoyan on 26-Jan-2007
Small is smart
Another bright idea: Basic Authentication for Camping . No need from difficult admin controllers/methods. Good.
Posted by
stoyan on 24-Jan-2007
minimal = KISS = i like it
- Camping is a web framework which consistently stays at less than 4kb of code.
- Mosquito is a simple test framework for why the lucky stiff’s Camping web library. It provides simple hooks and a few assertions for doing unit and functional tests on your Camping models and controllers.
- MicroTest . see also Archive for the ’Ruby’ Category
- Comatose – Comatose is a micro CMS, implemented as a Rails plugin, that is designed to be easy to embed and extend.
Posted by
stoyan on 15-Nov-2006
Junebug is a simple, clean, minimalist wiki intended for personal use. Built on Camping web microframework. Sqlite3 database backend. Features:
- Simple installation (via gems)
- Standalone operation. No need to run a webserver.
- SQL database backend for reliability.
Junebug Wiki creates a folder with your complete wiki contents in it—the database, the images, even the script to start and stop it. A lib directory as well, for plugins and, possibly, working versions of all the dependencies.
Posted by
stoyan on 07-May-2006
Via RedHanded :
Park Place , a clone of Amazon’s S3 (Simple Storage Service.) It’s written entirely in Ruby, with heaps of help from the Camping 4k web framework. Oh, and no SOAP support to speak of.
gem install camping --source code.whytheluckystiff.net
gem install mongrel activerecord
svn co http://code.whytheluckystiff.net/svn/parkplace/trunk parkplace
cd parkplace/lib
ruby parkplace.rb
Great. Your own private S3. Now you can try all S3-based solutions for free.
Posted by
stoyan on 23-Jan-2006
Camping is a web framework which consistently stays at less than 4kb of code…The idea here is to store a complete fledgling web application in a single file like many small CGIs. But to organize it as a Model-View-Controller application like Rails does. You can then easily move it to Rails once you’ve got it going.
Small is Good. Some pointers: