Project

kube-rails

0.01
No commit activity in last 3 years
No release in over 3 years
kube-rails project integrates Kube for Rails 4 Asset Pipeline
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 4.0

Runtime

~> 2.7.0
~> 4.0
~> 0.12.0
 Project Readme

Kube for Rails 4 Asset Pipeline

Kube is a minimal CSS-framework for developers. This projects integrates it for Rails 4 Asset Pipeline.

Code Climate Build Status Gem Version Dependency Status

Installing Gem

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

gem "kube-rails"

Then run bundle install from the command line.

Using Generators

Install

Installs Kube to Asset Pipeline.

Usage:

rails g kube:install

Themed

Generate Kube compatible scaffold views. Support for Haml and Slim is available.

Usage:

rails g kube:themed [RESOURCE]

Example:

rails g scaffold Post title:string description:text
rake db:migrate
rails g kube:themed Posts