Skip to content

A modular mixin for building best of breed (Ruby) HTML5/CSS3 web apps

Notifications You must be signed in to change notification settings

capitalthought/rubble

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rails on Rubble

Rubble is a modular mixin for building best of breed (Ruby) web apps. It contains guidelines and best practices for developing HTML5/CSS3 websites.

Installation

Rubble is designed to work with Rails 3 only.

Add rubble to your gemfile with:

gem 'rubble', :git => 'git://github.com/capitalthought/rubble.git'

Run bundle install

Run the generators to pull in the rubble sass, views, or both.

rails g rubble:sass

OR

rails g rubble:views

OR

rails g rubble:all

Include the layout in your ApplicationController:

class ApplicationController < ActionController::Base
  include Rubble::Layout
  protect_from_forgery
end

Include the helpers in your ApplicationHelper module

module ApplicationHelper
  include Rubble::Helpers
end

TODO

Reference & Attribution

Rubble combines various ingredients and best practices and interpretations gleaned from:

HTML

CSS

JS

About

A modular mixin for building best of breed (Ruby) HTML5/CSS3 web apps

Resources

Stars

Watchers

Forks

Packages

No packages published