Project

tiltd

0.0
No commit activity in last 3 years
No release in over 3 years
Serve static files with rack and tilt
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.3
>= 0
>= 0

Runtime

>= 0
>= 0
 Project Readme

Tiltd

A daemon for Tilt

Tilt supports many common template languages such as haml, coffee script and sass.

This gem makes it easy to use these template languages without a lot of setup.

For example if you want to test haml, just create a index.haml and run tiltd in the same directory.

For demos, check out the examples folder

Installation

$ gem install tiltd

Example Usage

$ cd some-dir
$ echo '%h1 hello world' > index.haml
$ echo -e 'body\n\tcolor: blue' > style.css.sass
$ tiltd -p 9000

index.haml can be found at http://localhost:9000/
style.css.sass is at http://localhost:9000/style.css

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request