Project

brancusi

0.0
No commit activity in last 3 years
No release in over 3 years
An opinionated CoffeeScript framework for developing single page applications.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

Brancusi Build Status

An opinionated CoffeeScript framework for developing single page applications.

Installation

Add these to your application's Gemfile:

gem 'brancusi'
gem 'brancusi-rails'

And then execute:

$ bundle

Or install it yourself as:

$ gem install brancusi
$ gem install brancusi-rails

Usage

Initialize your repository with the necessary application and configuration files:

rails g brancusi:init

Create a controller (with corresponding template):

rails g brancusi:controller home index

Add the necessary routing to app/assets/javascripts/app/config/routes.js.coffee:

@route '/', 'home#index'

Now start your Rails server!

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