gluhu 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +10 -24
- data/lib/gluhu.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 20b997a0906a40dcafeaedf30122ddbb3b5cef24
|
4
|
+
data.tar.gz: 822f341f214a52c02c5c83244b459090a0c9a766
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 440bad54b63386071ee153b64fd87619160eefaff47172bca229bc51a954866bdea3cbe3210731b421e54dab67a62d6e55eac2daeef7fa6ad6f291df22432568
|
7
|
+
data.tar.gz: 180b3206c8a397b00fab5bed9b7a1b50e338ef1549574a5c9c2a3740af2575ad656fef9e4c409c547f4b34e62d644e39ef141d9e4622f0e9312ad16c01383152
|
data/README.md
CHANGED
@@ -61,43 +61,24 @@ The _base.scss file allows you to override virtually any variable without having
|
|
61
61
|
Installation
|
62
62
|
------------
|
63
63
|
|
64
|
-
###
|
65
|
-
|
66
|
-
Install compass if you haven't already.
|
67
|
-
|
68
|
-
```
|
69
|
-
gem install compass
|
64
|
+
### Install the gem
|
70
65
|
|
71
66
|
```
|
72
|
-
|
73
|
-
|
74
|
-
```
|
75
|
-
compass create my-project --bare
|
67
|
+
sudo gem install gluhu
|
76
68
|
|
77
69
|
```
|
78
|
-
|
70
|
+
Create a new compass project using gluhu
|
79
71
|
|
80
72
|
```
|
81
|
-
compass
|
82
|
-
|
83
|
-
```
|
84
|
-
Then open config.rb and require gluhu
|
85
|
-
|
86
|
-
```
|
87
|
-
require 'compass/import-once/activate'
|
88
|
-
|
89
|
-
# Require any additional compass plugins here.
|
90
|
-
|
91
|
-
require "gluhu"
|
73
|
+
compass create my_project -r gluhu --using gluhu
|
92
74
|
|
93
75
|
```
|
94
|
-
|
95
76
|
### Existing compass project.
|
96
77
|
|
97
78
|
Install gluhu
|
98
79
|
|
99
80
|
```
|
100
|
-
|
81
|
+
gem install gluhu
|
101
82
|
|
102
83
|
```
|
103
84
|
|
@@ -112,6 +93,11 @@ require "gluhu"
|
|
112
93
|
|
113
94
|
```
|
114
95
|
|
96
|
+
Then run
|
97
|
+
|
98
|
+
```
|
99
|
+
compass install gluhu
|
100
|
+
|
115
101
|
### Installing jQuery
|
116
102
|
|
117
103
|
Some aspects of gluhu rely on jQuery. There are a number ways to include it. I won't go over all of them.
|
data/lib/gluhu.rb
CHANGED