gluhu 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: 20b997a0906a40dcafeaedf30122ddbb3b5cef24
4
- data.tar.gz: 822f341f214a52c02c5c83244b459090a0c9a766
3
+ metadata.gz: 4d7e715637e0dce0362c8c64733a41439cfaa724
4
+ data.tar.gz: 655302ea84e1da94ec5cfec7f7f512df3f9bf2a5
5
5
  SHA512:
6
- metadata.gz: 440bad54b63386071ee153b64fd87619160eefaff47172bca229bc51a954866bdea3cbe3210731b421e54dab67a62d6e55eac2daeef7fa6ad6f291df22432568
7
- data.tar.gz: 180b3206c8a397b00fab5bed9b7a1b50e338ef1549574a5c9c2a3740af2575ad656fef9e4c409c547f4b34e62d644e39ef141d9e4622f0e9312ad16c01383152
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 the gem
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
@@ -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.6"
20
+ VERSION = "0.0.7"
21
21
  DATE = "2014-11-22"
22
22
  end
23
23
 
@@ -1,5 +1,5 @@
1
1
  # Description
2
- description "SS-Framework is a front-end framework for building websites more quickly."
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 front end development.
37
+ Welcome to Gluhu, a compass extension to speed up development.
38
38
  May the code be ever in your favour.
39
39
  }
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.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Chappell