Project

gumdrop

0.01
No commit activity in last 3 years
No release in over 3 years
The sweet 'n simple cms and prototyping tool for creating static html websites and webapps.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

= 3.2.0
= 1.3.6

Runtime

active_support
= 3.0.0
= 0.6.0
= 0.4.0
= 0.2.0
= 1.3.2
= 0.15.4
= 1.3.3
 Project Readme

Gumdrop

Gumdrop; The sweet cms/prototyping tool.

It generates static html and includes a dev server that can be run via any rack server (including POW!).

Install

$ gem install gumdrop

Quick Start

$ gumdrop new SITE_NAME

(You can run gumdrop help to see a list of commands and their supported flags.)

Gumdrop will spit out a default Gumdrop project site for you, which you can then build by running:

$ cd SITE_NAME
$ gumdrop build

Bam! A static version of the site is now available in a newly created ./output folder.

Don't want the output there? Maybe you want it to put it in ./public instead? No problem. Open up the Gumdrop project file:

$ $EDITOR Gumdrop

At the top of the file you'll find a Gumdrop.configure block. Add this to the top of that block:

Gumdrop.configure do |config|

  config.output_dir= "./public"

  # ... Other stuff

end

Now, when you run gumdrop build again, it'll generate all the output into the ./public folder (creating it, if it doesn't exist).

Lots More

That's enough to get you started! Poke around the code it generated to see how it works. You can also start with a blank slate by running:

$ gumdrop new -t blank MY_BLANK_SITE

Gumdrop can do quite a lot and is very configurable. Be sure and read the wiki for documentation and more examples!

https://github.com/darthapo/gumdrop/wiki

By The Power of...

Greyskull? Well, not so much. But Gumdrop core is powered by these excellent open source projects (in alphabetical order):

  • ActiveSupport
  • Bundle
  • Launchy
  • Onfire
  • Sinatra
  • Tilt
  • Thor

And will, optionally, leverage these in building your site:

  • coffee-script
  • erb
  • haml/sass
  • jsmin
  • slim
  • sqlite3
  • sprockets
  • stitch
  • and many, many more! (todo: gotta document 'em all!)