rails_material_design_icons 0.7.0 → 6.5.95

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
  SHA256:
3
- metadata.gz: cecf7e58383db95ce119314b6d2abf1eff80b1e1fe47062ffb5b4e654fb8ef7a
4
- data.tar.gz: 49a5c71ca06b30bc4a84870949dfb13ba9bc60e3cf05f828a27079e2188e2c38
3
+ metadata.gz: 66e56acb3e35a302de73a2c7d1326fdc6aaf29bb03666f6462929359455635cd
4
+ data.tar.gz: a2db98bb28536a25f640e1ce25c32ec59031b78f2476f103fba28aff5c1626e4
5
5
  SHA512:
6
- metadata.gz: b202702da334a7cd5f8844f5230935ebe24ba2de1eb644a41e3cfc59c86486bc6efaf5ca06f211012fb05fb71624c31d7b7251a61d9e8c10ad651b412ef90064
7
- data.tar.gz: 14d02bfd2fd74e0603ae0e9c53e09a395f6f74c7c74d7950679676667910ebf1d9ce0660a46c64a8d888986ac63fc16f59ce12909c0f49dbf62b38d949f78819
6
+ metadata.gz: f8848bff6694b04a230e4f012e18ba8a5d6066095af1502b3e2192a6ff29afb2bc4ee2f27c64c6a43e82c7366b0036f9e908ffb16072800483c8061f6d522f5c
7
+ data.tar.gz: b432165365c2ec3c61cb1ecb3265a5b92cb1793e4df52e15e7184873903508197fc84fcb90a8b0937976e623ca208316a1e6ccadf001de9cc35ae18c3d0663b7
data/CHANGELOG.md CHANGED
@@ -1,25 +1,32 @@
1
1
  ## Changes
2
2
 
3
- # Version 0.1
4
- -The first test release. Material Design Icons version 5.4.55.
3
+ ## [6.5.95] - 2021-12-01
5
4
 
6
- # Version 0.2
7
- -Second version, helpers were not working, so fixed that. Also the name Material Design Icons Rails was already in use on RubyGems, so Rails Material Design Icons it is.
5
+ - Going to follow Material Design Icon versioning for this gem to make it easier to know when to update it.
6
+ - Which means that the version of Material Design Icons and this gem are both now at 6.5.95.
7
+ - Added `mdi` helper method, since mdi_icon (Material Design Icon icon) was bit of an oxymore.
8
+ - Added `mdi_spin` helper method that adds the spin class for your icon.
9
+ ## [0.7.0] - 2021-06-08
8
10
 
9
- # Version 0.3
10
- -Fix Github address and order of version numbers for gem bump command.
11
+ - Was including some unnecessary files in the gem package. So the size of this gem should be a bit smaller now.
12
+ Also updated required Ruby version to 2.5 to be a bit more realistic.
11
13
 
12
- # Version 0.4.0
13
- -Fix license on Rubygems
14
+ # Version 0.6.0
15
+ -Actually fix CSS not being found.
16
+
17
+ ## Note that versions before 0.6.0 don't actually contain the fonts unless you use this gem from git.
14
18
 
15
19
  # Version 0.5.0
16
20
  -Fix CSS not being found.
17
21
 
18
- # Version 0.6.0
19
- -Actually fix CSS not being found.
22
+ # Version 0.4.0
23
+ -Fix license on Rubygems
24
+ # Version 0.3
25
+ -Fix Github address and order of version numbers for gem bump command.
20
26
 
21
- ## Note that versions before 0.6.0 don't actually contain the fonts unless you use this gem from git.
27
+ # Version 0.2
28
+ -Second version, helpers were not working, so fixed that. Also the name Material Design Icons Rails was already in use on RubyGems, so Rails Material Design Icons it is.
22
29
 
23
- ## [0.7.0] - 2021-06-08
30
+ # Version 0.1
31
+ -The first test release. Material Design Icons version 5.4.55.
24
32
 
25
- - Was including some unnecessary files in the gem package. So the size of this gem should be a bit smaller now.
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rails_material_design_icons (0.7.0)
5
- railties (>= 3.2, < 7)
4
+ rails_material_design_icons (6.5.95)
5
+ railties (>= 3.2, < 8)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
@@ -120,4 +120,4 @@ DEPENDENCIES
120
120
  sassc-rails
121
121
 
122
122
  BUNDLED WITH
123
- 2.2.15
123
+ 2.2.22
data/README.md CHANGED
@@ -1,10 +1,10 @@
1
- # rails_material_design_icons
1
+ # Rails Material Design Icons
2
2
 
3
3
  [![Gem Version](http://img.shields.io/gem/v/rails_material_design_icons.svg)](https://rubygems.org/gems/rails_material_design_icons)
4
4
  [![Build Status](https://github.com/sampokuokkanen/rails_material_design_icons/workflows/CI/badge.svg)](https://github.com/sampokuokkanen/rails_material_design_icons/actions?query=workflow%3ACI)
5
5
  [![Gem Downloads](https://img.shields.io/gem/dt/rails_material_design_icons.svg)](https://rubygems.org/gems/rails_material_design_icons)
6
6
 
7
- rails_material_design_icons provides the
7
+ Rails Material Design Icons provides the
8
8
  [Material Design Icons](https://materialdesignicons.com/) web fonts and
9
9
  stylesheets as a Rails engine for use with the asset pipeline.
10
10
 
@@ -54,12 +54,16 @@ add this to your `application.css.sass` file:
54
54
 
55
55
  ### Helpers
56
56
 
57
- There are also some helpers (`fa_icon` and `fa_stacked_icon`) that make your
57
+ There are also some helpers (`mdi` and `mdi_spin`) that make your
58
58
  views _icontastic!_
59
59
 
60
60
  ```ruby
61
- md_icon "sheep"
62
- # => <i class="mdi md-sheep"></i>
61
+ mdi "sheep"
62
+ # => <i class="mdi mdi-sheep"></i>
63
+
64
+ mdi_spin # spinning icons!
65
+ # => <i class="mdi mdi-sheep mdi-spin"></i>
66
+
63
67
  ```
64
68
 
65
69
  ### Deploying to sub-folders