0.02
No commit activity in last 3 years
No release in over 3 years
fuelux-rails project integrates Fuel UX Bootstrap extensions for Rails 3.1 Asset Pipeline
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

 Project Readme

Fuel UX for Rails 3.1/Rails 4.0 Asset Pipeline

Extends Twitter Bootstrap with additional lightweight JavaScript controls. Easy to install, customize, update, and optimize.

fuelux-rails project integrates Fuel UX into the Twitter Bootstrap CSS toolkit for Rails 3.1/Rails 4.0 Asset Pipeline (Rails 3.2 supported)

Installing Gem

Include the FuelUX Rails gem in Gemfile to install it from RubyGems.org;

gem "fuelux-rails"

or you can install from latest build;

gem 'fuelux-rails', :git => 'git://github.com/stephenbaldwin/fuelux-rails.git'

You can run bundle from command line

bundle install

Installing to App (using Generators)

You can run following generators to get started with Twitter Bootstrap quickly.

Install (requires directives to Asset pipeline.)

Usage:

rails g fuelux:install

Using with Less

Fuel UX was built with Preboot, an open-source pack of mixins and variables to be used in conjunction with Less, a CSS preprocessor for faster and easier web development.

Using stylesheets with Less

You have to require Fuel UX Rails LESS (fuelux.less) in your bootstrap_and_overrides.css.less

@import 'fuelux.less';

Using Javascripts

You have to require Fuel UX (fuelux.js) in your application.js

//= require fuelux.js

$(document).ready(function(){
  /* Your javascripts goes here... */
});

Updating to a Specific Version of FuelUX

$ rake fuelux_rails:update TAG=2.4.1