foundation-icons-sass 1.0.2 → 1.0.3

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: e894c37c4db52b47e063764f2408f691c25d8b42
4
- data.tar.gz: 685b667f225790d3e9297072cdfdb4026b2c048c
3
+ metadata.gz: 2eec0506eda538351487bc320bb6c9dfdc95e5ae
4
+ data.tar.gz: 918219ac35c301cb44ee04b73d674e8d684851b5
5
5
  SHA512:
6
- metadata.gz: 5412ee6e562570589d625c7255828040454277e34181203cb4f4c18a8e7895ea8c5b427dc3a2fffc75051c1e5088c2605cd4aa93024b767ad57c43e1dd0585a3
7
- data.tar.gz: 98e931b1c2edc6e47a4e5a2c3aaac38868933d6da77d8154c169ede85e95ad8241efbfa43ccd4c2569148cc946a98588b1b2ba05ce8852a280e6262c0de42408
6
+ metadata.gz: 1ce1b63cf51b9abc867ede3f7ea28a61fcdc1122e6f9536f16e661fdb59931657ee89d4824ad0d628502dceb85ec48aab63550d785c9ef339558ad63230d85a9
7
+ data.tar.gz: da0e63b1d2ce4b392f215767a642693fa632d872f66baaade9280e8506da9089afd8863362e16df456bc4b3351e56bd8b51d49255cc66f3648c25d3adb2be7c6
data/README.md CHANGED
@@ -8,9 +8,9 @@ This gem is based heavily on the [FontAwesome SASS gem](https://github.com/FortA
8
8
 
9
9
  Add this line to your application's Gemfile:
10
10
 
11
- ```ruby
12
- gem 'foundation-icons-sass'
13
- ```
11
+ ```ruby
12
+ gem 'foundation-icons-sass'
13
+ ```
14
14
 
15
15
  And then execute:
16
16
 
@@ -26,9 +26,25 @@ If you use Rails add this to e.g. application.css.scss:
26
26
 
27
27
  *= require foundation-icons
28
28
 
29
+ With Compass, just do:
30
+
31
+ @import foundation-icons
32
+
33
+ With Jekyll, you can use it with jekyll-assets by putting this in your `_plugins/ext.rb`:
34
+
35
+ ```ruby
36
+ require 'jekyll-assets/foundation-icons'
37
+ ```
38
+
39
+ and then this in your `whatever.sass`:
40
+
41
+ @import foundation-icons
42
+
29
43
  Then you can use the icons as such:
30
44
 
31
- <i class="fi-social-github"></i>
45
+ ```html
46
+ <i class="fi-social-github"></i>
47
+ ```
32
48
 
33
49
  ## Rails Helper usage
34
50
 
@@ -1,5 +1,5 @@
1
1
  module FoundationIcons
2
2
  module Sass
3
- VERSION = "1.0.2"
3
+ VERSION = "1.0.3"
4
4
  end
5
5
  end
@@ -11,8 +11,8 @@
11
11
 
12
12
  @font-face {
13
13
  font-family: "foundation-icons";
14
- src: url("foundation-icons.eot");
15
- src: url("foundation-icons.eot?#iefix") format("embedded-opentype"), url("foundation-icons.woff") format("woff"), url("foundation-icons.ttf") format("truetype"), url("foundation-icons.svg#fontcustom") format("svg");
14
+ src: font-url("foundation-icons.eot");
15
+ src: font-url("foundation-icons.eot?#iefix") format("embedded-opentype"), font-url("foundation-icons.woff") format("woff"), font-url("foundation-icons.ttf") format("truetype"), font-url("foundation-icons.svg#fontcustom") format("svg");
16
16
  font-weight: normal;
17
17
  font-style: normal;
18
18
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foundation-icons-sass
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Lindblom