Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

grippy-doozer

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grippy-doozer

  • 0.1.5
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

= What is Doozer?

  • A lightweight, ORM agnostic, Rack (http://rack.rubyforge.org) compatible MVC framework.

== Project Inspiration

  • Doozer was initially a project I started working on for Google App Engine. It was eventually abandoned since GAE lacked (at the time and may still) proper support for migrations. I ported some of the code to Ruby mainly to learn the internals of Rack back in December 2008.
  • Rails conventions and methodologies (mostly the application structure, configuration, nomenclature, scripts, and a few viewhelper methods).
  • Clustering ala Mongrel::Cluster

== Requirements

  • Ruby < 1.9 (untestested on Ruby 1.9 as of now)
  • Rack (http://rack.rubyforge.org) gem (0.9.1 or 1.0.0)
  • Any http server supported by Rack
  • ActiveRecord, DataMapper or Sequel (only if you need DB support)

== Getting Started

  1. Install the gem(s):
    • gem sources -a http://gems.github.com (if you haven't already)
    • sudo gem install rack
    • sudo gem install grippy-doozer
  2. Run 'doozer test-app' to generate the base application skeleton.
  3. Fire up the application in development mode
    • cd test-app
    • script/cluster -C start
  4. Navigate to http://localhost:9292

== Configuration

  • Doozer is configurable to use an ORM library of your choosing: ActiveRecord, DataMapper, or Sequel.
  • By default, routes are handled by Doozer controllers or you can define other Rack compatible applications which handle specific request paths.
  • Http server of your liking (Mongrel, Thin, Lighttpd, or anything supported by Rack).
  • Multiple appservers.
  • Static directories.

== Useful Scripts

  • Generate an application skeleton. Run 'doozer test-app' (see Getting Started).
  • Generate views, controllers, and models (depending on the configured ORM). Run 'doozer generate -h' for more info.
  • start/stop/restart your web server(s). Run 'script/cluster -h' for more info.
  • Migrations up or down. 'script/migrate -h'.
  • Tasks. Run 'script/task -h' for more info
  • There is a rudimentary test command which allows you to run your own test suite for your application. Run 'script/test -h' for more info.

== Current limitations:

  • Doozer has no test suite. Tsk-tsk I know. In the works.
  • Right now, it doesn't keep track of migration versions.
  • Magic routes are turned off. Still debating adding them back.
  • Not all the documentation is in place.

== Note on Patches/Pull Requests

  • Fork the project.
  • Make your feature addition or bug fix.
  • Add tests for it. This is important so I don't break it in a future version unintentionally.
  • Commit, do not mess with rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
  • Send me a pull request. Bonus points for topic branches.

== Copyright Copyright (c) 2009 Greg Melton. See LICENSE for details.

FAQs

Package last updated on 11 Aug 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc