Project

resin

0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
A tool for building Amber applications with Ruby
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 1.0.0
>= 0
>= 0

Runtime

>= 0
>= 0
>= 0
 Project Readme

Resin: a simple environment for Amber development

Build Status

About

Resin is a simple Sinatra application which allows for a rapid-bootstrap of an Amber project.

The gem bundles a version of Amber and provides the necessary routes to transparently serve up Amber assets or user-defined assets in their current project directory

Getting Started

Read further, or you could just watch this fanciful screencast

First you'll need to install the Gem and make your project directory:

% mkdir my-project
% cd my-project
% gem install resin

Once the gem is installed, make some directories to store your own custom Amber code:

% mkdir st js

These directories will allow you to commit your code from the Amber IDE, so once they're created, just run Resin and navigate to localhost:4567

% runresin

Custom Views

Adding custom views is pretty easy, just create the views directory and start adding HAML files into it. If for example if you wanted to create a URL localhost:4567/user then you would create views/user.haml and fill in your template accordingly.

To embed the Amber JavaScripts in your custom views, you can just call the embed_amber function:

%html
    %head
        %title
            My Custom View
        = embed_amber
    %body
        Hello World