gluhu 0.0.6 → 0.0.7
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 +23 -2
- data/lib/gluhu.rb +1 -1
- data/templates/project/manifest.rb +2 -2
- 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: 4d7e715637e0dce0362c8c64733a41439cfaa724
|
4
|
+
data.tar.gz: 655302ea84e1da94ec5cfec7f7f512df3f9bf2a5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c7edd5430fdba7f7f3a7b2e1fef1f02f0167c65416c8fcb7afab2cd8e5554973e622d2b6293741c52e988bb2a1347c276cead6c15f48953d0e08cd76902854ba
|
7
|
+
data.tar.gz: 2010ec623c90e8a038eb5f877a32439a31ea4d43e654da0265288285b19d5a1d88dc79663a2272872799c914e9ab4eac9265de922983650ec5def17710e9a0ab
|
data/README.md
CHANGED
@@ -61,7 +61,7 @@ The _base.scss file allows you to override virtually any variable without having
|
|
61
61
|
Installation
|
62
62
|
------------
|
63
63
|
|
64
|
-
### Install
|
64
|
+
### Install Gluhu in a new compass project
|
65
65
|
|
66
66
|
```
|
67
67
|
sudo gem install gluhu
|
@@ -73,6 +73,16 @@ Create a new compass project using gluhu
|
|
73
73
|
compass create my_project -r gluhu --using gluhu
|
74
74
|
|
75
75
|
```
|
76
|
+
|
77
|
+
Relative assets must be set to true in config.rb in order for icon fonts to display. You may need to restart compass for this change to work.
|
78
|
+
|
79
|
+
``` Ruby
|
80
|
+
|
81
|
+
# To enable relative paths to assets via compass helper functions. Uncomment:
|
82
|
+
relative_assets = true
|
83
|
+
|
84
|
+
```
|
85
|
+
|
76
86
|
### Existing compass project.
|
77
87
|
|
78
88
|
Install gluhu
|
@@ -93,11 +103,22 @@ require "gluhu"
|
|
93
103
|
|
94
104
|
```
|
95
105
|
|
106
|
+
Relative assets must be set to true in config.rb in order for icon fonts to display. You may need to restart compass for this change to work.
|
107
|
+
|
108
|
+
``` Ruby
|
109
|
+
|
110
|
+
# To enable relative paths to assets via compass helper functions. Uncomment:
|
111
|
+
relative_assets = true
|
112
|
+
|
113
|
+
```
|
114
|
+
|
96
115
|
Then run
|
97
116
|
|
98
117
|
```
|
99
118
|
compass install gluhu
|
100
119
|
|
120
|
+
```
|
121
|
+
|
101
122
|
### Installing jQuery
|
102
123
|
|
103
124
|
Some aspects of gluhu rely on jQuery. There are a number ways to include it. I won't go over all of them.
|
@@ -122,4 +143,4 @@ bower install jquery
|
|
122
143
|
|
123
144
|
<hr>
|
124
145
|
|
125
|
-
Add the gluhu stylesheet, jQuery and toggle.js files to gluhu-example.html otherwise it won't work.
|
146
|
+
Add the gluhu stylesheet, jQuery and toggle.js files to gluhu-example.html otherwise it won't work. Use gluhu-example.html to get a feel for the framework and see how it works.
|
data/lib/gluhu.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
# Description
|
2
|
-
description "
|
2
|
+
description "Gluhu is a compass extension for developing more quickly."
|
3
3
|
|
4
4
|
# Stylesheet Import
|
5
5
|
stylesheet '_base.scss', :media => 'screen, projection'
|
@@ -34,6 +34,6 @@ help %Q{
|
|
34
34
|
# Compass Extension Welcome Message
|
35
35
|
# Users will see this when they create a new project using this template.
|
36
36
|
welcome_message %Q{
|
37
|
-
Welcome to Gluhu, a compass extension to speed up
|
37
|
+
Welcome to Gluhu, a compass extension to speed up development.
|
38
38
|
May the code be ever in your favour.
|
39
39
|
}
|