Sha256: 827bb3c395666d0bda80de8832eabde5aa00b00abd5763ed2009301bc93bd27d

Contents?: true

Size: 1.55 KB

Versions: 17

Compression:

Stored size: 1.55 KB

Contents

Machined
========

### Why another [static](https://github.com/mojombo/jekyll) [site](https://github.com/cloudhead/toto) [generator](https://github.com/petebrowne/massimo)?

Machined is for the developers who know and love [the asset pipeline](http://edgeguides.rubyonrails.org/asset_pipeline.html) of Rails 3.1 and want to develop blazingly fast static websites. It's built from the ground up using [Sprockets 2.0](https://github.com/search?q=sprockets).

Installation
------------

``` bash
$ gem install machined
```

Quick Start
-----------
    
``` bash
$ machined new blog
```

This creates a directory with the default Machined project structure. More on that later. Let's start up the Machined server:

``` bash
$ cd blog
$ bundle install
$ bundle exec machined server
```

Now that the server is running, edit your pages, assets, etc. and view the results. Most static site servers need to recompile the _entire_ site each time a request is made. Machined (well really Sprockets) is smart enough to compile only what you request, so developing is super fast.

Deploying a Static Website
--------------------------

Once you've created your site, it's time to go live. On your production box, you just need to compile the site and let Apache, Nginx, or whatever handle the serving. It'll be fast - damn fast.

``` bash
$ bundle exec machined compile --environment production
```

Diving In
---------

Read the [full documentation](https://github.com/petebrowne/machined/wiki).

Copyright
---------

Copyright (c) 2011 [Peter Browne](http://petebrowne.com). See LICENSE for details.

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
machined-1.1.0 README.md
machined-1.0.3 README.md
machined-1.0.2 README.md
machined-1.0.1 README.md
machined-1.0.0 README.md
machined-0.9.3 README.md
machined-0.9.2 README.md
machined-0.9.1 README.md
machined-0.9.0 README.md
machined-0.8.0 README.md
machined-0.7.1 README.md
machined-0.7.0 README.md
machined-0.6.0 README.md
machined-0.5.0 README.md
machined-0.4.0 README.md
machined-0.3.1 README.md
machined-0.3.0 README.md