webfontloader 1.6.10 → 1.6.11

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: dbd08a82523ecb52b2529b26cfbdade0388b998f
4
- data.tar.gz: 619fedc7d99466a615c8adede7cc5dc019a74482
3
+ metadata.gz: 2613d53543cbede96569f20652acc63f6d9f4531
4
+ data.tar.gz: 0bf80a7cb8ca4af372ea56382af7d5a961631b54
5
5
  SHA512:
6
- metadata.gz: 5c6a5ae3201a63944a22ee61d51f11a08c54ce52efa562215f205a443e5acde177b42301bf156fd99a159d1e52f91e48416db1cff49bdfdd4a25cbd19acc65f5
7
- data.tar.gz: c119a018ff0a3d88989ea6864bcd6cf4f141a746dbc4f7e79ab0206e1deb0cc492a3417e26f941f3a8e8cb02cb20286ca88ac93f173b60b8175b6aef9bb8d931
6
+ metadata.gz: 3e45ba99933335f6bdc4c8cf20c4c97bfd15008e4ee6d0406895b0323e07eae4160c798eb8cac5fda6ecc516ee31e82100a64d3db9579a019c9624e5010176d8
7
+ data.tar.gz: 2152fe4f24824f3ca42b1fa6a9874fab655c4bdc6e8cf87d43cfcd71562ddcf59030f3fef6a47dfed087b4e18d7f13ce74f7520f7b886707bf66c9a2c129bbab
data/CHANGELOG CHANGED
@@ -1,3 +1,8 @@
1
+ v1.6.11 (November 17, 2015)
2
+
3
+ * Only include production build in npm package
4
+ * Fix bug that caused duplicate font loads to fail (using the native font loading code)
5
+
1
6
  v1.6.10 (October 9, 2015)
2
7
 
3
8
  * Fix compile warning
data/README.md CHANGED
@@ -44,7 +44,7 @@ It is also possible to use the Web Font Loader asynchronously. For example, to l
44
44
  WebFontConfig = {
45
45
  typekit: { id: 'xxxxxx' }
46
46
  };
47
-
47
+
48
48
  (function(d) {
49
49
  var wf = d.createElement('script'), s = d.scripts[0];
50
50
  wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1.5.18/webfont.js';
@@ -57,6 +57,18 @@ Using the Web Font Loader asynchronously avoids blocking your page while loading
57
57
 
58
58
  The FOUT can be more easily avoided when loading the Web Font Loader synchronously, as it will automatically set the `wf-loading` class on the HTML element as soon as `Webfont.load` has been called. The browser will wait for the script to load before continuing to load the rest of the content, FOUT is avoided.
59
59
 
60
+ Web Font Loader is also available on npm as a CommonJS module. Just `npm install webfontloader` and then require it in your code.
61
+
62
+ ```js
63
+ var WebFont = require('webfontloader');
64
+
65
+ WebFont.load({
66
+ google: {
67
+ families: ['Droid Sans', 'Droid Serif']
68
+ }
69
+ });
70
+ ```
71
+
60
72
  ## Configuration
61
73
 
62
74
  The Web Font Loader configuration is defined by a global variable named `WebFontConfig`, or passed directly to the `WebFont.load` method. It defines which fonts to load from each web font provider and gives you the option to specify callbacks for certain events. When using the asynchronous approach, you must define the global variable `WebFontConfig` before the code that loads the Web Font Loader (as in the example above).
data/lib/webfontloader.rb CHANGED
@@ -3,7 +3,7 @@ require 'yaml'
3
3
  require 'webfontloader/modules'
4
4
 
5
5
  module WebFontLoader
6
- VERSION = '1.6.10'
6
+ VERSION = '1.6.11'
7
7
 
8
8
  ProjectRoot = File.expand_path(File.dirname(__FILE__) + "/..")
9
9
 
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "webfontloader",
3
- "version": "1.6.9",
3
+ "version": "1.6.10",
4
4
  "description": "Web Font Loader gives you added control when using linked fonts via @font-face.",
5
5
  "main": "webfontloader.js",
6
6
  "scripts": {
@@ -18,6 +18,9 @@
18
18
  "loader",
19
19
  "@font-face"
20
20
  ],
21
+ "files": [
22
+ "webfontloader.js"
23
+ ],
21
24
  "contributors": [
22
25
  "Ryan Carver <ryan@typekit.com>",
23
26
  "Jeremie Lenfant-engelmann <jeremiele@google.com>",
@@ -9,6 +9,7 @@ describe('NativeFontWatchRunner', function () {
9
9
  inactiveCallback = null,
10
10
  nullFont = null,
11
11
  sourceSansC = null,
12
+ sourceSansDup = null,
12
13
  elena = null;
13
14
 
14
15
  beforeEach(function () {
@@ -19,6 +20,7 @@ describe('NativeFontWatchRunner', function () {
19
20
 
20
21
  nullFont = new Font('__webfontloader_test_3__');
21
22
  sourceSansC = new Font('SourceSansC');
23
+ sourceSansDup = new Font('SourceSansDup');
22
24
  elena = new Font('Elena');
23
25
  });
24
26
 
@@ -40,12 +42,14 @@ describe('NativeFontWatchRunner', function () {
40
42
  });
41
43
  });
42
44
 
43
- it('should load font succesfully', function () {
44
- var fontWatchRunner = new NativeFontWatchRunner(activeCallback, inactiveCallback,
45
- domHelper, sourceSansC),
45
+ function succesfulLoadingSpec(getFontToBeLoaded, getFontNameToBeLoaded) {
46
+ var fontToBeLoaded = getFontToBeLoaded(),
47
+ fontNameToBeLoaded = getFontNameToBeLoaded(),
48
+ fontWatchRunner = new NativeFontWatchRunner(activeCallback, inactiveCallback,
49
+ domHelper, fontToBeLoaded),
46
50
  ruler = new FontRuler(domHelper, 'abcdef'),
47
51
  monospace = new Font('monospace'),
48
- sourceSansCFallback = new Font('SourceSansC, monospace'),
52
+ fallbackFont = new Font(fontNameToBeLoaded + ', monospace'),
49
53
  activeWidth = null,
50
54
  originalWidth = null,
51
55
  finalCheck = false;
@@ -54,7 +58,7 @@ describe('NativeFontWatchRunner', function () {
54
58
  ruler.insert();
55
59
  ruler.setFont(monospace);
56
60
  originalWidth = ruler.getWidth();
57
- ruler.setFont(sourceSansCFallback);
61
+ ruler.setFont(fallbackFont);
58
62
  fontWatchRunner.start();
59
63
  });
60
64
 
@@ -63,7 +67,7 @@ describe('NativeFontWatchRunner', function () {
63
67
  });
64
68
 
65
69
  runs(function () {
66
- expect(activeCallback).toHaveBeenCalledWith(sourceSansC);
70
+ expect(activeCallback).toHaveBeenCalledWith(fontToBeLoaded);
67
71
  activeWidth = ruler.getWidth();
68
72
  expect(activeWidth).not.toEqual(originalWidth);
69
73
 
@@ -80,7 +84,13 @@ describe('NativeFontWatchRunner', function () {
80
84
  expect(ruler.getWidth()).not.toEqual(originalWidth);
81
85
  expect(ruler.getWidth()).toEqual(activeWidth);
82
86
  });
83
- });
87
+ }
88
+
89
+ it('should load font succesfully',
90
+ succesfulLoadingSpec.bind(null, function() { return sourceSansC; }, function() { return 'SourceSansC'; }));
91
+
92
+ it('should load font succesfully even if it is duplicated',
93
+ succesfulLoadingSpec.bind(null, function() { return sourceSansDup; }, function() { return 'SourceSansDup'; }));
84
94
 
85
95
  it('should attempt to load a non-existing font', function () {
86
96
  var fontWatchRunner = new NativeFontWatchRunner(activeCallback, inactiveCallback,
@@ -0,0 +1 @@
1
+ @font-face{font-family:SourceSansDup;src:url(sourcesans.eot?#iefix) format('embedded-opentype'),url(sourcesans.woff) format('woff'),url(sourcesans.otf) format('opentype'),url(sourcesans.ttf) format('truetype'),url(sourcesans.svg#source_sans_proregular) format('svg');}
@@ -0,0 +1 @@
1
+ @font-face{font-family:SourceSansDup;src:url(sourcesans.eot?#iefix) format('embedded-opentype'),url(sourcesans.woff) format('woff'),url(sourcesans.otf) format('opentype'),url(sourcesans.ttf) format('truetype'),url(sourcesans.svg#source_sans_proregular) format('svg');}
data/spec/index.html CHANGED
@@ -11,6 +11,8 @@
11
11
  <link rel="stylesheet" href="fixtures/fonts/nullfont3.css">
12
12
  <link rel="stylesheet" href="fixtures/fonts/sourcesansa.css">
13
13
  <link rel="stylesheet" href="fixtures/fonts/sourcesansc.css">
14
+ <link rel="stylesheet" href="fixtures/fonts/sourcesansdup1.css">
15
+ <link rel="stylesheet" href="fixtures/fonts/sourcesansdup2.css">
14
16
  </head>
15
17
  <body>
16
18
  <script>
@@ -34,7 +34,7 @@ goog.scope(function () {
34
34
  reject(that.font_);
35
35
  }, that.timeout_);
36
36
  }), doc.fonts.load(this.font_.toCssString(), this.fontTestString_)]).then(function (fonts) {
37
- if (fonts.length === 1) {
37
+ if (fonts.length >= 1) {
38
38
  that.activeCallback_(that.font_);
39
39
  } else {
40
40
  that.inactiveCallback_(that.font_);
@@ -13,8 +13,8 @@ Gem::Specification.new do |s|
13
13
  ## If your rubyforge_project name is different, then edit it and comment out
14
14
  ## the sub! line in the Rakefile
15
15
  s.name = 'webfontloader'
16
- s.version = '1.6.10'
17
- s.date = '2015-10-09'
16
+ s.version = '1.6.11'
17
+ s.date = '2015-11-17'
18
18
 
19
19
  ## Make sure your summary is short. The description may be as long
20
20
  ## as you like.
@@ -138,6 +138,8 @@ DESC
138
138
  spec/fixtures/fonts/sourcesansb.css
139
139
  spec/fixtures/fonts/sourcesansc.css
140
140
  spec/fixtures/fonts/sourcesansd.css
141
+ spec/fixtures/fonts/sourcesansdup1.css
142
+ spec/fixtures/fonts/sourcesansdup2.css
141
143
  spec/index.html
142
144
  spec/modules/custom_spec.js
143
145
  spec/modules/fontdeck_spec.js
data/webfontloader.js CHANGED
@@ -1,9 +1,9 @@
1
- /* Web Font Loader v1.6.10 - (c) Adobe Systems, Google. License: Apache 2.0 */
1
+ /* Web Font Loader v1.6.11 - (c) Adobe Systems, Google. License: Apache 2.0 */
2
2
  (function(){function aa(a,b,c){return a.call.apply(a.bind,arguments)}function ba(a,b,c){if(!a)throw Error();if(2<arguments.length){var d=Array.prototype.slice.call(arguments,2);return function(){var c=Array.prototype.slice.call(arguments);Array.prototype.unshift.apply(c,d);return a.apply(b,c)}}return function(){return a.apply(b,arguments)}}function n(a,b,c){n=Function.prototype.bind&&-1!=Function.prototype.bind.toString().indexOf("native code")?aa:ba;return n.apply(null,arguments)}var p=Date.now||function(){return+new Date};function q(a,b){this.F=a;this.k=b||a;this.H=this.k.document}var ca=!!window.FontFace;q.prototype.createElement=function(a,b,c){a=this.H.createElement(a);if(b)for(var d in b)b.hasOwnProperty(d)&&("style"==d?a.style.cssText=b[d]:a.setAttribute(d,b[d]));c&&a.appendChild(this.H.createTextNode(c));return a};function s(a,b,c){a=a.H.getElementsByTagName(b)[0];a||(a=document.documentElement);a.insertBefore(c,a.lastChild)}
3
3
  function t(a,b,c){b=b||[];c=c||[];for(var d=a.className.split(/\s+/),e=0;e<b.length;e+=1){for(var f=!1,g=0;g<d.length;g+=1)if(b[e]===d[g]){f=!0;break}f||d.push(b[e])}b=[];for(e=0;e<d.length;e+=1){f=!1;for(g=0;g<c.length;g+=1)if(d[e]===c[g]){f=!0;break}f||b.push(d[e])}a.className=b.join(" ").replace(/\s+/g," ").replace(/^\s+|\s+$/,"")}function u(a,b){for(var c=a.className.split(/\s+/),d=0,e=c.length;d<e;d++)if(c[d]==b)return!0;return!1}
4
4
  function v(a){if("string"===typeof a.fa)return a.fa;var b=a.k.location.protocol;"about:"==b&&(b=a.F.location.protocol);return"https:"==b?"https:":"http:"}function x(a,b,c){function d(){l&&e&&f&&(l(g),l=null)}b=a.createElement("link",{rel:"stylesheet",href:b,media:"all"});var e=!1,f=!0,g=null,l=c||null;ca?(b.onload=function(){e=!0;d()},b.onerror=function(){e=!0;g=Error("Stylesheet failed to load");d()}):setTimeout(function(){e=!0;d()},0);s(a,"head",b)}
5
5
  function y(a,b,c,d){var e=a.H.getElementsByTagName("head")[0];if(e){var f=a.createElement("script",{src:b}),g=!1;f.onload=f.onreadystatechange=function(){g||this.readyState&&"loaded"!=this.readyState&&"complete"!=this.readyState||(g=!0,c&&c(null),f.onload=f.onreadystatechange=null,"HEAD"==f.parentNode.tagName&&e.removeChild(f))};e.appendChild(f);setTimeout(function(){g||(g=!0,c&&c(Error("Script load timeout")))},d||5E3);return f}return null};function z(){this.S=0;this.K=null}function A(a){a.S++;return function(){a.S--;B(a)}}function C(a,b){a.K=b;B(a)}function B(a){0==a.S&&a.K&&(a.K(),a.K=null)};function D(a){this.ea=a||"-"}D.prototype.d=function(a){for(var b=[],c=0;c<arguments.length;c++)b.push(arguments[c].replace(/[\W_]+/g,"").toLowerCase());return b.join(this.ea)};function E(a,b){this.Q=a;this.M=4;this.L="n";var c=(b||"n4").match(/^([nio])([1-9])$/i);c&&(this.L=c[1],this.M=parseInt(c[2],10))}E.prototype.getName=function(){return this.Q};function da(a){return G(a)+" "+(a.M+"00")+" 300px "+H(a.Q)}function H(a){var b=[];a=a.split(/,\s*/);for(var c=0;c<a.length;c++){var d=a[c].replace(/['"]/g,"");-1!=d.indexOf(" ")||/^\d/.test(d)?b.push("'"+d+"'"):b.push(d)}return b.join(",")}function I(a){return a.L+a.M}
6
- function G(a){var b="normal";"o"===a.L?b="oblique":"i"===a.L&&(b="italic");return b}function ea(a){var b=4,c="n",d=null;a&&((d=a.match(/(normal|oblique|italic)/i))&&d[1]&&(c=d[1].substr(0,1).toLowerCase()),(d=a.match(/([1-9]00|normal|bold)/i))&&d[1]&&(/bold/i.test(d[1])?b=7:/[1-9]00/.test(d[1])&&(b=parseInt(d[1].substr(0,1),10))));return c+b};function fa(a,b){this.a=a;this.j=a.k.document.documentElement;this.O=b;this.g="wf";this.e=new D("-");this.da=!1!==b.events;this.u=!1!==b.classes}function ga(a){a.u&&t(a.j,[a.e.d(a.g,"loading")]);J(a,"loading")}function K(a){if(a.u){var b=u(a.j,a.e.d(a.g,"active")),c=[],d=[a.e.d(a.g,"loading")];b||c.push(a.e.d(a.g,"inactive"));t(a.j,c,d)}J(a,"inactive")}function J(a,b,c){if(a.da&&a.O[b])if(c)a.O[b](c.getName(),I(c));else a.O[b]()};function ha(){this.t={}}function ia(a,b,c){var d=[],e;for(e in b)if(b.hasOwnProperty(e)){var f=a.t[e];f&&d.push(f(b[e],c))}return d};function L(a,b){this.a=a;this.h=b;this.m=this.a.createElement("span",{"aria-hidden":"true"},this.h)}function M(a,b){var c=a.m,d;d="display:block;position:absolute;top:-9999px;left:-9999px;font-size:300px;width:auto;height:auto;line-height:normal;margin:0;padding:0;font-variant:normal;white-space:nowrap;font-family:"+H(b.Q)+";"+("font-style:"+G(b)+";font-weight:"+(b.M+"00")+";");c.style.cssText=d}function N(a){s(a.a,"body",a.m)}L.prototype.remove=function(){var a=this.m;a.parentNode&&a.parentNode.removeChild(a)};function O(a,b,c,d,e,f){this.G=a;this.J=b;this.f=d;this.a=c;this.v=e||3E3;this.h=f||void 0}O.prototype.start=function(){var a=this.a.k.document,b=this;Promise.race([new Promise(function(a,d){setTimeout(function(){d(b.f)},b.v)}),a.fonts.load(da(this.f),this.h)]).then(function(a){1===a.length?b.G(b.f):b.J(b.f)},function(){b.J(b.f)})};function P(a,b,c,d,e,f,g){this.G=a;this.J=b;this.a=c;this.f=d;this.h=g||"BESbswy";this.s={};this.v=e||3E3;this.Z=f||null;this.D=this.C=this.A=this.w=null;this.w=new L(this.a,this.h);this.A=new L(this.a,this.h);this.C=new L(this.a,this.h);this.D=new L(this.a,this.h);M(this.w,new E(this.f.getName()+",serif",I(this.f)));M(this.A,new E(this.f.getName()+",sans-serif",I(this.f)));M(this.C,new E("serif",I(this.f)));M(this.D,new E("sans-serif",I(this.f)));N(this.w);N(this.A);N(this.C);N(this.D)}
6
+ function G(a){var b="normal";"o"===a.L?b="oblique":"i"===a.L&&(b="italic");return b}function ea(a){var b=4,c="n",d=null;a&&((d=a.match(/(normal|oblique|italic)/i))&&d[1]&&(c=d[1].substr(0,1).toLowerCase()),(d=a.match(/([1-9]00|normal|bold)/i))&&d[1]&&(/bold/i.test(d[1])?b=7:/[1-9]00/.test(d[1])&&(b=parseInt(d[1].substr(0,1),10))));return c+b};function fa(a,b){this.a=a;this.j=a.k.document.documentElement;this.O=b;this.g="wf";this.e=new D("-");this.da=!1!==b.events;this.u=!1!==b.classes}function ga(a){a.u&&t(a.j,[a.e.d(a.g,"loading")]);J(a,"loading")}function K(a){if(a.u){var b=u(a.j,a.e.d(a.g,"active")),c=[],d=[a.e.d(a.g,"loading")];b||c.push(a.e.d(a.g,"inactive"));t(a.j,c,d)}J(a,"inactive")}function J(a,b,c){if(a.da&&a.O[b])if(c)a.O[b](c.getName(),I(c));else a.O[b]()};function ha(){this.t={}}function ia(a,b,c){var d=[],e;for(e in b)if(b.hasOwnProperty(e)){var f=a.t[e];f&&d.push(f(b[e],c))}return d};function L(a,b){this.a=a;this.h=b;this.m=this.a.createElement("span",{"aria-hidden":"true"},this.h)}function M(a,b){var c=a.m,d;d="display:block;position:absolute;top:-9999px;left:-9999px;font-size:300px;width:auto;height:auto;line-height:normal;margin:0;padding:0;font-variant:normal;white-space:nowrap;font-family:"+H(b.Q)+";"+("font-style:"+G(b)+";font-weight:"+(b.M+"00")+";");c.style.cssText=d}function N(a){s(a.a,"body",a.m)}L.prototype.remove=function(){var a=this.m;a.parentNode&&a.parentNode.removeChild(a)};function O(a,b,c,d,e,f){this.G=a;this.J=b;this.f=d;this.a=c;this.v=e||3E3;this.h=f||void 0}O.prototype.start=function(){var a=this.a.k.document,b=this;Promise.race([new Promise(function(a,d){setTimeout(function(){d(b.f)},b.v)}),a.fonts.load(da(this.f),this.h)]).then(function(a){1<=a.length?b.G(b.f):b.J(b.f)},function(){b.J(b.f)})};function P(a,b,c,d,e,f,g){this.G=a;this.J=b;this.a=c;this.f=d;this.h=g||"BESbswy";this.s={};this.v=e||3E3;this.Z=f||null;this.D=this.C=this.A=this.w=null;this.w=new L(this.a,this.h);this.A=new L(this.a,this.h);this.C=new L(this.a,this.h);this.D=new L(this.a,this.h);M(this.w,new E(this.f.getName()+",serif",I(this.f)));M(this.A,new E(this.f.getName()+",sans-serif",I(this.f)));M(this.C,new E("serif",I(this.f)));M(this.D,new E("sans-serif",I(this.f)));N(this.w);N(this.A);N(this.C);N(this.D)}
7
7
  var Q={ia:"serif",ha:"sans-serif"},R=null;function S(){if(null===R){var a=/AppleWebKit\/([0-9]+)(?:\.([0-9]+))/.exec(window.navigator.userAgent);R=!!a&&(536>parseInt(a[1],10)||536===parseInt(a[1],10)&&11>=parseInt(a[2],10))}return R}P.prototype.start=function(){this.s.serif=this.C.m.offsetWidth;this.s["sans-serif"]=this.D.m.offsetWidth;this.ga=p();T(this)};function ja(a,b,c){for(var d in Q)if(Q.hasOwnProperty(d)&&b===a.s[Q[d]]&&c===a.s[Q[d]])return!0;return!1}
8
8
  function T(a){var b=a.w.m.offsetWidth,c=a.A.m.offsetWidth,d;(d=b===a.s.serif&&c===a.s["sans-serif"])||(d=S()&&ja(a,b,c));d?p()-a.ga>=a.v?S()&&ja(a,b,c)&&(null===a.Z||a.Z.hasOwnProperty(a.f.getName()))?U(a,a.G):U(a,a.J):ka(a):U(a,a.G)}function ka(a){setTimeout(n(function(){T(this)},a),50)}function U(a,b){setTimeout(n(function(){this.w.remove();this.A.remove();this.C.remove();this.D.remove();b(this.f)},a),0)};function V(a,b,c){this.a=a;this.p=b;this.P=0;this.ba=this.Y=!1;this.v=c}var la=!!window.FontFace;V.prototype.V=function(a){var b=this.p;b.u&&t(b.j,[b.e.d(b.g,a.getName(),I(a).toString(),"active")],[b.e.d(b.g,a.getName(),I(a).toString(),"loading"),b.e.d(b.g,a.getName(),I(a).toString(),"inactive")]);J(b,"fontactive",a);this.ba=!0;ma(this)};
9
9
  V.prototype.W=function(a){var b=this.p;if(b.u){var c=u(b.j,b.e.d(b.g,a.getName(),I(a).toString(),"active")),d=[],e=[b.e.d(b.g,a.getName(),I(a).toString(),"loading")];c||d.push(b.e.d(b.g,a.getName(),I(a).toString(),"inactive"));t(b.j,d,e)}J(b,"fontinactive",a);ma(this)};function ma(a){0==--a.P&&a.Y&&(a.ba?(a=a.p,a.u&&t(a.j,[a.e.d(a.g,"active")],[a.e.d(a.g,"loading"),a.e.d(a.g,"inactive")]),J(a,"active")):K(a.p))};function na(a){this.F=a;this.q=new ha;this.$=0;this.T=this.U=!0}na.prototype.load=function(a){this.a=new q(this.F,a.context||this.F);this.U=!1!==a.events;this.T=!1!==a.classes;oa(this,new fa(this.a,a),a)};
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: webfontloader
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.10
4
+ version: 1.6.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Carver
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-10-09 00:00:00.000000000 Z
12
+ date: 2015-11-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -147,6 +147,8 @@ files:
147
147
  - spec/fixtures/fonts/sourcesansb.css
148
148
  - spec/fixtures/fonts/sourcesansc.css
149
149
  - spec/fixtures/fonts/sourcesansd.css
150
+ - spec/fixtures/fonts/sourcesansdup1.css
151
+ - spec/fixtures/fonts/sourcesansdup2.css
150
152
  - spec/index.html
151
153
  - spec/modules/custom_spec.js
152
154
  - spec/modules/fontdeck_spec.js