compass_sumo 0.4.4 → 0.5
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fd749e50433380c50b9f4b9bccfd4f6ee1de2196
|
4
|
+
data.tar.gz: c8328b2451664f5728dc349c036b806100c10102
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d50dc65e3f7cb6833de4252163b655906486ebda64f645bad8ef0dd97098df1dcaa5a709392e94d7929d476c4ab14b85aa171e341d1e8967bafe6c7d142bb089
|
7
|
+
data.tar.gz: 21965323234edd04689f3ade7f924fae79eb0fabc6fe0046b7772361808889ab01d77ef697c0b1ac28cc049b3c152048d0e563316fa497ae6a84fc817b422117
|
data/compass_sumo.gemspec
CHANGED
@@ -59,9 +59,8 @@ class CompassSumo::SassExtensions::Importers::FontImporter < Sass::Importers::Ba
|
|
59
59
|
def font_information_for(uri, options = {})
|
60
60
|
font_files_for(uri, options).map do |file|
|
61
61
|
{
|
62
|
-
|
63
|
-
|
64
|
-
:path => file.gsub(Compass.configuration.fonts_dir + '/', '').gsub('.ttf', ''),
|
62
|
+
:font_variable => File.basename(file).gsub('.ttf', ''),
|
63
|
+
:path => file.gsub(Compass.configuration.fonts_dir + '/', '').gsub('.ttf', ''),
|
65
64
|
}
|
66
65
|
end
|
67
66
|
end
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<% fonts.each do |font| %>
|
2
|
-
@include load-font("<%= font[:
|
2
|
+
@include load-font("<%= font[:font_variable] %>", "<%= font[:path]%>");
|
3
3
|
|
4
|
-
$<%= font[:font_variable] %>: <%= font[:
|
4
|
+
$<%= font[:font_variable] %>: <%= font[:font_variable] %>;
|
5
5
|
<% end %>
|
6
6
|
|
data/lib/compass_sumo/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: compass_sumo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: '0.5'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jan De Poorter
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2014-
|
14
|
+
date: 2014-09-05 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: compass
|
@@ -27,20 +27,6 @@ dependencies:
|
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
29
|
version: '0'
|
30
|
-
- !ruby/object:Gem::Dependency
|
31
|
-
name: ttfunk
|
32
|
-
requirement: !ruby/object:Gem::Requirement
|
33
|
-
requirements:
|
34
|
-
- - ">="
|
35
|
-
- !ruby/object:Gem::Version
|
36
|
-
version: '0'
|
37
|
-
type: :runtime
|
38
|
-
prerelease: false
|
39
|
-
version_requirements: !ruby/object:Gem::Requirement
|
40
|
-
requirements:
|
41
|
-
- - ">="
|
42
|
-
- !ruby/object:Gem::Version
|
43
|
-
version: '0'
|
44
30
|
description: The SumoCoders CSS Framework
|
45
31
|
email: compass@sumocoders.be
|
46
32
|
executables: []
|