README.md in purecss-0.0.1alpha3 vs README.md in purecss-0.0.2
- old
+ new
@@ -6,18 +6,14 @@
I cite directly from [purecss.io](http://purecss.io)
> CSS with a minimal footprint.
>
> Pure is ridiculously tiny. The entire set of modules clocks in at 5.7KB minified and gzipped, without forgoing responsive styles, design, or ease of use. Crafted with mobile devices in mind, it was important to us to keep our file sizes small, and every line of CSS was carefully considered. If you decide to only use a subset of these modules, you'll save even more bytes.
-For the moment it is possible to use only the responsive library, but I will change this as soon as I learn how to properly make gems.
-
-In this alpha release (0.0.1alpha) I added FontAwesome. But given that purecss is compatible with the Bootstrap toolkit and rails-bootstrap provides FontAwesome, I plan to remove it in a subsequent update.
-
## TODO
I liked the idea of the light and functional Pure CSS and I think it is worthwile to create a gem for it.
-My inspiration for the gem comes from the great [twitter-bootstrap-rails](https://github.com/seyhunak/twitter-bootstrap-rails)
+I'd like to make something like [twitter-bootstrap-rails](https://github.com/seyhunak/twitter-bootstrap-rails) (and compatible with it)
I'd like to add
- Helpers for navigation bars, menus, forms, grids, ...
- Toolkit to set up website palette in an easy way
- Integration wit Rails SCSS
@@ -32,16 +28,31 @@
And then execute:
$ bundle
-Or install it yourself as:
- $ gem install purecss
+Then you can add the following directives to your css manifest file (application.css):
-Then run the generator
+ //= require purecss
- $ rails generate purecss:install static
+for the responsive bundle, or
+
+ //= require purecss-nr
+
+for the non-responsive one.
+
+
+If you want to include just an individual module (see [purecss.io](http://purecss.io)) add instead
+
+ //= require purecss/<module>.js
+
+
+
+If it is too long for you, you can avoid touching the manifest files and run the generator (with optional parameter responsive/nonresponsive):
+
+ $ rails generate purecss:install
+
## Usage
After the installation you can simply go to [purecss.io](http://purecss.io) and use (or extend) their predefined styles.