No commit activity in last 3 years
No release in over 3 years
This is Yahoo's Pure CSS framework, but with sass placeholders instead of basic css. It's great and you can use it with Rails 3.1+ in the asset pipeline.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 3.2.0
 Project Readme

Pure-Place for the Rails Asset Pipeline

Wrapped up the wonderful (Pure-Place)[https://github.com/jjt/pure-place] work and made a gem for the asset pipeline.

Installation for Rails 3.1+

In your Gemfile:

gem 'pure-place-rails', github: 'matthewlehner/pure-place-rails'

And then run:

$ bundle install

Restart your server. Then rename application.css to application.css.scss:

mv app/assets/stylesheeets/application.css app/assets/stylesheets/application.css.scss

Delete the sprocket directive in application.css.scss: Why?

*= require_tree .

Import Pure-Place at the beginning of application.css.scss. All additional stylesheets must be imported below Pure-Place:

@import "pure-place";
@import "home";
@import "users";