drg_material_icons 0.1.1 → 0.2.0

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
  SHA256:
3
- metadata.gz: d097d3bdda396fd2bc6519e0c2bbb9a03cab07a0b74631f6dfdeec9a11bd6ce9
4
- data.tar.gz: ca6fe802b4198c5be83453bae3bfd91d8c97e6adf020d6979ac8528b71f95b70
3
+ metadata.gz: 9babfbae804d9f3c18d1acf22eb5ee72019af583a6ad7182f8dafd302fd470d6
4
+ data.tar.gz: 71799425823a2249974b919c27e29346b67f11d090c6e289cceda88fdc2536f6
5
5
  SHA512:
6
- metadata.gz: 10348194986486a72c354aa0c201a328ce10322e2a14a752fd29af7d15b0355696c58cf13cacb81568e4891e0b077d7c349891222a08ab3ba98c9050df45bc5e
7
- data.tar.gz: 5947f29eb181954ca1e51735191b92211f18e97509864538e105ac149696322542853ba2c06d9d9674d9850e6da0f6bcb25e706ab9cff1fee7446f83ea26d403
6
+ metadata.gz: fcb53cfb447be34ae21a32b1d7981f6355b0115398093b18bfcb7a3c0e9f2f9c83d6cd56b7aa4868d19f8202b84d6757213bf9c7a5b4ba3b649b9bfb42e8be52
7
+ data.tar.gz: d2d3e6faa6f6f47d75e2cf634b611c2bccde0905a2f5cc9da14c727adf25a9bfdb7a33f28bfdf536af32b9c4ffc2dbcf82df9ee1e08cde62bc146860f566aa0f
data/README.md CHANGED
@@ -16,7 +16,7 @@ with drg_material_icons gem.
16
16
 
17
17
  Add this code to your Gemfile:
18
18
  ```ruby
19
- gem "drg_material_fonts"
19
+ gem "drg_material_icons"
20
20
  ```
21
21
 
22
22
  and run `bundle install`.
@@ -27,7 +27,7 @@ In your `application.css`, include the css file:
27
27
 
28
28
  ```css
29
29
  /*
30
- *= require drg_material_fonts
30
+ *= require drg_material_icons
31
31
  */
32
32
  ```
33
33
  Then restart your webserver if it was previously running.
@@ -64,6 +64,12 @@ mi_icon "photo_camera-o", text: "Get started"
64
64
  # => Get started <i class="mi-o mi-photo_camera">Get started</i>
65
65
  ```
66
66
 
67
+ Support for spinning icons.
68
+ ```ruby
69
+ mi_icon "settings-o spin"
70
+ # => <i class="mi-o mi-settings mi-spin"></i>
71
+ ```
72
+
67
73
  There is also support for colored icons.
68
74
  ```ruby
69
75
  mi_icon "photo_camera red"