material_icons 2.0.1 → 2.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
  SHA1:
3
- metadata.gz: fc78f2df4dccd7d5516104c68d5c5b9b2224c3c2
4
- data.tar.gz: ec3ddc779ca564c9886abacbcdac68bea776dc93
3
+ metadata.gz: c74535ad2121a9914d38c812f5fe757bfa1f676b
4
+ data.tar.gz: 5978448ddfa9ac9ec5ff741f58158442e1948d05
5
5
  SHA512:
6
- metadata.gz: 2d5f75e101a633afd4c675aa2e1d6f24276a04a046e64bffa2974ed36b4db346d9428d983fff441de8b641e5cef55e0a8bea3e31786d32e5f87f09622e137ff9
7
- data.tar.gz: 088bf46a2d5ad9cb7888867c6788dd0b6e3e243cec94f8b54c296f016f3141aba8fded4a776e943db87e33d0ed0a243c780048a10df93cf53dd429976084a389
6
+ metadata.gz: 12d726f900411eb606aca870fa71402196733b197a2e97f13d80b189fa068c10b3d6c5e9be325022896306fe1523047cac5cc481757b0ccde6ee0f0383aecbb4
7
+ data.tar.gz: 54fb855d59380abb36dbef337543981e6054f25885b8c8e53f491243bc2e77df2fa092a39f624ed8b98a70625b4b82bf57f54860255ef760e47e17f6b46b010b
data/README.md CHANGED
@@ -4,11 +4,11 @@
4
4
 
5
5
  # Material Icons for Rails
6
6
 
7
- [Google Material Icons](https://google.github.io/material-design-icons/) is a +750 set of icons based on Material Design guidelines. With this gem you can add it easily to your Rails projects.
7
+ [Google Material Icons](https://google.github.io/material-design-icons/) is a +900 set of icons based on Material Design guidelines. With this gem you can add it easily to your Rails projects.
8
8
 
9
- ## Google Material Icons v2.1
9
+ ## Google Material Icons v2.2
10
10
 
11
- Google updates Material Icons to version 2.1. It's include 96 new icons!
11
+ Google updates Material Icons to version 2.2. It's include 41 new icons!
12
12
 
13
13
  # Installation
14
14
 
@@ -20,11 +20,17 @@ Then, execute `bundle install`.
20
20
 
21
21
  # CSS
22
22
 
23
- In your `application.css.erb` file you need to reference material icons CSS. There are two versions: ligature or unicode (See [Compatibility](#compatibility) section for more info).
23
+ In your `app/assets/stylesheets/application.css` file you need to reference material icons CSS. There are two versions: ligature or unicode (See [Compatibility](#compatibility) section for more info).
24
24
 
25
- Add this line at top of `application.css.erb` to use ligature:
25
+ Add this line at top of `application.css` to use ligature:
26
26
 
27
- //= require material_icons
27
+ ```css
28
+ /*
29
+ *= require material_icons
30
+ */
31
+ ```
32
+
33
+ **NOTE**: Depending on the comment style of `application.css`, you may need to add `//= require material_icons` instead of the previous line. See [Rails Asset Pipeline](http://guides.rubyonrails.org/asset_pipeline.html#manifest-files-and-directives) for more info.
28
34
 
29
35
  These files provide multiple CSS classes to use in your views. Main classes are:
30
36
 
@@ -32,22 +38,24 @@ These files provide multiple CSS classes to use in your views. Main classes are:
32
38
 
33
39
  Some CSS classes are provided too:
34
40
 
35
- /* Size */
36
- .md-18
37
- .md-24
38
- .md-36
39
- .md-48
40
-
41
- /* Color */
42
- .md-dark
43
- .md-light
44
-
45
- /* Rotation */
46
- .r90
47
- .r180
48
- .r270
49
- .flip-horizontal
50
- .flip-vertical
41
+ ```
42
+ /* Size */
43
+ .md-18
44
+ .md-24
45
+ .md-36
46
+ .md-48
47
+
48
+ /* Color */
49
+ .md-dark
50
+ .md-light
51
+
52
+ /* Rotation */
53
+ .r90
54
+ .r180
55
+ .r270
56
+ .flip-horizontal
57
+ .flip-vertical
58
+ ```
51
59
 
52
60
  Don't forget to see material_icons.css.erb ;).
53
61
 
@@ -56,91 +64,122 @@ Don't forget to see material_icons.css.erb ;).
56
64
  Google Material Icons uses a feature called ligatures. We can define the icon in the text of the HTML tag. Go to [Google Guide](https://google.github.io/material-design-icons/#using-the-icons-in-html) to get more info.
57
65
 
58
66
  An example of icon is:
59
-
60
- <i class="material-icons">face</i>
61
- <i class="material-icons md-36">face</i>
67
+
68
+ ```html
69
+ <i class="material-icons">face</i>
70
+ <i class="material-icons md-36">face</i>
71
+ ```
62
72
 
63
73
  ## Helpers
64
74
 
65
75
  Material Icons provide two helpers to build the HTML code of icons. The methods are `material_icon` and `mi`. These helpers use cascade style to set the icon and options. Using same example:
66
76
 
67
- <%= material_icon.face %>
68
- # <i class="material-icons">face</i>
77
+ ```
78
+ <%= material_icon.face %>
79
+ # <i class="material-icons">face</i>
69
80
 
70
- <%= material_icon.face.md_36 %>
71
- # <i class="material-icons md-36">face</i>
81
+ <%= material_icon.face.md_36 %>
82
+ # <i class="material-icons md-36">face</i>
72
83
 
73
- # This is a special case because the icon name starts with a number. Only
74
- # 3d_rotation has this trouble.
75
- <%= material_icon.three_d_rotation.md_36 %>
76
- # <i class="material-icons md-36">3d_rotation</i>
84
+ # This is a special case because the icon name starts with a number. Only
85
+ # 3d_rotation has this trouble.
86
+ <%= material_icon.three_d_rotation.md_36 %>
87
+ # <i class="material-icons md-36">3d_rotation</i>
77
88
 
78
- # Rotation and custom css class
79
- <%= mi.face.r90.css_class('my_class') %>
80
- # <i class="material-icons r90 my_class">face</i>
89
+ # Rotation and custom css class
90
+ <%= mi.face.r90.css_class('my_class') %>
91
+ # <i class="material-icons r90 my_class">face</i>
92
+ ```
81
93
 
82
94
  Allowed methods are:
83
-
84
- # Rotation methods
85
- r90
86
- r180
87
- r270
88
- flip_horizontal
89
- flip_vertical
90
95
 
91
- # Size methods
92
- md_18
93
- md_24
94
- md_36
95
- md_48
96
+ ```
97
+ # Rotation methods
98
+ r90
99
+ r180
100
+ r270
101
+ flip_horizontal
102
+ flip_vertical
103
+
104
+ # Size methods
105
+ md_18
106
+ md_24
107
+ md_36
108
+ md_48
96
109
 
97
- # Add some classes to the icon
98
- css_class('classes')
110
+ # Add some classes to the icon
111
+ css_class('classes')
99
112
 
100
- # Add style to the icon
101
- style('margin-top: 5px;')
113
+ # Add style to the icon
114
+ style('margin-top: 5px;')
102
115
 
103
- # Add some HTML attributes to an icon. This method receive a Hash
104
- html({ data: { id: 1 } })
116
+ # Add some HTML attributes to an icon. This method receive a Hash
117
+ html({ data: { id: 1 } })
118
+ ```
105
119
 
106
120
  Remember this is a helper, you always can use HTML syntax ;).
107
121
 
122
+ # Slim templating engine
123
+
124
+ If you are using [Slim templating engine](http://slim-lang.com/) in your Rails application, use double equal `==` method to render icons or the content won't be marked as HTML safe. We are working on this issue, because we use `content_tag` and it sets the text as HTML safe (see [ActionView::Helpers::TagHelper line 146](https://github.com/rails/rails/blob/4-2-stable/actionview/lib/action_view/helpers/tag_helper.rb#L146)).
125
+
126
+ ```
127
+ p.text
128
+ == material_icon.search.md_18
129
+ ```
130
+
131
+ Reference [#9](https://github.com/Angelmmiguel/material_icons/issues/9)
132
+
108
133
  # Compatibility
109
134
 
110
- Ligature feature requires a supported browser:
135
+ Ligature feature requires a supported browser:
136
+
137
+ Browser | Version
138
+ ---- | ----
139
+ Google Chrome | >= 11
140
+ Mozilla Firefox | >= 3.5
141
+ Apple Safari | >= 5
142
+ Microsoft IE | >= 10
143
+ Opera | >= 15
144
+ Apple MobileSafari | >= iOS 4.2
145
+ Android Browser | >= 3.0
146
+
147
+ To increase compatibility you can use Unicode version of the library. To set Unicode icons, you need to change the line to load ligature CSS file on `app/assets/stylesheets/application.css` (`*= require material_icons`) to this line:
111
148
 
112
- Google Chrome >= 11
113
- Mozilla Firefox >= 3.5
114
- Apple Safari >= 5
115
- Microsoft IE >= 10
116
- Opera >= 15
117
- Apple MobileSafari >= iOS 4.2
118
- Android Browser >= 3.0
149
+ ```css
150
+ /*
151
+ *= require material_icons_unicode
152
+ */
153
+ ```
119
154
 
120
- To increase compatibility you can use Unicode version of the library. To set Unicode icons, you need to change the line to load ligature CSS file on `application.css.erb` ~> `//= require material_icons` to this line:
155
+ **NOTE**: Depending on the comment style of `application.css`, you may need to add `//= require material_icons_unicode` instead of the previous line. See [Rails Asset Pipeline](http://guides.rubyonrails.org/asset_pipeline.html#manifest-files-and-directives) for more info.
121
156
 
122
- //= require material_icons_unicode
157
+ Next, you need to specify the helper to use unicode because it uses ligatures by default. Create an initializer file on `config/initializers/material_icons.rb` and set this content:
123
158
 
124
- Next, you need to specify the helper to use unicode because it uses ligatures by default. Create an initializer file on `config/initializers/material_icon.rb` and set this content:
125
-
126
- # Initialize material icons setup
127
- MaterialIcons.setup do |config|
128
- config.unicode = true
129
- end
159
+ ```ruby
160
+ # Initialize material icons setup
161
+ MaterialIcons.setup do |config|
162
+ config.unicode = true
163
+ end
164
+ ```
130
165
 
131
166
  The [Helpers](#helpers) has the same syntax.
132
167
 
133
168
  Now, the text inside of HTML tag is the CSS class! CSS Icon classes use underscores.
134
169
 
135
- <i class="material-icons face"></i>
136
- <i class="mi md-36 face"></i>
137
- <i class="mi add_box"></i>
138
- <i class="mi three_d_rotation"></i>
170
+ ```html
171
+ <i class="material-icons face"></i>
172
+ <i class="mi md-36 face"></i>
173
+ <i class="mi add_box"></i>
174
+ <i class="mi three_d_rotation"></i>
175
+ ```
139
176
 
140
177
  This version increase the size of the CSS file too. To see the difference, these are the size for uncompressed CSS files:
141
178
 
142
- material_icons.css.erb 3 KB
143
- material_icons_unicode.css.erb 68 KB
179
+ File | Size
180
+ ---- | ----
181
+ material_icons.css.erb | 3 KB
182
+ material_icons_unicode.css.erb | 68 KB
144
183
 
145
184
  # Tested on
146
185
 
@@ -162,7 +201,7 @@ Rails versions:
162
201
 
163
202
  # They are using Material icons for Rails :)
164
203
 
165
- * [Materialup.com](http://www.materialup.com): a big community to share, discover and learn about Material Design.
204
+ * [Materialup.com](http://www.materialup.com): a big community to share, discover and learn about Material Design.
166
205
 
167
206
  # License
168
207
 
@@ -503,6 +503,10 @@
503
503
  .mi.border_vertical:before {
504
504
  content: '\e233';
505
505
  }
506
+ .material-icons.branding_watermark:before,
507
+ .mi.branding_watermark:before {
508
+ content: '\e06b';
509
+ }
506
510
  .material-icons.brightness_1:before,
507
511
  .mi.brightness_1:before {
508
512
  content: '\e3a6';
@@ -555,6 +559,10 @@
555
559
  .mi.brush:before {
556
560
  content: '\e3ae';
557
561
  }
562
+ .material-icons.bubble_chart:before,
563
+ .mi.bubble_chart:before {
564
+ content: '\e6dd';
565
+ }
558
566
  .material-icons.bug_report:before,
559
567
  .mi.bug_report:before {
560
568
  content: '\e868';
@@ -563,6 +571,10 @@
563
571
  .mi.build:before {
564
572
  content: '\e869';
565
573
  }
574
+ .material-icons.burst_mode:before,
575
+ .mi.burst_mode:before {
576
+ content: '\e43c';
577
+ }
566
578
  .material-icons.business:before,
567
579
  .mi.business:before {
568
580
  content: '\e0af';
@@ -611,6 +623,10 @@
611
623
  .mi.call_split:before {
612
624
  content: '\e0b6';
613
625
  }
626
+ .material-icons.call_to_action:before,
627
+ .mi.call_to_action:before {
628
+ content: '\e06c';
629
+ }
614
630
  .material-icons.camera:before,
615
631
  .mi.camera:before {
616
632
  content: '\e3af';
@@ -927,6 +943,14 @@
927
943
  .mi.delete:before {
928
944
  content: '\e872';
929
945
  }
946
+ .material-icons.delete_forever:before,
947
+ .mi.delete_forever:before {
948
+ content: '\e92b';
949
+ }
950
+ .material-icons.delete_sweep:before,
951
+ .mi.delete_sweep:before {
952
+ content: '\e16c';
953
+ }
930
954
  .material-icons.description:before,
931
955
  .mi.description:before {
932
956
  content: '\e873';
@@ -1027,6 +1051,14 @@
1027
1051
  .mi.do_not_disturb_alt:before {
1028
1052
  content: '\e611';
1029
1053
  }
1054
+ .material-icons.do_not_disturb_off:before,
1055
+ .mi.do_not_disturb_off:before {
1056
+ content: '\e643';
1057
+ }
1058
+ .material-icons.do_not_disturb_on:before,
1059
+ .mi.do_not_disturb_on:before {
1060
+ content: '\e644';
1061
+ }
1030
1062
  .material-icons.dock:before,
1031
1063
  .mi.dock:before {
1032
1064
  content: '\e30e';
@@ -1099,6 +1131,14 @@
1099
1131
  .mi.error_outline:before {
1100
1132
  content: '\e001';
1101
1133
  }
1134
+ .material-icons.euro_symbol:before,
1135
+ .mi.euro_symbol:before {
1136
+ content: '\e926';
1137
+ }
1138
+ .material-icons.ev_station:before,
1139
+ .mi.ev_station:before {
1140
+ content: '\e56d';
1141
+ }
1102
1142
  .material-icons.event:before,
1103
1143
  .mi.event:before {
1104
1144
  content: '\e878';
@@ -1187,6 +1227,14 @@
1187
1227
  .mi.favorite_border:before {
1188
1228
  content: '\e87e';
1189
1229
  }
1230
+ .material-icons.featured_play_list:before,
1231
+ .mi.featured_play_list:before {
1232
+ content: '\e06d';
1233
+ }
1234
+ .material-icons.featured_video:before,
1235
+ .mi.featured_video:before {
1236
+ content: '\e06e';
1237
+ }
1190
1238
  .material-icons.feedback:before,
1191
1239
  .mi.feedback:before {
1192
1240
  content: '\e87f';
@@ -1311,6 +1359,10 @@
1311
1359
  .mi.fingerprint:before {
1312
1360
  content: '\e90d';
1313
1361
  }
1362
+ .material-icons.first_page:before,
1363
+ .mi.first_page:before {
1364
+ content: '\e5dc';
1365
+ }
1314
1366
  .material-icons.fitness_center:before,
1315
1367
  .mi.fitness_center:before {
1316
1368
  content: '\eb43';
@@ -1507,6 +1559,10 @@
1507
1559
  .mi.functions:before {
1508
1560
  content: '\e24a';
1509
1561
  }
1562
+ .material-icons.g_translate:before,
1563
+ .mi.g_translate:before {
1564
+ content: '\e927';
1565
+ }
1510
1566
  .material-icons.gamepad:before,
1511
1567
  .mi.gamepad:before {
1512
1568
  content: '\e30f';
@@ -1831,6 +1887,10 @@
1831
1887
  .mi.laptop_windows:before {
1832
1888
  content: '\e321';
1833
1889
  }
1890
+ .material-icons.last_page:before,
1891
+ .mi.last_page:before {
1892
+ content: '\e5dd';
1893
+ }
1834
1894
  .material-icons.launch:before,
1835
1895
  .mi.launch:before {
1836
1896
  content: '\e895';
@@ -2087,6 +2147,10 @@
2087
2147
  .mi.loupe:before {
2088
2148
  content: '\e402';
2089
2149
  }
2150
+ .material-icons.low_priority:before,
2151
+ .mi.low_priority:before {
2152
+ content: '\e16d';
2153
+ }
2090
2154
  .material-icons.loyalty:before,
2091
2155
  .mi.loyalty:before {
2092
2156
  content: '\e89a';
@@ -2151,6 +2215,10 @@
2151
2215
  .mi.mode_edit:before {
2152
2216
  content: '\e254';
2153
2217
  }
2218
+ .material-icons.monetization_on:before,
2219
+ .mi.monetization_on:before {
2220
+ content: '\e263';
2221
+ }
2154
2222
  .material-icons.money_off:before,
2155
2223
  .mi.money_off:before {
2156
2224
  content: '\e25c';
@@ -2203,6 +2271,10 @@
2203
2271
  .mi.movie_filter:before {
2204
2272
  content: '\e43a';
2205
2273
  }
2274
+ .material-icons.multiline_chart:before,
2275
+ .mi.multiline_chart:before {
2276
+ content: '\e6df';
2277
+ }
2206
2278
  .material-icons.music_note:before,
2207
2279
  .mi.music_note:before {
2208
2280
  content: '\e405';
@@ -2279,6 +2351,10 @@
2279
2351
  .mi.not_interested:before {
2280
2352
  content: '\e033';
2281
2353
  }
2354
+ .material-icons.note:before,
2355
+ .mi.note:before {
2356
+ content: '\e06f';
2357
+ }
2282
2358
  .material-icons.note_add:before,
2283
2359
  .mi.note_add:before {
2284
2360
  content: '\e89c';
@@ -2555,6 +2631,14 @@
2555
2631
  .mi.picture_in_picture_alt:before {
2556
2632
  content: '\e911';
2557
2633
  }
2634
+ .material-icons.pie_chart:before,
2635
+ .mi.pie_chart:before {
2636
+ content: '\e6c4';
2637
+ }
2638
+ .material-icons.pie_chart_outlined:before,
2639
+ .mi.pie_chart_outlined:before {
2640
+ content: '\e6c5';
2641
+ }
2558
2642
  .material-icons.pin_drop:before,
2559
2643
  .mi.pin_drop:before {
2560
2644
  content: '\e55e';
@@ -2639,6 +2723,10 @@
2639
2723
  .mi.print:before {
2640
2724
  content: '\e8ad';
2641
2725
  }
2726
+ .material-icons.priority_high:before,
2727
+ .mi.priority_high:before {
2728
+ content: '\e645';
2729
+ }
2642
2730
  .material-icons.public:before,
2643
2731
  .mi.public:before {
2644
2732
  content: '\e80b';
@@ -2727,6 +2815,10 @@
2727
2815
  .mi.remove_red_eye:before {
2728
2816
  content: '\e417';
2729
2817
  }
2818
+ .material-icons.remove_shopping_cart:before,
2819
+ .mi.remove_shopping_cart:before {
2820
+ content: '\e928';
2821
+ }
2730
2822
  .material-icons.reorder:before,
2731
2823
  .mi.reorder:before {
2732
2824
  content: '\e8fe';
@@ -2771,6 +2863,10 @@
2771
2863
  .mi.report_problem:before {
2772
2864
  content: '\e8b2';
2773
2865
  }
2866
+ .material-icons.restaurant:before,
2867
+ .mi.restaurant:before {
2868
+ content: '\e56c';
2869
+ }
2774
2870
  .material-icons.restaurant_menu:before,
2775
2871
  .mi.restaurant_menu:before {
2776
2872
  content: '\e561';
@@ -2779,6 +2875,10 @@
2779
2875
  .mi.restore:before {
2780
2876
  content: '\e8b3';
2781
2877
  }
2878
+ .material-icons.restore_page:before,
2879
+ .mi.restore_page:before {
2880
+ content: '\e929';
2881
+ }
2782
2882
  .material-icons.ring_volume:before,
2783
2883
  .mi.ring_volume:before {
2784
2884
  content: '\e0d1';
@@ -2815,6 +2915,10 @@
2815
2915
  .mi.rowing:before {
2816
2916
  content: '\e921';
2817
2917
  }
2918
+ .material-icons.rss_feed:before,
2919
+ .mi.rss_feed:before {
2920
+ content: '\e0e5';
2921
+ }
2818
2922
  .material-icons.rv_hookup:before,
2819
2923
  .mi.rv_hookup:before {
2820
2924
  content: '\e642';
@@ -2883,6 +2987,26 @@
2883
2987
  .mi.send:before {
2884
2988
  content: '\e163';
2885
2989
  }
2990
+ .material-icons.sentiment_dissatisfied:before,
2991
+ .mi.sentiment_dissatisfied:before {
2992
+ content: '\e811';
2993
+ }
2994
+ .material-icons.sentiment_neutral:before,
2995
+ .mi.sentiment_neutral:before {
2996
+ content: '\e812';
2997
+ }
2998
+ .material-icons.sentiment_satisfied:before,
2999
+ .mi.sentiment_satisfied:before {
3000
+ content: '\e813';
3001
+ }
3002
+ .material-icons.sentiment_very_dissatisfied:before,
3003
+ .mi.sentiment_very_dissatisfied:before {
3004
+ content: '\e814';
3005
+ }
3006
+ .material-icons.sentiment_very_satisfied:before,
3007
+ .mi.sentiment_very_satisfied:before {
3008
+ content: '\e815';
3009
+ }
2886
3010
  .material-icons.settings:before,
2887
3011
  .mi.settings:before {
2888
3012
  content: '\e8b8';
@@ -2979,6 +3103,10 @@
2979
3103
  .mi.short_text:before {
2980
3104
  content: '\e261';
2981
3105
  }
3106
+ .material-icons.show_chart:before,
3107
+ .mi.show_chart:before {
3108
+ content: '\e6e1';
3109
+ }
2982
3110
  .material-icons.shuffle:before,
2983
3111
  .mi.shuffle:before {
2984
3112
  content: '\e043';
@@ -3091,6 +3219,10 @@
3091
3219
  .mi.speaker_notes:before {
3092
3220
  content: '\e8cd';
3093
3221
  }
3222
+ .material-icons.speaker_notes_off:before,
3223
+ .mi.speaker_notes_off:before {
3224
+ content: '\e92a';
3225
+ }
3094
3226
  .material-icons.speaker_phone:before,
3095
3227
  .mi.speaker_phone:before {
3096
3228
  content: '\e0d2';
@@ -3155,6 +3287,10 @@
3155
3287
  .mi.straighten:before {
3156
3288
  content: '\e41c';
3157
3289
  }
3290
+ .material-icons.streetview:before,
3291
+ .mi.streetview:before {
3292
+ content: '\e56e';
3293
+ }
3158
3294
  .material-icons.strikethrough_s:before,
3159
3295
  .mi.strikethrough_s:before {
3160
3296
  content: '\e257';
@@ -3183,6 +3319,10 @@
3183
3319
  .mi.subtitles:before {
3184
3320
  content: '\e048';
3185
3321
  }
3322
+ .material-icons.subway:before,
3323
+ .mi.subway:before {
3324
+ content: '\e56f';
3325
+ }
3186
3326
  .material-icons.supervisor_account:before,
3187
3327
  .mi.supervisor_account:before {
3188
3328
  content: '\e8d3';
@@ -3327,6 +3467,10 @@
3327
3467
  .mi.timer_off:before {
3328
3468
  content: '\e426';
3329
3469
  }
3470
+ .material-icons.title:before,
3471
+ .mi.title:before {
3472
+ content: '\e264';
3473
+ }
3330
3474
  .material-icons.toc:before,
3331
3475
  .mi.toc:before {
3332
3476
  content: '\e8de';
@@ -3359,6 +3503,18 @@
3359
3503
  .mi.traffic:before {
3360
3504
  content: '\e565';
3361
3505
  }
3506
+ .material-icons.train:before,
3507
+ .mi.train:before {
3508
+ content: '\e570';
3509
+ }
3510
+ .material-icons.tram:before,
3511
+ .mi.tram:before {
3512
+ content: '\e571';
3513
+ }
3514
+ .material-icons.transfer_within_a_station:before,
3515
+ .mi.transfer_within_a_station:before {
3516
+ content: '\e572';
3517
+ }
3362
3518
  .material-icons.transform:before,
3363
3519
  .mi.transform:before {
3364
3520
  content: '\e428';
@@ -3439,6 +3595,14 @@
3439
3595
  .mi.vibration:before {
3440
3596
  content: '\e62d';
3441
3597
  }
3598
+ .material-icons.video_call:before,
3599
+ .mi.video_call:before {
3600
+ content: '\e070';
3601
+ }
3602
+ .material-icons.video_label:before,
3603
+ .mi.video_label:before {
3604
+ content: '\e071';
3605
+ }
3442
3606
  .material-icons.video_library:before,
3443
3607
  .mi.video_library:before {
3444
3608
  content: '\e04a';
@@ -3,6 +3,6 @@
3
3
  #
4
4
  module MaterialIcons
5
5
  # Version for the library and the gem
6
- MATERIAL_ICONS_VERSION = '2.1.0'
7
- VERSION = '2.0.1'
6
+ MATERIAL_ICONS_VERSION = '2.2.2'
7
+ VERSION = '2.2.0'
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: material_icons
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Angel M Miguel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-01-29 00:00:00.000000000 Z
11
+ date: 2016-03-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties