web_font 0.1.13 → 0.1.14

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: b327aae83307830d84e8d1d2cc0929acc9223bc8
4
- data.tar.gz: 375f17adabc1eca8e4a2bb7066a92c39aa0a1e6b
3
+ metadata.gz: 2fec2cb86562a54ec598f8f6a8547cca984ec5c9
4
+ data.tar.gz: 5cba31ab3971229eb4a0ef322bf93bd57949f756
5
5
  SHA512:
6
- metadata.gz: aa21527ab01f99cc0a43454b43191ac25fd4e1bd7a0886671eadadeaeed719415b8ea420918b5d136bc140c8e70b4c631bdb45b588f8414792144e9bcbc769a7
7
- data.tar.gz: 9cced32856f812549b08e1e92ac40e184c2deb3268dca4b163181d47c11411005c088c74b9803229c33defaf4e5b171cb675b91ce01fa5edce7c45847c22ec69
6
+ metadata.gz: 337975c1ba68019d4d001aa2ee8887d9b7d25ea96783d0914828b71bf4427bb4a77f877a9021ffbca6bda0440fc5392402dfda8dc56e8e01ac406ac785bdc602
7
+ data.tar.gz: b54a49889d2ac7c904536d38795c0a87d9220171b45768c9ebe0312830288fc5944a7c066fbc37a874e3b2370a82f9c6cc82743d2ca2156bb789c713a3a4094a
@@ -12,7 +12,7 @@ module WebFont
12
12
  #
13
13
  # Returns hash
14
14
  def find(font_family)
15
- font_family = font_family.downcase
15
+ font_family = font_family.to_s.downcase
16
16
  alphabet = font_family[0]
17
17
  hash = indices[alphabet]
18
18
 
@@ -1,3 +1,3 @@
1
1
  module WebFont
2
- VERSION = '0.1.13'
2
+ VERSION = '0.1.14'
3
3
  end