Project

trekky

0.0
No commit activity in last 3 years
No release in over 3 years
Simple, very simple, sass and haml compiler.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

~> 1.0
~> 4.0
~> 3.3
 Project Readme

Deprecated

Use https://middlemanapp.com/ Makes no sense to maintain it.

trekky

Simple, very simple, sass and haml compiler for dear designer friend.

Features

Say you have a file structure like this:

source
├── images
│   └── image.jpg
├── index.html.haml
├── javascripts
│   └── app.js
├── layouts
│   └── default.haml
└── stylesheets
    └── hola.css.sass

And you run:

trekky -s source -t public

You'll end up having this:

public
├── images
│   └── image.jpg
├── index.html
├── javascripts
│   └── app.js
└── stylesheets
    └── hola.css

HELP

trekky  -h
usage: trekky [-h] [-s source] [-t target]

Deamon mode

Monitors source dir for changes, and copy/process on demand to target dir.

trekky -d