purecss-rails 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 09db81197ba19fb4fbe8d8783a84e8e84e91738f
4
- data.tar.gz: e6ba1defd7a1f8b97c78856829b84da5ba71eccb
3
+ metadata.gz: 4564291ee89cfb6c265241746d4d93e992afb4f4
4
+ data.tar.gz: bdd6fb32e4d9209f58444ecf01c3c00a6e60e089
5
5
  SHA512:
6
- metadata.gz: 51aab1bc0b3ae9cb74765aefa316ce5ce30de5d5880b23c6db8ccb233ce515fcb5c016e76200523f207be77bd72526c624c1e34e3078be3dd7b250ed23f6ff62
7
- data.tar.gz: f9ec8844a62859b6f4d70c0c70538781e85a471b6eb251e808ee9e76ded5b575850c413e211e6fa5e0ab4333a36c45b70b53ede224a40c0deb06a9187e2be676
6
+ metadata.gz: 8809116803378577e9462042c578b7e349bb8648e484cb8aa5aca855bf19bb7fdfd3a478b4deaf8fc12597f0eb9d96310452a3eb4de00562a9f2ee0cd2d474b0
7
+ data.tar.gz: 61b5fc6708ced60916af421ff63bd917a3da4f9674899489ea4f8542efe218b343c9ebe45a6c55fde47b1d852f89480e00651994edd308f4d51a89f61b75a1af
data/.travis.yml ADDED
@@ -0,0 +1,7 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.8.7
4
+ - 1.9.2
5
+ - 1.9.3
6
+ - 2.0.0
7
+ - ree
data/README.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # Purecss Rails
2
2
 
3
- TODO: Write a gem description
3
+ Pure ([http://purecss.io/](http://purecss.io/)) 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.
4
+
5
+ purecss-rails project integrates Pure CSS toolkit for Rails Asset Pipeline
6
+
7
+ [![Code Climate](https://codeclimate.com/github/brunohenrique/purecss-rails.png)](https://codeclimate.com/github/brunohenrique/purecss-rails)
4
8
 
5
9
  # Installation
6
10
 
@@ -18,8 +22,20 @@ Then run `bundle install` to install the gem.
18
22
  ## What now?
19
23
 
20
24
  ```bash
21
- rails g purecss:install
25
+ $ rails g purecss:install
26
+
27
+ or
28
+
29
+ $ rails g purecss:install nonresponsive
30
+ ```
31
+
32
+ To add a module, use the file ```app/assets/stylesheets/purecss.css``` like this:
33
+
34
+ ```
35
+ = require purecss/<module_name>
22
36
  ```
37
+
38
+
23
39
  ## Contributing
24
40
 
25
41
  1. Fork it
@@ -1,3 +1,3 @@
1
1
  module Purecss
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: purecss-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bruno Henrique - Garu
@@ -66,6 +66,7 @@ extensions: []
66
66
  extra_rdoc_files: []
67
67
  files:
68
68
  - .gitignore
69
+ - .travis.yml
69
70
  - Gemfile
70
71
  - LICENSE.txt
71
72
  - README.md