public
Description: Frog is a full-featured blog application written using the sinatra web framework
Homepage: http://frog.moocode.com/
Clone URL: git://github.com/moomerman/frog.git
frog /
name age message
file .gitignore Thu Sep 18 17:11:18 -0700 2008 Initial blog stucture and simple models [moomerman]
file README.textile Fri Oct 24 09:36:23 -0700 2008 updated the readme [moomerman]
file Rakefile Sat Sep 27 05:27:35 -0700 2008 fixed the date layout [moomerman]
file frog.rb Sat Sep 27 07:17:59 -0700 2008 Wired up update and destroy actions on admin [moomerman]
directory lib/ Mon Nov 10 07:04:35 -0800 2008 bug fix for frog init - thanks ferry [moomerman]
directory public/ Sat Sep 27 10:58:43 -0700 2008 tidied up the login page [moomerman]
directory views/ Sat Sep 27 10:58:43 -0700 2008 tidied up the login page [moomerman]
README.textile

Frog

Frog is a full-featured blog application written using the sinatra web framework.
By default frog uses sqlite3 as the data store, but you can use anything that ActiveRecord supports, configure this in lib/models.rb.

Dependencies

  • gem install sinatra activerecord RedCloth syntaxi
  • gem install sqlite3-ruby # if you’re using sqlite3

Installing and Running

  • git clone git://github.com/moomerman/frog.git
  • cd frog
  • rake frog:init
  • ./frog.rb
  • go to http://localhost:4567/

To create a new blog entry you need to go to /admin and login with admin:admin.