facades 1.0.6 → 1.0.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,12 @@
1
+ module Facades
2
+ module Config
3
+ extend self
4
+
5
+ def icon_definitions
6
+ {
7
+ :font_awesome => File.join(Facades.icon_path, 'font-awesome.yml'),
8
+ :facades => File.join(Facades.icon_path, 'facades.yml')
9
+ }
10
+ end
11
+ end
12
+ end
@@ -48,7 +48,8 @@ module Facades
48
48
 
49
49
  def icon_translations(set)
50
50
  set = set.value if set.respond_to?(:value)
51
- glyphs = Icons.glyph_sets[set] || YAML::load(File.open(File.join(Facades.icon_path, "#{set}.yml")))
51
+ #glyphs = Icons.glyph_sets[set] || YAML::load(File.open(File.join(Facades.icon_path, "#{set}.yml")))
52
+ glyphs = Icons.glyph_sets[set] || YAML::load(File.open(Facades::Config.icon_definitions[set.to_s.underscore.to_sym]))
52
53
  Icons.glyph_sets[set] ||= Hash[glyphs.map{ |k, v| [k.to_s.gsub("_", "-"), v] }]
53
54
  Icons.glyph_sets[set]
54
55
  end
@@ -6,6 +6,7 @@ require 'sass/rails'
6
6
  #
7
7
  module Facades
8
8
  class Engine < Rails::Engine
9
+ config.facades = Facades::Config
9
10
 
10
11
  paths['app/views'] << Facades.view_path
11
12
  paths['app/controllers'] << File.join(Facades.app_path, 'controllers')
@@ -1,3 +1,3 @@
1
1
  module Facades
2
- VERSION = "1.0.6"
2
+ VERSION = "1.0.8"
3
3
  end
data/lib/facades.rb CHANGED
@@ -5,7 +5,7 @@ module Facades
5
5
  extend self
6
6
  autoload :Helpers, 'facades/helpers'
7
7
  autoload :Patterns, 'facades/patterns'
8
-
8
+
9
9
  def app_path
10
10
  File.expand_path("../../app", __FILE__)
11
11
  end
@@ -25,11 +25,12 @@ module Facades
25
25
  def icon_path
26
26
  File.join(File.expand_path("../../src", __FILE__), 'icons')
27
27
  end
28
-
29
28
  end
30
29
 
30
+ require 'facades/config'
31
31
  require 'facades/sass_extensions'
32
32
 
33
+
33
34
  ##
34
35
  # Use the rails pipeline directly unless functioning
35
36
  # in a non-rails environment. Otherwise include the
@@ -1,309 +1,361 @@
1
- glass: 'f000'
2
- music: 'f001'
3
- search: 'f002'
4
- envelope: 'f003'
5
- heart: 'f004'
6
- star: 'f005'
7
- star_empty: 'f006'
8
- user: 'f007'
9
- film: 'f008'
10
- th_large: 'f009'
11
- th: 'f00a'
12
- th_list: 'f00b'
13
- ok: 'f00c'
14
- remove: 'f00d'
15
- zoom_in: 'f00e'
16
- zoom_out: 'f010'
17
- off: 'f011'
18
- signal: 'f012'
19
- cog: 'f013'
20
- trash: 'f014'
21
- home: 'f015'
22
- file: 'f016'
23
- time: 'f017'
24
- road: 'f018'
25
- download_alt: 'f019'
26
- download: 'f01a'
27
- upload: 'f01b'
28
- inbox: 'f01c'
29
- play_circle: 'f01d'
30
- repeat: 'f01e'
31
- refresh: 'f021'
32
- list_alt: 'f022'
33
- lock: 'f023'
34
- flag: 'f024'
35
- headphones: 'f025'
36
- volume_off: 'f026'
37
- volume_down: 'f027'
38
- volume_up: 'f028'
39
- qrcode: 'f029'
40
- barcode: 'f02a'
41
- tag: 'f02b'
42
- tags: 'f02c'
43
- book: 'f02d'
44
- bookmark: 'f02e'
45
- print: 'f02f'
46
- camera: 'f030'
47
- font: 'f031'
48
- bold: 'f032'
49
- italic: 'f033'
50
- text_height: 'f034'
51
- text_width: 'f035'
52
- align_left: 'f036'
53
- align_center: 'f037'
54
- align_right: 'f038'
55
- align_justify: 'f039'
56
- list: 'f03a'
57
- indent_left: 'f03b'
58
- indent_right: 'f03c'
59
- facetime_video: 'f03d'
60
- picture: 'f03e'
61
- pencil: 'f040'
62
- map_marker: 'f041'
63
- adjust: 'f042'
64
- tint: 'f043'
65
- edit: 'f044'
66
- share: 'f045'
67
- check: 'f046'
68
- move: 'f047'
69
- step_backward: 'f048'
70
- fast_backward: 'f049'
71
- backward: 'f04a'
72
- play: 'f04b'
73
- pause: 'f04c'
74
- stop: 'f04d'
75
- forward: 'f04e'
76
- fast_forward: 'f050'
77
- step_forward: 'f051'
78
- eject: 'f052'
79
- chevron_left: 'f053'
80
- chevron_right: 'f054'
81
- plus_sign: 'f055'
82
- minus_sign: 'f056'
83
- remove_sign: 'f057'
84
- ok_sign: 'f058'
85
- question_sign: 'f059'
86
- info_sign: 'f05a'
87
- screenshot: 'f05b'
88
- remove_circle: 'f05c'
89
- ok_circle: 'f05d'
90
- ban_circle: 'f05e'
91
- arrow_left: 'f060'
92
- arrow_right: 'f061'
93
- arrow_up: 'f062'
94
- arrow_down: 'f063'
95
- share_alt: 'f064'
96
- resize_full: 'f065'
97
- resize_small: 'f066'
98
- plus: 'f067'
99
- minus: 'f068'
100
- asterisk: 'f069'
101
- exclamation_sign: 'f06a'
102
- gift: 'f06b'
103
- leaf: 'f06c'
104
- fire: 'f06d'
105
- eye_open: 'f06e'
106
- eye_close: 'f070'
107
- warning_sign: 'f071'
108
- plane: 'f072'
109
- calendar: 'f073'
110
- random: 'f074'
111
- comment: 'f075'
112
- magnet: 'f076'
113
- chevron_up: 'f077'
114
- chevron_down: 'f078'
115
- retweet: 'f079'
116
- shopping_cart: 'f07a'
117
- folder_close: 'f07b'
118
- folder_open: 'f07c'
119
- resize_vertical: 'f07d'
120
- resize_horizontal: 'f07e'
121
- bar_chart: 'f080'
122
- twitter_sign: 'f081'
123
- facebook_sign: 'f082'
124
- camera_retro: 'f083'
125
- key: 'f084'
126
- cogs: 'f085'
127
- comments: 'f086'
128
- thumbs_up: 'f087'
129
- thumbs_down: 'f088'
130
- star_half: 'f089'
131
- heart_empty: 'f08a'
132
- signout: 'f08b'
133
- linkedin_sign: 'f08c'
134
- pushpin: 'f08d'
135
- external_link: 'f08e'
136
- signin: 'f090'
137
- trophy: 'f091'
138
- github_sign: 'f092'
139
- upload_alt: 'f093'
140
- lemon: 'f094'
141
- phone: 'f095'
142
- check_empty: 'f096'
143
- bookmark_empty: 'f097'
144
- phone_sign: 'f098'
145
- twitter: 'f099'
146
- facebook: 'f09a'
147
- github: 'f09b'
148
- unlock: 'f09c'
149
- credit_card: 'f09d'
150
- rss: 'f09e'
151
- hdd: 'f0a0'
152
- bullhorn: 'f0a1'
153
- bell: 'f0a2'
154
- certificate: 'f0a3'
155
- hand_right: 'f0a4'
156
- hand_left: 'f0a5'
157
- hand_up: 'f0a6'
158
- hand_down: 'f0a7'
159
- circle_arrow_left: 'f0a8'
160
- circle_arrow_right: 'f0a9'
161
- circle_arrow_up: 'f0aa'
162
- circle_arrow_down: 'f0ab'
163
- globe: 'f0ac'
164
- wrench: 'f0ad'
165
- tasks: 'f0ae'
166
- filter: 'f0b0'
167
- briefcase: 'f0b1'
168
- fullscreen: 'f0b2'
169
- group: 'f0c0'
170
- link: 'f0c1'
171
- cloud: 'f0c2'
172
- beaker: 'f0c3'
173
- cut: 'f0c4'
174
- copy: 'f0c5'
175
- paper_clip: 'f0c6'
176
- save: 'f0c7'
177
- sign_blank: 'f0c8'
178
- reorder: 'f0c9'
179
- list_ul: 'f0ca'
180
- list_ol: 'f0cb'
181
- strikethrough: 'f0cc'
182
- underline: 'f0cd'
183
- table: 'f0ce'
184
- magic: 'f0d0'
185
- truck: 'f0d1'
186
- pinterest: 'f0d2'
187
- pinterest_sign: 'f0d3'
188
- google_plus_sign: 'f0d4'
189
- google_plus: 'f0d5'
190
- money: 'f0d6'
191
- caret_down: 'f0d7'
192
- caret_up: 'f0d8'
193
- caret_left: 'f0d9'
194
- caret_right: 'f0da'
195
- columns: 'f0db'
196
- sort: 'f0dc'
197
- sort_down: 'f0dd'
198
- sort_up: 'f0de'
199
- envelope_alt: 'f0e0'
200
- linkedin: 'f0e1'
201
- undo: 'f0e2'
202
- legal: 'f0e3'
203
- dashboard: 'f0e4'
204
- comment_alt: 'f0e5'
205
- comments_alt: 'f0e6'
206
- bolt: 'f0e7'
207
- sitemap: 'f0e8'
208
- umbrella: 'f0e9'
209
- paste: 'f0ea'
210
- user_md: 'f0f0'
211
- lightbulb: 'f0eb'
212
- exchange: 'f0ec'
213
- cloud_download: 'f0ed'
214
- cloud_upload: 'f0ee'
215
- user_md: 'f0f0'
216
- stethoscope: 'f0f1'
217
- suitcase: 'f0f2'
218
- bell_alt: 'f0f3'
219
- coffee: 'f0f4'
220
- food: 'f0f5'
221
- file_alt: 'f0f6'
222
- building: 'f0f7'
223
- hospital: 'f0f8'
224
- ambulance: 'f0f9'
225
- medkit: 'f0fa'
226
- fighter_jet: 'f0fb'
227
- beer: 'f0fc'
228
- h_sign: 'f0fd'
229
- plus_sign_alt: 'f0fe'
230
- double_angle_l: 'f100'
231
- double_angle_r: 'f101'
232
- double_angle_u: 'f102'
233
- double_angle_d: 'f103'
234
- angle_left: 'f104'
235
- angle_right: 'f105'
236
- angle_up: 'f106'
237
- angle_down: 'f107'
238
- desktop: 'f108'
239
- laptop: 'f109'
240
- tablet: 'f10a'
241
- mobile_phone: 'f10b'
242
- circle_blank: 'f10c'
243
- quote_left: 'f10d'
244
- quote_right: 'f10e'
245
- spinner: 'f110'
246
- circle: 'f111'
247
- reply: 'f112'
248
- github_alt: 'f113'
249
- folder_close_a: 'f114'
250
- folder_open_al: 'f115'
251
- expand_alt: 'f116'
252
- collapse_alt: 'f117'
253
- smile: 'f118'
254
- frown: 'f119'
255
- meh: 'f11a'
256
- gamepad: 'f11b'
257
- keyboard: 'f11c'
258
- flag_alt: 'f11d'
259
- flag_checkered: 'f11e'
260
- terminal: 'f120'
261
- code: 'f121'
262
- mail_forward: 'f064'
263
- mail_reply: 'f112'
264
- reply_all: 'f122'
265
- mail_reply_all: 'f122'
266
- star_half_empty: 'f123'
267
- star_half_full: 'f123'
268
- location_arrow: 'f124'
269
- rotate_left: 'f0e2'
270
- rotate_right: 'f01e'
271
- crop: 'f125'
272
- code_fork: 'f126'
273
- unlink: 'f127'
274
- question: 'f128'
275
- info: 'f129'
276
- exclamation: 'f12a'
277
- superscript: 'f12b'
278
- subscript: 'f12c'
279
- eraser: 'f12d'
280
- puzzle_piece: 'f12e'
281
- microphone: 'f130'
282
- microphone_off: 'f131'
283
- shield: 'f132'
284
- calendar_empty: 'f133'
285
- fire_extinguisher: 'f134'
286
- rocket: 'f135'
287
- maxcdn: 'f136'
288
- chevron_sign_left: 'f137'
289
- chevron_sign_right: 'f138'
290
- chevron_sign_up: 'f139'
291
- chevron_sign_down: 'f13a'
292
- html5: 'f13b'
293
- css3: 'f13c'
294
- anchor: 'f13d'
295
- unlock_alt: 'f13e'
296
- bullseye: 'f140'
297
- ellipsis_horizontal: 'f141'
298
- ellipsis_vertical: 'f142'
299
- rss_sign: 'f143'
300
- play_sign: 'f144'
301
- ticket: 'f145'
302
- minus_sign_alt: 'f146'
303
- check_minus: 'f147'
304
- level_up: 'f148'
305
- level_down: 'f149'
306
- check_sign: 'f14a'
307
- edit_sign: 'f14b'
308
- external_link_sign: 'f14c'
309
- share_sign: 'f14d'
1
+ glass: "f000"
2
+ music: "f001"
3
+ search: "f002"
4
+ envelope_alt: "f003"
5
+ heart: "f004"
6
+ star: "f005"
7
+ star_empty: "f006"
8
+ user: "f007"
9
+ film: "f008"
10
+ th_large: "f009"
11
+ th: "f00a"
12
+ th_list: "f00b"
13
+ ok: "f00c"
14
+ remove: "f00d"
15
+ zoom_in: "f00e"
16
+ zoom_out: "f010"
17
+ off: "f011"
18
+ signal: "f012"
19
+ cog: "f013"
20
+ trash: "f014"
21
+ home: "f015"
22
+ file_alt: "f016"
23
+ time: "f017"
24
+ road: "f018"
25
+ download_alt: "f019"
26
+ download: "f01a"
27
+ upload: "f01b"
28
+ inbox: "f01c"
29
+ play_circle: "f01d"
30
+ repeat: "f01e"
31
+ refresh: "f021"
32
+ list_alt: "f022"
33
+ lock: "f023"
34
+ flag: "f024"
35
+ headphones: "f025"
36
+ volume_off: "f026"
37
+ volume_down: "f027"
38
+ volume_up: "f028"
39
+ qrcode: "f029"
40
+ barcode: "f02a"
41
+ tag: "f02b"
42
+ tags: "f02c"
43
+ book: "f02d"
44
+ bookmark: "f02e"
45
+ print: "f02f"
46
+ camera: "f030"
47
+ font: "f031"
48
+ bold: "f032"
49
+ italic: "f033"
50
+ text_height: "f034"
51
+ text_width: "f035"
52
+ align_left: "f036"
53
+ align_center: "f037"
54
+ align_right: "f038"
55
+ align_justify: "f039"
56
+ list: "f03a"
57
+ indent_left: "f03b"
58
+ indent_right: "f03c"
59
+ facetime_video: "f03d"
60
+ picture: "f03e"
61
+ pencil: "f040"
62
+ map_marker: "f041"
63
+ adjust: "f042"
64
+ tint: "f043"
65
+ edit: "f044"
66
+ share: "f045"
67
+ check: "f046"
68
+ move: "f047"
69
+ step_backward: "f048"
70
+ fast_backward: "f049"
71
+ backward: "f04a"
72
+ play: "f04b"
73
+ pause: "f04c"
74
+ stop: "f04d"
75
+ forward: "f04e"
76
+ fast_forward: "f050"
77
+ step_forward: "f051"
78
+ eject: "f052"
79
+ chevron_left: "f053"
80
+ chevron_right: "f054"
81
+ plus_sign: "f055"
82
+ minus_sign: "f056"
83
+ remove_sign: "f057"
84
+ ok_sign: "f058"
85
+ question_sign: "f059"
86
+ info_sign: "f05a"
87
+ screenshot: "f05b"
88
+ remove_circle: "f05c"
89
+ ok_circle: "f05d"
90
+ ban_circle: "f05e"
91
+ arrow_left: "f060"
92
+ arrow_right: "f061"
93
+ arrow_up: "f062"
94
+ arrow_down: "f063"
95
+ share_alt: "f064"
96
+ resize_full: "f065"
97
+ resize_small: "f066"
98
+ plus: "f067"
99
+ minus: "f068"
100
+ asterisk: "f069"
101
+ exclamation_sign: "f06a"
102
+ gift: "f06b"
103
+ leaf: "f06c"
104
+ fire: "f06d"
105
+ eye_open: "f06e"
106
+ eye_close: "f070"
107
+ warning_sign: "f071"
108
+ plane: "f072"
109
+ calendar: "f073"
110
+ random: "f074"
111
+ comment: "f075"
112
+ magnet: "f076"
113
+ chevron_up: "f077"
114
+ chevron_down: "f078"
115
+ retweet: "f079"
116
+ shopping_cart: "f07a"
117
+ folder_close: "f07b"
118
+ folder_open: "f07c"
119
+ resize_vertical: "f07d"
120
+ resize_horizontal: "f07e"
121
+ bar_chart: "f080"
122
+ twitter_sign: "f081"
123
+ facebook_sign: "f082"
124
+ camera_retro: "f083"
125
+ key: "f084"
126
+ cogs: "f085"
127
+ comments: "f086"
128
+ thumbs_up_alt: "f087"
129
+ thumbs_down_alt: "f088"
130
+ star_half: "f089"
131
+ heart_empty: "f08a"
132
+ signout: "f08b"
133
+ linkedin_sign: "f08c"
134
+ pushpin: "f08d"
135
+ external_link: "f08e"
136
+ signin: "f090"
137
+ trophy: "f091"
138
+ github_sign: "f092"
139
+ upload_alt: "f093"
140
+ lemon: "f094"
141
+ phone: "f095"
142
+ check_empty: "f096"
143
+ bookmark_empty: "f097"
144
+ phone_sign: "f098"
145
+ twitter: "f099"
146
+ facebook: "f09a"
147
+ github: "f09b"
148
+ unlock: "f09c"
149
+ credit_card: "f09d"
150
+ rss: "f09e"
151
+ hdd: "f0a0"
152
+ bullhorn: "f0a1"
153
+ bell: "f0a2"
154
+ certificate: "f0a3"
155
+ hand_right: "f0a4"
156
+ hand_left: "f0a5"
157
+ hand_up: "f0a6"
158
+ hand_down: "f0a7"
159
+ circle_arrow_left: "f0a8"
160
+ circle_arrow_right: "f0a9"
161
+ circle_arrow_up: "f0aa"
162
+ circle_arrow_down: "f0ab"
163
+ globe: "f0ac"
164
+ wrench: "f0ad"
165
+ tasks: "f0ae"
166
+ filter: "f0b0"
167
+ briefcase: "f0b1"
168
+ fullscreen: "f0b2"
169
+ group: "f0c0"
170
+ link: "f0c1"
171
+ cloud: "f0c2"
172
+ beaker: "f0c3"
173
+ cut: "f0c4"
174
+ copy: "f0c5"
175
+ paper_clip: "f0c6"
176
+ save: "f0c7"
177
+ sign_blank: "f0c8"
178
+ reorder: "f0c9"
179
+ list_ul: "f0ca"
180
+ list_ol: "f0cb"
181
+ strikethrough: "f0cc"
182
+ underline: "f0cd"
183
+ table: "f0ce"
184
+ magic: "f0d0"
185
+ truck: "f0d1"
186
+ pinterest: "f0d2"
187
+ pinterest_sign: "f0d3"
188
+ google_plus_sign: "f0d4"
189
+ google_plus: "f0d5"
190
+ money: "f0d6"
191
+ caret_down: "f0d7"
192
+ caret_up: "f0d8"
193
+ caret_left: "f0d9"
194
+ caret_right: "f0da"
195
+ columns: "f0db"
196
+ sort: "f0dc"
197
+ sort_down: "f0dd"
198
+ sort_up: "f0de"
199
+ envelope: "f0e0"
200
+ linkedin: "f0e1"
201
+ undo: "f0e2"
202
+ legal: "f0e3"
203
+ dashboard: "f0e4"
204
+ comment_alt: "f0e5"
205
+ comments_alt: "f0e6"
206
+ bolt: "f0e7"
207
+ sitemap: "f0e8"
208
+ umbrella: "f0e9"
209
+ paste: "f0ea"
210
+ lightbulb: "f0eb"
211
+ exchange: "f0ec"
212
+ cloud_download: "f0ed"
213
+ cloud_upload: "f0ee"
214
+ user_md: "f0f0"
215
+ stethoscope: "f0f1"
216
+ suitcase: "f0f2"
217
+ bell_alt: "f0f3"
218
+ coffee: "f0f4"
219
+ food: "f0f5"
220
+ file_text_alt: "f0f6"
221
+ building: "f0f7"
222
+ hospital: "f0f8"
223
+ ambulance: "f0f9"
224
+ medkit: "f0fa"
225
+ fighter_jet: "f0fb"
226
+ beer: "f0fc"
227
+ h_sign: "f0fd"
228
+ plus_sign_alt: "f0fe"
229
+ double_angle_left: "f100"
230
+ double_angle_right: "f101"
231
+ double_angle_up: "f102"
232
+ double_angle_down: "f103"
233
+ angle_left: "f104"
234
+ angle_right: "f105"
235
+ angle_up: "f106"
236
+ angle_down: "f107"
237
+ desktop: "f108"
238
+ laptop: "f109"
239
+ tablet: "f10a"
240
+ mobile_phone: "f10b"
241
+ circle_blank: "f10c"
242
+ quote_left: "f10d"
243
+ quote_right: "f10e"
244
+ spinner: "f110"
245
+ circle: "f111"
246
+ reply: "f112"
247
+ github_alt: "f113"
248
+ folder_close_alt: "f114"
249
+ folder_open_alt: "f115"
250
+ expand_alt: "f116"
251
+ collapse_alt: "f117"
252
+ smile: "f118"
253
+ frown: "f119"
254
+ meh: "f11a"
255
+ gamepad: "f11b"
256
+ keyboard: "f11c"
257
+ flag_alt: "f11d"
258
+ flag_checkered: "f11e"
259
+ terminal: "f120"
260
+ code: "f121"
261
+ reply_all: "f122"
262
+ mail_reply_all: "f122"
263
+ star_half_empty: "f123"
264
+ location_arrow: "f124"
265
+ crop: "f125"
266
+ code_fork: "f126"
267
+ unlink: "f127"
268
+ question: "f128"
269
+ info: "f129"
270
+ exclamation: "f12a"
271
+ superscript: "f12b"
272
+ subscript: "f12c"
273
+ eraser: "f12d"
274
+ puzzle_piece: "f12e"
275
+ microphone: "f130"
276
+ microphone_off: "f131"
277
+ shield: "f132"
278
+ calendar_empty: "f133"
279
+ fire_extinguisher: "f134"
280
+ rocket: "f135"
281
+ maxcdn: "f136"
282
+ chevron_sign_left: "f137"
283
+ chevron_sign_right: "f138"
284
+ chevron_sign_up: "f139"
285
+ chevron_sign_down: "f13a"
286
+ html5: "f13b"
287
+ css3: "f13c"
288
+ anchor: "f13d"
289
+ unlock_alt: "f13e"
290
+ bullseye: "f140"
291
+ ellipsis_horizontal: "f141"
292
+ ellipsis_vertical: "f142"
293
+ rss_sign: "f143"
294
+ play_sign: "f144"
295
+ ticket: "f145"
296
+ minus_sign_alt: "f146"
297
+ check_minus: "f147"
298
+ level_up: "f148"
299
+ level_down: "f149"
300
+ check_sign: "f14a"
301
+ edit_sign: "f14b"
302
+ external_link_sign: "f14c"
303
+ share_sign: "f14d"
304
+ compass: "f14e"
305
+ collapse: "f150"
306
+ collapse_top: "f151"
307
+ expand: "f152"
308
+ eur: "f153"
309
+ gbp: "f154"
310
+ usd: "f155"
311
+ inr: "f156"
312
+ jpy: "f157"
313
+ cny: "f158"
314
+ krw: "f159"
315
+ btc: "f15a"
316
+ file: "f15b"
317
+ file_text: "f15c"
318
+ sort_by_alphabet: "f15d"
319
+ sort_by_alphabet_alt: "f15e"
320
+ sort_by_attributes: "f160"
321
+ sort_by_attributes_alt: "f161"
322
+ sort_by_order: "f162"
323
+ sort_by_order_alt: "f163"
324
+ thumbs_up: "f164"
325
+ thumbs_down: "f165"
326
+ youtube_sign: "f166"
327
+ youtube: "f167"
328
+ xing: "f168"
329
+ xing_sign: "f169"
330
+ youtube_play: "f16a"
331
+ dropbox: "f16b"
332
+ stackexchange: "f16c"
333
+ instagram: "f16d"
334
+ flickr: "f16e"
335
+ adn: "f170"
336
+ bitbucket: "f171"
337
+ bitbucket_sign: "f172"
338
+ tumblr: "f173"
339
+ tumblr_sign: "f174"
340
+ long_arrow_down: "f175"
341
+ long_arrow_up: "f176"
342
+ long_arrow_left: "f177"
343
+ long_arrow_right: "f178"
344
+ apple: "f179"
345
+ windows: "f17a"
346
+ android: "f17b"
347
+ linux: "f17c"
348
+ dribbble: "f17d"
349
+ skype: "f17e"
350
+ foursquare: "f180"
351
+ trello: "f181"
352
+ female: "f182"
353
+ male: "f183"
354
+ gittip: "f184"
355
+ sun: "f185"
356
+ moon: "f186"
357
+ archive: "f187"
358
+ bug: "f188"
359
+ vk: "f189"
360
+ weibo: "f18a"
361
+ renren: "f18b"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: facades
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.0.8
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-05-23 00:00:00.000000000 Z
12
+ date: 2013-07-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sass
@@ -146,6 +146,7 @@ files:
146
146
  - config.ru
147
147
  - facades.gemspec
148
148
  - lib/facades.rb
149
+ - lib/facades/config.rb
149
150
  - lib/facades/helpers.rb
150
151
  - lib/facades/helpers/frontend.rb
151
152
  - lib/facades/helpers/layout.rb