gluhu 0.0.2 → 0.0.3
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 +3 -12
- data/lib/gluhu.rb +1 -1
- data/stylesheets/gluhu/_fonts.scss +5 -5
- data/templates/project/gluhu.scss +1 -1
- data/templates/project/manifest.rb +13 -5
- 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: 18e46ae4f034dc2d566cae5c98b52aa77a37310e
|
4
|
+
data.tar.gz: d2853f6ef8a430f1a36f602b5c017cd8707c37e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b3aab06bc791ec902cb03be9da81cb44827ab85edce1f16fb1db745ac77605a5ae87e78a5743e970be11e84a655fe29109f86f154fab9a22b0cce5707fe8f98
|
7
|
+
data.tar.gz: 2b3c2199f1f5394808cc5106eac99282cfaaa27583fee694479e60c0bc40e46a01a211a8c9c67f78fc299d3cba83023f061e7da69da33207382135f593943a98
|
data/README.md
CHANGED
@@ -1,13 +1,4 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
gluhu
|
2
|
+
=====
|
3
3
|
|
4
|
-
A
|
5
|
-
|
6
|
-
<hr>
|
7
|
-
|
8
|
-
## Attribution
|
9
|
-
Thanks to https://github.com/at-import/Compass-Extension-Template
|
10
|
-
|
11
|
-
## License
|
12
|
-
|
13
|
-
MIT
|
4
|
+
A compass extension for developing faster and more easily.
|
data/lib/gluhu.rb
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
@font-face {
|
2
2
|
font-family: 'icomoon';
|
3
|
-
src:url('
|
4
|
-
src:url('
|
5
|
-
url('
|
6
|
-
url('
|
7
|
-
url('
|
3
|
+
src:font-url('icomoon.eot?j0lryd');
|
4
|
+
src:font-url('icomoon.eot?#iefixj0lryd') format('embedded-opentype'),
|
5
|
+
font-url('icomoon.woff?j0lryd') format('woff'),
|
6
|
+
font-url('icomoon.ttf?j0lryd') format('truetype'),
|
7
|
+
font-url('icomoon.svg?j0lryd#icomoon') format('svg');
|
8
8
|
font-weight: normal;
|
9
9
|
font-style: normal;
|
10
10
|
}
|
@@ -2,13 +2,20 @@
|
|
2
2
|
description "SS-Framework is a front-end framework for building websites more quickly."
|
3
3
|
|
4
4
|
# Stylesheet Import
|
5
|
-
|
6
|
-
|
5
|
+
stylesheet '_base.scss', :media => 'screen, projection'
|
6
|
+
stylesheet 'gluhu.scss', :media => 'screen, projection'
|
7
7
|
|
8
|
-
discover :all
|
9
8
|
|
10
9
|
# Javascript Import
|
11
10
|
|
11
|
+
javascript 'toggle.js', :within => 'javascripts_dir'
|
12
|
+
|
13
|
+
# Font import
|
14
|
+
|
15
|
+
font 'icomoon.eot', :within => 'fonts_dir'
|
16
|
+
font 'icomoon.svg', :within => 'fonts_dir'
|
17
|
+
font 'icomoon.ttf', :within => 'fonts_dir'
|
18
|
+
font 'icomoon.woff', :within => 'fonts_dir'
|
12
19
|
|
13
20
|
# file 'scripts.js', :like => :javascript, :to => 'scripts.js'
|
14
21
|
|
@@ -17,11 +24,12 @@ discover :all
|
|
17
24
|
|
18
25
|
# Compass Extension Help
|
19
26
|
help %Q{
|
20
|
-
Help is available on the Github repo.
|
27
|
+
Help is available on the Github repo. https://github.com/acha5066/gluhu
|
21
28
|
}
|
22
29
|
|
23
30
|
# Compass Extension Welcome Message
|
24
31
|
# Users will see this when they create a new project using this template.
|
25
32
|
welcome_message %Q{
|
26
|
-
Welcome to Gluhu, a
|
33
|
+
Welcome to Gluhu, a compass extension to speed up front end development.
|
34
|
+
May the code be ever in your favour.
|
27
35
|
}
|