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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f37732d982ce7bbc0ab51c586e70b63e0e6577fc
4
- data.tar.gz: 74d497c7d3e3b93abce3b7a574def66992c852a4
3
+ metadata.gz: 18e46ae4f034dc2d566cae5c98b52aa77a37310e
4
+ data.tar.gz: d2853f6ef8a430f1a36f602b5c017cd8707c37e0
5
5
  SHA512:
6
- metadata.gz: b2c6a000556b708de7a301987b4649f6d76892531b5cedf782e8ddc3058f960db6a7ca5eda6d311c2c77f62a6357bc50b8ae0f570340cf495927c4c7de2fd9e6
7
- data.tar.gz: 77a9444a82d1e3777c6214efebfe3929deb69135833cc54ee64e057d38feb8d55341a39eac466eed05a191dceed09fb8610814eb44652af9b16d6a42e44f39cc
6
+ metadata.gz: 0b3aab06bc791ec902cb03be9da81cb44827ab85edce1f16fb1db745ac77605a5ae87e78a5743e970be11e84a655fe29109f86f154fab9a22b0cce5707fe8f98
7
+ data.tar.gz: 2b3c2199f1f5394808cc5106eac99282cfaaa27583fee694479e60c0bc40e46a01a211a8c9c67f78fc299d3cba83023f061e7da69da33207382135f593943a98
data/README.md CHANGED
@@ -1,13 +1,4 @@
1
- Compass Extension Template
2
- ==========================
1
+ gluhu
2
+ =====
3
3
 
4
- A SASS based front-end framework built as an extension of compass.
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
@@ -17,7 +17,7 @@ Compass::Frameworks.register('gluhu', :path => extension_path)
17
17
  # a prerelease version
18
18
  # Date is in the form of YYYY-MM-DD
19
19
  module Gluhu
20
- VERSION = "0.0.2"
20
+ VERSION = "0.0.3"
21
21
  DATE = "2014-11-22"
22
22
  end
23
23
 
@@ -1,10 +1,10 @@
1
1
  @font-face {
2
2
  font-family: 'icomoon';
3
- src:url('fonts/icomoon.eot?j0lryd');
4
- src:url('fonts/icomoon.eot?#iefixj0lryd') format('embedded-opentype'),
5
- url('fonts/icomoon.woff?j0lryd') format('woff'),
6
- url('fonts/icomoon.ttf?j0lryd') format('truetype'),
7
- url('fonts/icomoon.svg?j0lryd#icomoon') format('svg');
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
  }
@@ -4,5 +4,5 @@
4
4
 
5
5
  /* main gluhu styles */
6
6
 
7
- @import "gluhu.scss";
7
+ @import "_gluhu.scss";
8
8
 
@@ -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
- file '_base.scss', :like => :stylesheet, :media => 'screen, projection'
6
- file 'gluhu.scss', :like => :stylesheet, :media => 'screen, projection'
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 front end framework ready to drop in to your compass project. May the code be ever in your favour.
33
+ Welcome to Gluhu, a compass extension to speed up front end development.
34
+ May the code be ever in your favour.
27
35
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gluhu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Chappell