motion-awesome 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,3 @@
1
1
  module MotionAwesome
2
- VERSION = '0.0.6'
2
+ VERSION = '0.0.7'
3
3
  end
@@ -1,6 +1,6 @@
1
1
  describe MotionAwesome do
2
-
3
- describe "#label" do
2
+
3
+ describe "#label" do
4
4
  it "builds a simple label correctly" do
5
5
  comp = MotionAwesome.label( :flag ) do |label|
6
6
  label.class.should == UILabel
@@ -9,85 +9,85 @@ describe MotionAwesome do
9
9
  end
10
10
 
11
11
  it "builds a text label correctly" do
12
- comp = MotionAwesome.label( :flag, text:%q(Bozo!) ) do |label|
12
+ comp = MotionAwesome.label( :flag, text:"Bozo!" ) do |label|
13
13
  label.class.should == UILabel
14
14
  end
15
15
  comp.text.should == "\xEF\x80\xA4 Bozo!"
16
16
  end
17
17
 
18
18
  it "builds a text label with all the fixins correctly" do
19
- comp = MotionAwesome.label( :flag, text:%q(Bozo!), color: UIColor.redColor ) do |label|
19
+ comp = MotionAwesome.label( :flag, text:"Bozo!", color: UIColor.redColor ) do |label|
20
20
  label.color = UIColor.greenColor
21
- label.font = UIFont.fontWithName( 'copperplate', size:40 )
21
+ label.font = UIFont.fontWithName( 'copperplate', size:40 )
22
22
  label.class.should == UILabel
23
23
  end
24
24
  comp.text.should == "\xEF\x80\xA4 Bozo!"
25
25
  attrs = comp.attributedText
26
26
  attrs.string.should == "\xEF\x80\xA4 Bozo!"
27
-
28
- attrs.enumerateAttributesInRange( (0...1),
29
- options:NSAttributedStringEnumerationReverse,
30
- usingBlock:->(attrs, range, stop) {
27
+
28
+ attrs.enumerateAttributesInRange( (0...1),
29
+ options:NSAttributedStringEnumerationReverse,
30
+ usingBlock:->(attrs, range, stop) {
31
31
  attrs['NSColor'].should == UIColor.redColor
32
32
  attrs['NSFont'].familyName.should == 'FontAwesome'
33
33
  }
34
34
  )
35
- attrs.enumerateAttributesInRange( (2..attrs.string.size-1),
36
- options:NSAttributedStringEnumerationReverse,
35
+ attrs.enumerateAttributesInRange( (2..attrs.string.size-1),
36
+ options:NSAttributedStringEnumerationReverse,
37
37
  usingBlock:->(attrs, range, stop) {
38
38
  attrs['NSColor'].should == UIColor.greenColor
39
39
  attrs['NSFont'].familyName.should == 'Copperplate'
40
40
  attrs['NSFont'].pointSize.should == 40
41
41
  }
42
- )
42
+ )
43
43
  end
44
-
44
+
45
45
  it 'raises an error if no icon is found' do
46
- lambda {
46
+ lambda {
47
47
  MotionAwesome.label( :bozo )
48
48
  }.should.raise(MotionAwesome::InvalidAwesomeIconError)
49
- end
49
+ end
50
50
  end
51
-
51
+
52
52
  describe '#button' do
53
53
  it 'build a round button correctly' do
54
- comp = MotionAwesome.button( :flag, text:%q(Hello World!) ) do |button|
54
+ comp = MotionAwesome.button( :flag, text:"Hello World!" ) do |button|
55
55
  button.class.should == UIRoundedRectButton
56
56
  end
57
57
  comp.attributedTitleForState(UIControlStateNormal).string.should == "\xEF\x80\xA4 Hello World!"
58
58
  end
59
-
59
+
60
60
  it 'build a cust button correctly' do
61
- comp = MotionAwesome.button( :flag, type: :custom, text:%q(Bumblebee Tuna) ) do |button|
61
+ comp = MotionAwesome.button( :flag, type: :custom, text:"Bumblebee Tuna" ) do |button|
62
62
  button.class.should == UIButton
63
63
  end
64
64
  comp.attributedTitleForState(UIControlStateNormal).string.should == "\xEF\x80\xA4 Bumblebee Tuna"
65
65
  end
66
-
66
+
67
67
  it "builds a button with all the fixins correctly" do
68
- comp = MotionAwesome.button( :flag, text:%q(Bozo!), color: UIColor.redColor ) do |button|
68
+ comp = MotionAwesome.button( :flag, text:"Bozo!", color: UIColor.redColor ) do |button|
69
69
  button.titleLabel.textColor = UIColor.greenColor
70
70
  button.titleLabel.font = UIFont.fontWithName( "Vermin Vibes Out Of Ink", size:55 )
71
71
  end
72
-
72
+
73
73
  attrs = comp.attributedTitleForState(UIControlStateNormal)
74
74
  attrs.string.should == "\xEF\x80\xA4 Bozo!"
75
-
75
+
76
76
  attrs.enumerateAttributesInRange( (0...1),
77
- options:NSAttributedStringEnumerationReverse,
78
- usingBlock:->(attrs, range, stop) {
77
+ options:NSAttributedStringEnumerationReverse,
78
+ usingBlock:->(attrs, range, stop) {
79
79
  attrs['NSColor'].should == UIColor.redColor
80
80
  attrs['NSFont'].familyName.should == 'FontAwesome'
81
81
  }
82
82
  )
83
- # attrs.enumerateAttributesInRange( (2..attrs.string.size-1),
84
- # options:NSAttributedStringEnumerationReverse,
83
+ # attrs.enumerateAttributesInRange( (2..attrs.string.size-1),
84
+ # options:NSAttributedStringEnumerationReverse,
85
85
  # usingBlock:->(attrs, range, stop) {
86
86
  # # attrs['NSColor'].should == UIColor.greenColor
87
87
  # # attrs['NSFont'].familyName.should == 'Copperplate'
88
88
  # # attrs['NSFont'].pointSize.should == 40
89
89
  # }
90
- # )
91
- end
90
+ # )
91
+ end
92
92
  end
93
93
  end
metadata CHANGED
@@ -1,69 +1,69 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: motion-awesome
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fernand Galiana
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-11-26 00:00:00.000000000 Z
11
+ date: 2017-10-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '>='
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: plist
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - '>='
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - '>='
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: css_parser
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - '>='
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - '>='
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: motion-map
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - '>='
59
+ - - ">="
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0'
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - '>='
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  description: FontAwesomess for IOS apps
@@ -73,7 +73,7 @@ executables: []
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
- - .gitignore
76
+ - ".gitignore"
77
77
  - Gemfile
78
78
  - Gemfile.lock
79
79
  - README.md
@@ -86,9 +86,7 @@ files:
86
86
  - app/controllers/e.rb
87
87
  - app/controllers/z.rb
88
88
  - lib/assets/fontawesome-webfont.ttf
89
- - lib/assets/fontawesome-webfont.ttf.old
90
89
  - lib/assets/fontawesome.plist
91
- - lib/assets/fontawesome.plist.old
92
90
  - lib/motion-awesome.rb
93
91
  - lib/motion-awesome/awesome.rb
94
92
  - lib/motion-awesome/core_ext/ui_label.rb
@@ -108,17 +106,17 @@ require_paths:
108
106
  - lib
109
107
  required_ruby_version: !ruby/object:Gem::Requirement
110
108
  requirements:
111
- - - '>='
109
+ - - ">="
112
110
  - !ruby/object:Gem::Version
113
111
  version: '0'
114
112
  required_rubygems_version: !ruby/object:Gem::Requirement
115
113
  requirements:
116
- - - '>='
114
+ - - ">="
117
115
  - !ruby/object:Gem::Version
118
116
  version: '0'
119
117
  requirements: []
120
118
  rubyforge_project:
121
- rubygems_version: 2.0.3
119
+ rubygems_version: 2.4.5.1
122
120
  signing_key:
123
121
  specification_version: 4
124
122
  summary: Port of the most excellent FontAwesome lib to IOS
@@ -1,630 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>icon-adjust</key>
6
- <string>0xf042</string>
7
- <key>icon-align-center</key>
8
- <string>0xf037</string>
9
- <key>icon-align-justify</key>
10
- <string>0xf039</string>
11
- <key>icon-align-left</key>
12
- <string>0xf036</string>
13
- <key>icon-align-right</key>
14
- <string>0xf038</string>
15
- <key>icon-ambulance</key>
16
- <string>0xf0f9</string>
17
- <key>icon-anchor</key>
18
- <string>0xf13d</string>
19
- <key>icon-angle-down</key>
20
- <string>0xf107</string>
21
- <key>icon-angle-left</key>
22
- <string>0xf104</string>
23
- <key>icon-angle-right</key>
24
- <string>0xf105</string>
25
- <key>icon-angle-up</key>
26
- <string>0xf106</string>
27
- <key>icon-arrow-down</key>
28
- <string>0xf063</string>
29
- <key>icon-arrow-left</key>
30
- <string>0xf060</string>
31
- <key>icon-arrow-right</key>
32
- <string>0xf061</string>
33
- <key>icon-arrow-up</key>
34
- <string>0xf062</string>
35
- <key>icon-asterisk</key>
36
- <string>0xf069</string>
37
- <key>icon-backward</key>
38
- <string>0xf04a</string>
39
- <key>icon-ban-circle</key>
40
- <string>0xf05e</string>
41
- <key>icon-bar-chart</key>
42
- <string>0xf080</string>
43
- <key>icon-barcode</key>
44
- <string>0xf02a</string>
45
- <key>icon-beaker</key>
46
- <string>0xf0c3</string>
47
- <key>icon-beer</key>
48
- <string>0xf0fc</string>
49
- <key>icon-bell</key>
50
- <string>0xf0a2</string>
51
- <key>icon-bell-alt</key>
52
- <string>0xf0f3</string>
53
- <key>icon-bold</key>
54
- <string>0xf032</string>
55
- <key>icon-bolt</key>
56
- <string>0xf0e7</string>
57
- <key>icon-book</key>
58
- <string>0xf02d</string>
59
- <key>icon-bookmark</key>
60
- <string>0xf02e</string>
61
- <key>icon-bookmark-empty</key>
62
- <string>0xf097</string>
63
- <key>icon-briefcase</key>
64
- <string>0xf0b1</string>
65
- <key>icon-building</key>
66
- <string>0xf0f7</string>
67
- <key>icon-bullhorn</key>
68
- <string>0xf0a1</string>
69
- <key>icon-bullseye</key>
70
- <string>0xf140</string>
71
- <key>icon-calendar</key>
72
- <string>0xf073</string>
73
- <key>icon-calendar-empty</key>
74
- <string>0xf133</string>
75
- <key>icon-camera</key>
76
- <string>0xf030</string>
77
- <key>icon-camera-retro</key>
78
- <string>0xf083</string>
79
- <key>icon-caret-down</key>
80
- <string>0xf0d7</string>
81
- <key>icon-caret-left</key>
82
- <string>0xf0d9</string>
83
- <key>icon-caret-right</key>
84
- <string>0xf0da</string>
85
- <key>icon-caret-up</key>
86
- <string>0xf0d8</string>
87
- <key>icon-certificate</key>
88
- <string>0xf0a3</string>
89
- <key>icon-check</key>
90
- <string>0xf046</string>
91
- <key>icon-check-empty</key>
92
- <string>0xf096</string>
93
- <key>icon-check-minus</key>
94
- <string>0xf147</string>
95
- <key>icon-check-sign</key>
96
- <string>0xf14a</string>
97
- <key>icon-chevron-down</key>
98
- <string>0xf078</string>
99
- <key>icon-chevron-left</key>
100
- <string>0xf053</string>
101
- <key>icon-chevron-right</key>
102
- <string>0xf054</string>
103
- <key>icon-chevron-sign-down</key>
104
- <string>0xf13a</string>
105
- <key>icon-chevron-sign-left</key>
106
- <string>0xf137</string>
107
- <key>icon-chevron-sign-right</key>
108
- <string>0xf138</string>
109
- <key>icon-chevron-sign-up</key>
110
- <string>0xf139</string>
111
- <key>icon-chevron-up</key>
112
- <string>0xf077</string>
113
- <key>icon-circle</key>
114
- <string>0xf111</string>
115
- <key>icon-circle-arrow-down</key>
116
- <string>0xf0ab</string>
117
- <key>icon-circle-arrow-left</key>
118
- <string>0xf0a8</string>
119
- <key>icon-circle-arrow-right</key>
120
- <string>0xf0a9</string>
121
- <key>icon-circle-arrow-up</key>
122
- <string>0xf0aa</string>
123
- <key>icon-circle-blank</key>
124
- <string>0xf10c</string>
125
- <key>icon-cloud</key>
126
- <string>0xf0c2</string>
127
- <key>icon-cloud-download</key>
128
- <string>0xf0ed</string>
129
- <key>icon-cloud-upload</key>
130
- <string>0xf0ee</string>
131
- <key>icon-code</key>
132
- <string>0xf121</string>
133
- <key>icon-code-fork</key>
134
- <string>0xf126</string>
135
- <key>icon-coffee</key>
136
- <string>0xf0f4</string>
137
- <key>icon-cog</key>
138
- <string>0xf013</string>
139
- <key>icon-cogs</key>
140
- <string>0xf085</string>
141
- <key>icon-collapse-alt</key>
142
- <string>0xf117</string>
143
- <key>icon-columns</key>
144
- <string>0xf0db</string>
145
- <key>icon-comment</key>
146
- <string>0xf075</string>
147
- <key>icon-comment-alt</key>
148
- <string>0xf0e5</string>
149
- <key>icon-comments</key>
150
- <string>0xf086</string>
151
- <key>icon-comments-alt</key>
152
- <string>0xf0e6</string>
153
- <key>icon-copy</key>
154
- <string>0xf0c5</string>
155
- <key>icon-credit-card</key>
156
- <string>0xf09d</string>
157
- <key>icon-crop</key>
158
- <string>0xf125</string>
159
- <key>icon-css3</key>
160
- <string>0xf13c</string>
161
- <key>icon-cut</key>
162
- <string>0xf0c4</string>
163
- <key>icon-dashboard</key>
164
- <string>0xf0e4</string>
165
- <key>icon-desktop</key>
166
- <string>0xf108</string>
167
- <key>icon-double-angle-down</key>
168
- <string>0xf103</string>
169
- <key>icon-double-angle-left</key>
170
- <string>0xf100</string>
171
- <key>icon-double-angle-right</key>
172
- <string>0xf101</string>
173
- <key>icon-double-angle-up</key>
174
- <string>0xf102</string>
175
- <key>icon-download</key>
176
- <string>0xf01a</string>
177
- <key>icon-download-alt</key>
178
- <string>0xf019</string>
179
- <key>icon-edit</key>
180
- <string>0xf044</string>
181
- <key>icon-edit-sign</key>
182
- <string>0xf14b</string>
183
- <key>icon-eject</key>
184
- <string>0xf052</string>
185
- <key>icon-ellipsis-horizontal</key>
186
- <string>0xf141</string>
187
- <key>icon-ellipsis-vertical</key>
188
- <string>0xf142</string>
189
- <key>icon-envelope</key>
190
- <string>0xf003</string>
191
- <key>icon-envelope-alt</key>
192
- <string>0xf0e0</string>
193
- <key>icon-eraser</key>
194
- <string>0xf12d</string>
195
- <key>icon-exchange</key>
196
- <string>0xf0ec</string>
197
- <key>icon-exclamation</key>
198
- <string>0xf12a</string>
199
- <key>icon-exclamation-sign</key>
200
- <string>0xf06a</string>
201
- <key>icon-expand-alt</key>
202
- <string>0xf116</string>
203
- <key>icon-external-link</key>
204
- <string>0xf08e</string>
205
- <key>icon-external-link-sign</key>
206
- <string>0xf14c</string>
207
- <key>icon-eye-close</key>
208
- <string>0xf070</string>
209
- <key>icon-eye-open</key>
210
- <string>0xf06e</string>
211
- <key>icon-facebook</key>
212
- <string>0xf09a</string>
213
- <key>icon-facebook-sign</key>
214
- <string>0xf082</string>
215
- <key>icon-facetime-video</key>
216
- <string>0xf03d</string>
217
- <key>icon-fast-backward</key>
218
- <string>0xf049</string>
219
- <key>icon-fast-forward</key>
220
- <string>0xf050</string>
221
- <key>icon-fighter-jet</key>
222
- <string>0xf0fb</string>
223
- <key>icon-file</key>
224
- <string>0xf016</string>
225
- <key>icon-file-alt</key>
226
- <string>0xf0f6</string>
227
- <key>icon-film</key>
228
- <string>0xf008</string>
229
- <key>icon-filter</key>
230
- <string>0xf0b0</string>
231
- <key>icon-fire</key>
232
- <string>0xf06d</string>
233
- <key>icon-fire-extinguisher</key>
234
- <string>0xf134</string>
235
- <key>icon-flag</key>
236
- <string>0xf024</string>
237
- <key>icon-flag-alt</key>
238
- <string>0xf11d</string>
239
- <key>icon-flag-checkered</key>
240
- <string>0xf11e</string>
241
- <key>icon-flip-horizontal</key>
242
- <string>0x</string>
243
- <key>icon-flip-vertical</key>
244
- <string>0x</string>
245
- <key>icon-folder-close</key>
246
- <string>0xf07b</string>
247
- <key>icon-folder-close-alt</key>
248
- <string>0xf114</string>
249
- <key>icon-folder-open</key>
250
- <string>0xf07c</string>
251
- <key>icon-folder-open-alt</key>
252
- <string>0xf115</string>
253
- <key>icon-font</key>
254
- <string>0xf031</string>
255
- <key>icon-food</key>
256
- <string>0xf0f5</string>
257
- <key>icon-forward</key>
258
- <string>0xf04e</string>
259
- <key>icon-frown</key>
260
- <string>0xf119</string>
261
- <key>icon-fullscreen</key>
262
- <string>0xf0b2</string>
263
- <key>icon-gamepad</key>
264
- <string>0xf11b</string>
265
- <key>icon-gift</key>
266
- <string>0xf06b</string>
267
- <key>icon-github</key>
268
- <string>0xf09b</string>
269
- <key>icon-github-sign</key>
270
- <string>0xf092</string>
271
- <key>icon-glass</key>
272
- <string>0xf000</string>
273
- <key>icon-globe</key>
274
- <string>0xf0ac</string>
275
- <key>icon-google-plus</key>
276
- <string>0xf0d5</string>
277
- <key>icon-google-plus-sign</key>
278
- <string>0xf0d4</string>
279
- <key>icon-group</key>
280
- <string>0xf0c0</string>
281
- <key>icon-h-sign</key>
282
- <string>0xf0fd</string>
283
- <key>icon-hand-down</key>
284
- <string>0xf0a7</string>
285
- <key>icon-hand-left</key>
286
- <string>0xf0a5</string>
287
- <key>icon-hand-right</key>
288
- <string>0xf0a4</string>
289
- <key>icon-hand-up</key>
290
- <string>0xf0a6</string>
291
- <key>icon-hdd</key>
292
- <string>0xf0a0</string>
293
- <key>icon-headphones</key>
294
- <string>0xf025</string>
295
- <key>icon-heart</key>
296
- <string>0xf004</string>
297
- <key>icon-heart-empty</key>
298
- <string>0xf08a</string>
299
- <key>icon-home</key>
300
- <string>0xf015</string>
301
- <key>icon-hospital</key>
302
- <string>0xf0f8</string>
303
- <key>icon-html5</key>
304
- <string>0xf13b</string>
305
- <key>icon-inbox</key>
306
- <string>0xf01c</string>
307
- <key>icon-indent-left</key>
308
- <string>0xf03b</string>
309
- <key>icon-indent-right</key>
310
- <string>0xf03c</string>
311
- <key>icon-info</key>
312
- <string>0xf129</string>
313
- <key>icon-info-sign</key>
314
- <string>0xf05a</string>
315
- <key>icon-italic</key>
316
- <string>0xf033</string>
317
- <key>icon-key</key>
318
- <string>0xf084</string>
319
- <key>icon-keyboard</key>
320
- <string>0xf11c</string>
321
- <key>icon-laptop</key>
322
- <string>0xf109</string>
323
- <key>icon-leaf</key>
324
- <string>0xf06c</string>
325
- <key>icon-legal</key>
326
- <string>0xf0e3</string>
327
- <key>icon-lemon</key>
328
- <string>0xf094</string>
329
- <key>icon-level-down</key>
330
- <string>0xf149</string>
331
- <key>icon-level-up</key>
332
- <string>0xf148</string>
333
- <key>icon-lightbulb</key>
334
- <string>0xf0eb</string>
335
- <key>icon-link</key>
336
- <string>0xf0c1</string>
337
- <key>icon-linkedin</key>
338
- <string>0xf0e1</string>
339
- <key>icon-linkedin-sign</key>
340
- <string>0xf08c</string>
341
- <key>icon-list</key>
342
- <string>0xf03a</string>
343
- <key>icon-list-alt</key>
344
- <string>0xf022</string>
345
- <key>icon-list-ol</key>
346
- <string>0xf0cb</string>
347
- <key>icon-list-ul</key>
348
- <string>0xf0ca</string>
349
- <key>icon-location-arrow</key>
350
- <string>0xf124</string>
351
- <key>icon-lock</key>
352
- <string>0xf023</string>
353
- <key>icon-magic</key>
354
- <string>0xf0d0</string>
355
- <key>icon-magnet</key>
356
- <string>0xf076</string>
357
- <key>icon-mail-forward</key>
358
- <string>0xf064</string>
359
- <key>icon-mail-reply</key>
360
- <string>0xf112</string>
361
- <key>icon-mail-reply-all</key>
362
- <string>0xf122</string>
363
- <key>icon-map-marker</key>
364
- <string>0xf041</string>
365
- <key>icon-maxcdn</key>
366
- <string>0xf136</string>
367
- <key>icon-medkit</key>
368
- <string>0xf0fa</string>
369
- <key>icon-meh</key>
370
- <string>0xf11a</string>
371
- <key>icon-microphone</key>
372
- <string>0xf130</string>
373
- <key>icon-microphone-off</key>
374
- <string>0xf131</string>
375
- <key>icon-minus</key>
376
- <string>0xf068</string>
377
- <key>icon-minus-sign</key>
378
- <string>0xf056</string>
379
- <key>icon-minus-sign-alt</key>
380
- <string>0xf146</string>
381
- <key>icon-mobile-phone</key>
382
- <string>0xf10b</string>
383
- <key>icon-money</key>
384
- <string>0xf0d6</string>
385
- <key>icon-move</key>
386
- <string>0xf047</string>
387
- <key>icon-music</key>
388
- <string>0xf001</string>
389
- <key>icon-off</key>
390
- <string>0xf011</string>
391
- <key>icon-ok</key>
392
- <string>0xf00c</string>
393
- <key>icon-ok-circle</key>
394
- <string>0xf05d</string>
395
- <key>icon-ok-sign</key>
396
- <string>0xf058</string>
397
- <key>icon-paper-clip</key>
398
- <string>0xf0c6</string>
399
- <key>icon-paste</key>
400
- <string>0xf0ea</string>
401
- <key>icon-pause</key>
402
- <string>0xf04c</string>
403
- <key>icon-pencil</key>
404
- <string>0xf040</string>
405
- <key>icon-phone</key>
406
- <string>0xf095</string>
407
- <key>icon-phone-sign</key>
408
- <string>0xf098</string>
409
- <key>icon-picture</key>
410
- <string>0xf03e</string>
411
- <key>icon-pinterest</key>
412
- <string>0xf0d2</string>
413
- <key>icon-pinterest-sign</key>
414
- <string>0xf0d3</string>
415
- <key>icon-plane</key>
416
- <string>0xf072</string>
417
- <key>icon-play</key>
418
- <string>0xf04b</string>
419
- <key>icon-play-circle</key>
420
- <string>0xf01d</string>
421
- <key>icon-play-sign</key>
422
- <string>0xf144</string>
423
- <key>icon-plus</key>
424
- <string>0xf067</string>
425
- <key>icon-plus-sign</key>
426
- <string>0xf055</string>
427
- <key>icon-plus-sign-alt</key>
428
- <string>0xf0fe</string>
429
- <key>icon-print</key>
430
- <string>0xf02f</string>
431
- <key>icon-pushpin</key>
432
- <string>0xf08d</string>
433
- <key>icon-puzzle-piece</key>
434
- <string>0xf12e</string>
435
- <key>icon-qrcode</key>
436
- <string>0xf029</string>
437
- <key>icon-question</key>
438
- <string>0xf128</string>
439
- <key>icon-question-sign</key>
440
- <string>0xf059</string>
441
- <key>icon-quote-left</key>
442
- <string>0xf10d</string>
443
- <key>icon-quote-right</key>
444
- <string>0xf10e</string>
445
- <key>icon-random</key>
446
- <string>0xf074</string>
447
- <key>icon-refresh</key>
448
- <string>0xf021</string>
449
- <key>icon-remove</key>
450
- <string>0xf00d</string>
451
- <key>icon-remove-circle</key>
452
- <string>0xf05c</string>
453
- <key>icon-remove-sign</key>
454
- <string>0xf057</string>
455
- <key>icon-reorder</key>
456
- <string>0xf0c9</string>
457
- <key>icon-repeat</key>
458
- <string>0xf01e</string>
459
- <key>icon-reply</key>
460
- <string>0xf112</string>
461
- <key>icon-reply-all</key>
462
- <string>0xf122</string>
463
- <key>icon-resize-full</key>
464
- <string>0xf065</string>
465
- <key>icon-resize-horizontal</key>
466
- <string>0xf07e</string>
467
- <key>icon-resize-small</key>
468
- <string>0xf066</string>
469
- <key>icon-resize-vertical</key>
470
- <string>0xf07d</string>
471
- <key>icon-retweet</key>
472
- <string>0xf079</string>
473
- <key>icon-road</key>
474
- <string>0xf018</string>
475
- <key>icon-rocket</key>
476
- <string>0xf135</string>
477
- <key>icon-rotate-180</key>
478
- <string>0x</string>
479
- <key>icon-rotate-270</key>
480
- <string>0x</string>
481
- <key>icon-rotate-90</key>
482
- <string>0x</string>
483
- <key>icon-rotate-left</key>
484
- <string>0xf0e2</string>
485
- <key>icon-rotate-right</key>
486
- <string>0xf01e</string>
487
- <key>icon-rss</key>
488
- <string>0xf09e</string>
489
- <key>icon-rss-sign</key>
490
- <string>0xf143</string>
491
- <key>icon-save</key>
492
- <string>0xf0c7</string>
493
- <key>icon-screenshot</key>
494
- <string>0xf05b</string>
495
- <key>icon-search</key>
496
- <string>0xf002</string>
497
- <key>icon-share</key>
498
- <string>0xf045</string>
499
- <key>icon-share-alt</key>
500
- <string>0xf064</string>
501
- <key>icon-share-sign</key>
502
- <string>0xf14d</string>
503
- <key>icon-shield</key>
504
- <string>0xf132</string>
505
- <key>icon-shopping-cart</key>
506
- <string>0xf07a</string>
507
- <key>icon-sign-blank</key>
508
- <string>0xf0c8</string>
509
- <key>icon-signal</key>
510
- <string>0xf012</string>
511
- <key>icon-signin</key>
512
- <string>0xf090</string>
513
- <key>icon-signout</key>
514
- <string>0xf08b</string>
515
- <key>icon-sitemap</key>
516
- <string>0xf0e8</string>
517
- <key>icon-smile</key>
518
- <string>0xf118</string>
519
- <key>icon-sort</key>
520
- <string>0xf0dc</string>
521
- <key>icon-sort-down</key>
522
- <string>0xf0dd</string>
523
- <key>icon-sort-up</key>
524
- <string>0xf0de</string>
525
- <key>icon-spinner</key>
526
- <string>0xf110</string>
527
- <key>icon-star</key>
528
- <string>0xf005</string>
529
- <key>icon-star-empty</key>
530
- <string>0xf006</string>
531
- <key>icon-star-half</key>
532
- <string>0xf089</string>
533
- <key>icon-star-half-empty</key>
534
- <string>0xf123</string>
535
- <key>icon-star-half-full</key>
536
- <string>0xf123</string>
537
- <key>icon-step-backward</key>
538
- <string>0xf048</string>
539
- <key>icon-step-forward</key>
540
- <string>0xf051</string>
541
- <key>icon-stethoscope</key>
542
- <string>0xf0f1</string>
543
- <key>icon-stop</key>
544
- <string>0xf04d</string>
545
- <key>icon-strikethrough</key>
546
- <string>0xf0cc</string>
547
- <key>icon-subscript</key>
548
- <string>0xf12c</string>
549
- <key>icon-suitcase</key>
550
- <string>0xf0f2</string>
551
- <key>icon-superscript</key>
552
- <string>0xf12b</string>
553
- <key>icon-table</key>
554
- <string>0xf0ce</string>
555
- <key>icon-tablet</key>
556
- <string>0xf10a</string>
557
- <key>icon-tag</key>
558
- <string>0xf02b</string>
559
- <key>icon-tags</key>
560
- <string>0xf02c</string>
561
- <key>icon-tasks</key>
562
- <string>0xf0ae</string>
563
- <key>icon-terminal</key>
564
- <string>0xf120</string>
565
- <key>icon-text-height</key>
566
- <string>0xf034</string>
567
- <key>icon-text-width</key>
568
- <string>0xf035</string>
569
- <key>icon-th</key>
570
- <string>0xf00a</string>
571
- <key>icon-th-large</key>
572
- <string>0xf009</string>
573
- <key>icon-th-list</key>
574
- <string>0xf00b</string>
575
- <key>icon-thumbs-down</key>
576
- <string>0xf088</string>
577
- <key>icon-thumbs-up</key>
578
- <string>0xf087</string>
579
- <key>icon-ticket</key>
580
- <string>0xf145</string>
581
- <key>icon-time</key>
582
- <string>0xf017</string>
583
- <key>icon-tint</key>
584
- <string>0xf043</string>
585
- <key>icon-trash</key>
586
- <string>0xf014</string>
587
- <key>icon-trophy</key>
588
- <string>0xf091</string>
589
- <key>icon-truck</key>
590
- <string>0xf0d1</string>
591
- <key>icon-twitter</key>
592
- <string>0xf099</string>
593
- <key>icon-twitter-sign</key>
594
- <string>0xf081</string>
595
- <key>icon-umbrella</key>
596
- <string>0xf0e9</string>
597
- <key>icon-underline</key>
598
- <string>0xf0cd</string>
599
- <key>icon-undo</key>
600
- <string>0xf0e2</string>
601
- <key>icon-unlink</key>
602
- <string>0xf127</string>
603
- <key>icon-unlock</key>
604
- <string>0xf09c</string>
605
- <key>icon-unlock-alt</key>
606
- <string>0xf13e</string>
607
- <key>icon-upload</key>
608
- <string>0xf01b</string>
609
- <key>icon-upload-alt</key>
610
- <string>0xf093</string>
611
- <key>icon-user</key>
612
- <string>0xf007</string>
613
- <key>icon-user-md</key>
614
- <string>0xf0f0</string>
615
- <key>icon-volume-down</key>
616
- <string>0xf027</string>
617
- <key>icon-volume-off</key>
618
- <string>0xf026</string>
619
- <key>icon-volume-up</key>
620
- <string>0xf028</string>
621
- <key>icon-warning-sign</key>
622
- <string>0xf071</string>
623
- <key>icon-wrench</key>
624
- <string>0xf0ad</string>
625
- <key>icon-zoom-in</key>
626
- <string>0xf00e</string>
627
- <key>icon-zoom-out</key>
628
- <string>0xf010</string>
629
- </dict>
630
- </plist>