compass 0.11.7 → 0.12.alpha.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.
Files changed (207) hide show
  1. data/Rakefile +10 -0
  2. data/VERSION.yml +4 -3
  3. data/bin/compass +1 -5
  4. data/features/command_line.feature +17 -17
  5. data/features/extensions.feature +0 -6
  6. data/features/step_definitions/command_line_steps.rb +1 -2
  7. data/frameworks/compass/stylesheets/compass/css3/_font-face.scss +35 -5
  8. data/frameworks/compass/stylesheets/compass/css3/_images.scss +6 -6
  9. data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +3 -12
  10. data/frameworks/compass/stylesheets/compass/typography/lists/_bullets.scss +1 -1
  11. data/frameworks/compass/stylesheets/compass/typography/lists/_inline-block-list.scss +11 -14
  12. data/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss +5 -5
  13. data/frameworks/compass/templates/pie/PIE.htc +64 -83
  14. data/lib/compass.rbc +36 -42
  15. data/lib/compass/actions.rb +1 -0
  16. data/lib/compass/actions.rbc +85 -244
  17. data/lib/compass/app_integration.rbc +20 -28
  18. data/lib/compass/app_integration/merb.rbc +4 -8
  19. data/lib/compass/app_integration/rails.rb +22 -5
  20. data/lib/compass/app_integration/rails.rbc +142 -658
  21. data/lib/compass/app_integration/rails/actionpack2x.rb +10 -0
  22. data/lib/compass/app_integration/rails/{actionpack2 → actionpack2x}/action_controller.rb +0 -0
  23. data/lib/compass/app_integration/rails/{actionpack2 → actionpack2x}/sass_plugin.rb +0 -0
  24. data/lib/compass/app_integration/rails/{actionpack2 → actionpack2x}/urls.rb +0 -0
  25. data/lib/compass/app_integration/rails/actionpack30.rb +11 -0
  26. data/lib/compass/app_integration/rails/{actionpack3 → actionpack30}/railtie.rb +0 -0
  27. data/lib/compass/app_integration/rails/actionpack31.rb +5 -0
  28. data/lib/compass/app_integration/rails/actionpack31/helpers.rb +5 -0
  29. data/lib/compass/app_integration/rails/actionpack31/railtie.rb +89 -0
  30. data/lib/compass/app_integration/rails/configuration_defaults.rb +54 -14
  31. data/lib/compass/app_integration/rails/configuration_defaults.rbc +324 -1081
  32. data/lib/compass/app_integration/rails/installer.rbc +61 -145
  33. data/lib/compass/app_integration/rails/runtime.rb +6 -16
  34. data/lib/compass/app_integration/stand_alone.rbc +15 -15
  35. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +23 -23
  36. data/lib/compass/app_integration/stand_alone/installer.rbc +32 -52
  37. data/lib/compass/browser_support.rbc +23 -35
  38. data/lib/compass/commands/clean_project.rb +1 -1
  39. data/lib/compass/commands/project_stats.rb +7 -7
  40. data/lib/compass/commands/sprite.rb +4 -3
  41. data/lib/compass/compiler.rb +2 -2
  42. data/lib/compass/compiler.rbc +398 -591
  43. data/lib/compass/configuration.rb +2 -0
  44. data/lib/compass/configuration.rbc +78 -134
  45. data/lib/compass/configuration/adapters.rbc +40 -98
  46. data/lib/compass/configuration/comments.rb +5 -1
  47. data/lib/compass/configuration/comments.rbc +51 -132
  48. data/lib/compass/configuration/data.rb +26 -10
  49. data/lib/compass/configuration/data.rbc +536 -526
  50. data/lib/compass/configuration/defaults.rb +24 -1
  51. data/lib/compass/configuration/defaults.rbc +187 -762
  52. data/lib/compass/configuration/file_data.rb +0 -22
  53. data/lib/compass/configuration/file_data.rbc +125 -37
  54. data/lib/compass/configuration/helpers.rb +9 -8
  55. data/lib/compass/configuration/helpers.rbc +153 -433
  56. data/lib/compass/configuration/inheritance.rb +13 -0
  57. data/lib/compass/configuration/inheritance.rbc +165 -412
  58. data/lib/compass/configuration/paths.rbc +9 -9
  59. data/lib/compass/configuration/serialization.rb +1 -0
  60. data/lib/compass/configuration/serialization.rbc +84 -151
  61. data/lib/compass/dependencies.rbc +4 -16
  62. data/lib/compass/errors.rbc +5 -5
  63. data/lib/compass/frameworks.rb +4 -10
  64. data/lib/compass/frameworks.rbc +66 -118
  65. data/lib/compass/quick_cache.rbc +8 -12
  66. data/lib/compass/sass_extensions.rbc +4 -8
  67. data/lib/compass/sass_extensions/functions.rbc +57 -90
  68. data/lib/compass/sass_extensions/functions/colors.rbc +18 -22
  69. data/lib/compass/sass_extensions/functions/constants.rbc +25 -45
  70. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +36 -48
  71. data/lib/compass/sass_extensions/functions/display.rbc +107 -341
  72. data/lib/compass/sass_extensions/functions/enumerate.rbc +9 -9
  73. data/lib/compass/sass_extensions/functions/font_files.rbc +125 -542
  74. data/lib/compass/sass_extensions/functions/gradient_support.rbc +167 -379
  75. data/lib/compass/sass_extensions/functions/image_size.rb +10 -2
  76. data/lib/compass/sass_extensions/functions/image_size.rbc +400 -715
  77. data/lib/compass/sass_extensions/functions/inline_image.rbc +98 -152
  78. data/lib/compass/sass_extensions/functions/lists.rb +0 -5
  79. data/lib/compass/sass_extensions/functions/lists.rbc +39 -75
  80. data/lib/compass/sass_extensions/functions/selectors.rbc +28 -36
  81. data/lib/compass/sass_extensions/functions/sprites.rb +5 -7
  82. data/lib/compass/sass_extensions/functions/sprites.rbc +233 -255
  83. data/lib/compass/sass_extensions/functions/trig.rb +2 -1
  84. data/lib/compass/sass_extensions/functions/trig.rbc +51 -53
  85. data/lib/compass/sass_extensions/functions/urls.rb +171 -80
  86. data/lib/compass/sass_extensions/functions/urls.rbc +1051 -3158
  87. data/lib/compass/sass_extensions/monkey_patches.rbc +5 -5
  88. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +47 -63
  89. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +16 -36
  90. data/lib/compass/sass_extensions/sprites.rb +3 -1
  91. data/lib/compass/sass_extensions/sprites.rbc +13 -93
  92. data/lib/compass/sass_extensions/sprites/engines.rbc +6 -615
  93. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +94 -260
  94. data/lib/compass/sass_extensions/sprites/image.rb +23 -11
  95. data/lib/compass/sass_extensions/sprites/image.rbc +313 -691
  96. data/lib/compass/sass_extensions/sprites/image_row.rb +47 -0
  97. data/lib/compass/sass_extensions/sprites/layout_methods.rb +117 -0
  98. data/lib/compass/sass_extensions/sprites/row_fitter.rb +86 -0
  99. data/lib/compass/sass_extensions/sprites/sprite_map.rb +18 -4
  100. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +3635 -708
  101. data/lib/compass/sass_extensions/sprites/sprite_methods.rb +5 -17
  102. data/lib/compass/sprite_importer.rb +38 -62
  103. data/lib/compass/sprite_importer.rbc +1495 -1125
  104. data/lib/compass/util.rbc +11 -19
  105. data/lib/compass/version.rbc +25 -53
  106. data/test/fixtures/sprites/public/images/image_row/large.png +0 -0
  107. data/test/fixtures/sprites/public/images/image_row/large_square.png +0 -0
  108. data/test/fixtures/sprites/public/images/image_row/medium.png +0 -0
  109. data/test/fixtures/sprites/public/images/image_row/small.png +0 -0
  110. data/test/fixtures/sprites/public/images/image_row/tall.png +0 -0
  111. data/test/fixtures/stylesheets/compass/css/lists.css +7 -7
  112. data/test/fixtures/stylesheets/compass/css/reset.css +1 -0
  113. data/test/fixtures/stylesheets/compass/css/sprites.css +248 -248
  114. data/test/fixtures/stylesheets/compass/images/flag-s8c3c755a68.png +0 -0
  115. data/test/integrations/sprites_test.rb +115 -3
  116. data/test/test_helper.rb +29 -1
  117. data/test/tmp/compass_rails/public/images/selectors-sef52c5c63a.png +0 -0
  118. data/test/units/configuration_test.rb +2 -5
  119. data/test/units/rails_configuration_test.rb +50 -0
  120. data/test/units/sass_extensions_test.rb +17 -5
  121. data/test/units/sprites/image_row_test.rb +57 -0
  122. data/test/units/sprites/image_test.rb +53 -45
  123. data/test/units/sprites/importer_test.rb +31 -12
  124. data/test/units/sprites/row_fitter_test.rb +66 -0
  125. data/test/units/sprites/sprite_command_test.rb +1 -11
  126. data/test/units/sprites/sprite_map_test.rb +122 -16
  127. metadata +38 -149
  128. data/bin/compass.compiled.rbc +0 -707
  129. data/examples/compass/compass_app_log.txt +0 -6
  130. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +0 -19
  131. data/lib/compass/commands.rbc +0 -307
  132. data/lib/compass/commands/base.rbc +0 -1044
  133. data/lib/compass/commands/clean_project.rbc +0 -1856
  134. data/lib/compass/commands/create_project.rbc +0 -2691
  135. data/lib/compass/commands/default.rbc +0 -1677
  136. data/lib/compass/commands/generate_grid_background.rbc +0 -1939
  137. data/lib/compass/commands/help.rbc +0 -1921
  138. data/lib/compass/commands/imports.rbc +0 -969
  139. data/lib/compass/commands/installer_command.rbc +0 -807
  140. data/lib/compass/commands/interactive.rbc +0 -1341
  141. data/lib/compass/commands/list_frameworks.rbc +0 -1111
  142. data/lib/compass/commands/print_version.rbc +0 -2478
  143. data/lib/compass/commands/project_base.rbc +0 -2085
  144. data/lib/compass/commands/project_stats.rbc +0 -4202
  145. data/lib/compass/commands/registry.rbc +0 -1350
  146. data/lib/compass/commands/sprite.rbc +0 -2212
  147. data/lib/compass/commands/stamp_pattern.rbc +0 -2011
  148. data/lib/compass/commands/unpack_extension.rbc +0 -2348
  149. data/lib/compass/commands/update_project.rbc +0 -3002
  150. data/lib/compass/commands/validate_project.rbc +0 -1686
  151. data/lib/compass/commands/watch_project.rbc +0 -4155
  152. data/lib/compass/commands/write_configuration.rbc +0 -2896
  153. data/lib/compass/exec.rbc +0 -500
  154. data/lib/compass/exec/command_option_parser.rbc +0 -676
  155. data/lib/compass/exec/global_options_parser.rbc +0 -1306
  156. data/lib/compass/exec/helpers.rbc +0 -758
  157. data/lib/compass/exec/project_options_parser.rbc +0 -1515
  158. data/lib/compass/exec/sub_command_ui.rbc +0 -1191
  159. data/lib/compass/grid_builder.rbc +0 -0
  160. data/lib/compass/installers.rbc +0 -152
  161. data/lib/compass/installers/bare_installer.rbc +0 -939
  162. data/lib/compass/installers/base.rbc +0 -4427
  163. data/lib/compass/installers/manifest.rbc +0 -3335
  164. data/lib/compass/installers/manifest_installer.rbc +0 -1591
  165. data/lib/compass/installers/template_context.rbc +0 -1030
  166. data/lib/compass/logger.rbc +0 -2317
  167. data/lib/compass/sass_extensions/functions/env.rbc +0 -299
  168. data/lib/compass/sass_extensions/sprites/image_methods.rbc +0 -900
  169. data/lib/compass/sass_extensions/sprites/image_row.rbc +0 -1168
  170. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +0 -3236
  171. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +0 -2067
  172. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +0 -3190
  173. data/test/fixtures/extensions/only_stylesheets/compass_init.rb +0 -1
  174. data/test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss +0 -3
  175. data/test/fixtures/stylesheets/compass/css/user-interface.css +0 -5
  176. data/test/fixtures/stylesheets/compass/images/flag-s03c3b29b35.png +0 -0
  177. data/test/fixtures/stylesheets/compass/sass/user-interface.scss +0 -5
  178. data/test/fixtures/stylesheets/envtest/tmp/env.css +0 -2
  179. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb +0 -25
  180. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss +0 -5
  181. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss +0 -3
  182. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/screen.scss +0 -6
  183. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/ie.css +0 -5
  184. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css +0 -3
  185. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css +0 -68
  186. data/test/helpers/command_line.rbc +0 -2820
  187. data/test/helpers/diff.rbc +0 -1104
  188. data/test/helpers/io.rbc +0 -962
  189. data/test/helpers/rails.rbc +0 -1116
  190. data/test/helpers/test_case.rbc +0 -1255
  191. data/test/integrations/compass_test.rbc +0 -6589
  192. data/test/integrations/rails_integration_test.rbc +0 -1342
  193. data/test/integrations/sprites_test.rbc +0 -6192
  194. data/test/test_helper.rbc +0 -1694
  195. data/test/units/actions_test.rbc +0 -644
  196. data/test/units/command_line_test.rbc +0 -1532
  197. data/test/units/compass_png_test.rbc +0 -0
  198. data/test/units/configuration_test.rbc +0 -3833
  199. data/test/units/rails_configuration_test.rbc +0 -1032
  200. data/test/units/sass_extensions_test.rbc +0 -3586
  201. data/test/units/sprites/engine_test.rbc +0 -962
  202. data/test/units/sprites/image_row_test.rbc +0 -1578
  203. data/test/units/sprites/image_test.rbc +0 -2836
  204. data/test/units/sprites/importer_test.rbc +0 -2620
  205. data/test/units/sprites/row_fitter_test.rbc +0 -1479
  206. data/test/units/sprites/sprite_command_test.rbc +0 -1147
  207. data/test/units/sprites/sprite_map_test.rbc +0 -6515
@@ -1,14 +1,22 @@
1
1
  module Compass::SassExtensions::Functions::ImageSize
2
2
  # Returns the width of the image relative to the images directory
3
3
  def image_width(image_file)
4
- image_path = real_path(image_file)
4
+ image_path = if File.exists?(image_file.value)
5
+ image_file.value
6
+ else
7
+ real_path(image_file)
8
+ end
5
9
  width = ImageProperties.new(image_path).size.first
6
10
  Sass::Script::Number.new(width,["px"])
7
11
  end
8
12
 
9
13
  # Returns the height of the image relative to the images directory
10
14
  def image_height(image_file)
11
- image_path = real_path(image_file)
15
+ image_path = if File.exists?(image_file.value)
16
+ image_file.value
17
+ else
18
+ real_path(image_file)
19
+ end
12
20
  height = ImageProperties.new(image_path).size.last
13
21
  Sass::Script::Number.new(height, ["px"])
14
22
  end
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 9595534255132031488
2
+ 333337424968067900
3
3
  x
4
4
  M
5
5
  1
@@ -82,7 +82,7 @@ x
82
82
  9
83
83
  ImageSize
84
84
  i
85
- 130
85
+ 102
86
86
  5
87
87
  66
88
88
  99
@@ -161,34 +161,6 @@ i
161
161
  99
162
162
  7
163
163
  14
164
- 7
165
- 15
166
- 65
167
- 67
168
- 49
169
- 2
170
- 0
171
- 49
172
- 3
173
- 4
174
- 15
175
- 99
176
- 7
177
- 16
178
- 7
179
- 17
180
- 65
181
- 67
182
- 49
183
- 2
184
- 0
185
- 49
186
- 3
187
- 4
188
- 15
189
- 99
190
- 7
191
- 18
192
164
  1
193
165
  65
194
166
  49
@@ -201,7 +173,7 @@ i
201
173
  8
202
174
  12
203
175
  7
204
- 19
176
+ 15
205
177
  12
206
178
  65
207
179
  12
@@ -223,7 +195,7 @@ I
223
195
  0
224
196
  n
225
197
  p
226
- 20
198
+ 16
227
199
  x
228
200
  11
229
201
  image_width
@@ -235,7 +207,7 @@ x
235
207
  11
236
208
  image_width
237
209
  i
238
- 62
210
+ 90
239
211
  5
240
212
  20
241
213
  0
@@ -243,59 +215,87 @@ i
243
215
  49
244
216
  0
245
217
  1
246
- 97
247
- 37
248
218
  19
249
219
  1
250
220
  15
251
- 37
252
- 19
221
+ 45
222
+ 1
253
223
  2
224
+ 13
225
+ 71
226
+ 3
227
+ 47
228
+ 9
229
+ 33
230
+ 47
231
+ 49
232
+ 4
233
+ 0
234
+ 13
235
+ 20
236
+ 1
237
+ 47
238
+ 49
239
+ 5
240
+ 1
254
241
  15
255
- 15
242
+ 8
243
+ 38
244
+ 20
245
+ 1
246
+ 49
247
+ 3
248
+ 1
249
+ 49
250
+ 6
251
+ 0
252
+ 49
253
+ 7
254
+ 0
255
+ 19
256
256
  2
257
257
  15
258
258
  45
259
- 1
260
- 2
259
+ 8
260
+ 9
261
261
  43
262
- 3
262
+ 10
263
263
  43
264
- 4
264
+ 11
265
265
  13
266
266
  71
267
- 5
267
+ 3
268
268
  47
269
269
  9
270
- 51
270
+ 79
271
271
  47
272
272
  49
273
- 6
273
+ 4
274
274
  0
275
275
  13
276
276
  20
277
- 1
278
- 7
277
+ 2
279
278
  7
279
+ 12
280
280
  64
281
281
  35
282
282
  1
283
283
  47
284
284
  49
285
- 8
285
+ 5
286
286
  2
287
287
  15
288
288
  8
289
- 61
289
+ 89
290
290
  20
291
- 1
292
- 7
291
+ 2
293
292
  7
293
+ 12
294
294
  64
295
295
  35
296
296
  1
297
297
  49
298
- 5
298
+ 3
299
299
  2
300
300
  11
301
301
  I
@@ -308,10 +308,29 @@ I
308
308
  1
309
309
  n
310
310
  p
311
+ 13
312
+ x
311
313
  9
314
+ real_path
312
315
  x
313
- 16
314
- image_demensions
316
+ 15
317
+ ImageProperties
318
+ n
319
+ x
320
+ 3
321
+ new
322
+ x
323
+ 8
324
+ allocate
325
+ x
326
+ 10
327
+ initialize
328
+ x
329
+ 4
330
+ size
331
+ x
332
+ 5
333
+ first
315
334
  x
316
335
  4
317
336
  Sass
@@ -322,20 +341,11 @@ Script
322
341
  x
323
342
  6
324
343
  Number
325
- x
326
- 3
327
- new
328
- x
329
- 8
330
- allocate
331
344
  s
332
345
  2
333
346
  px
334
- x
335
- 10
336
- initialize
337
347
  p
338
- 7
348
+ 9
339
349
  I
340
350
  -1
341
351
  I
@@ -345,26 +355,30 @@ I
345
355
  I
346
356
  4
347
357
  I
348
- 13
358
+ a
349
359
  I
350
360
  5
351
361
  I
352
- 3e
362
+ 2f
363
+ I
364
+ 6
365
+ I
366
+ 5a
353
367
  x
354
- 83
355
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
368
+ 81
369
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
356
370
  p
357
371
  3
358
372
  x
359
373
  10
360
374
  image_file
361
375
  x
376
+ 10
377
+ image_path
378
+ x
362
379
  5
363
380
  width
364
381
  x
365
- 1
366
- _
367
- x
368
382
  17
369
383
  method_visibility
370
384
  x
@@ -381,7 +395,7 @@ x
381
395
  12
382
396
  image_height
383
397
  i
384
- 62
398
+ 90
385
399
  5
386
400
  20
387
401
  0
@@ -389,59 +403,87 @@ i
389
403
  49
390
404
  0
391
405
  1
392
- 97
393
- 37
394
406
  19
395
407
  1
396
408
  15
397
- 37
398
- 19
409
+ 45
410
+ 1
399
411
  2
412
+ 13
413
+ 71
414
+ 3
415
+ 47
416
+ 9
417
+ 33
418
+ 47
419
+ 49
420
+ 4
421
+ 0
422
+ 13
423
+ 20
424
+ 1
425
+ 47
426
+ 49
427
+ 5
428
+ 1
400
429
  15
401
- 15
430
+ 8
431
+ 38
432
+ 20
433
+ 1
434
+ 49
435
+ 3
436
+ 1
437
+ 49
438
+ 6
439
+ 0
440
+ 49
441
+ 7
442
+ 0
443
+ 19
402
444
  2
403
445
  15
404
446
  45
405
- 1
406
- 2
447
+ 8
448
+ 9
407
449
  43
408
- 3
450
+ 10
409
451
  43
410
- 4
452
+ 11
411
453
  13
412
454
  71
413
- 5
455
+ 3
414
456
  47
415
457
  9
416
- 51
458
+ 79
417
459
  47
418
460
  49
419
- 6
461
+ 4
420
462
  0
421
463
  13
422
464
  20
423
465
  2
424
466
  7
425
- 7
467
+ 12
426
468
  64
427
469
  35
428
470
  1
429
471
  47
430
472
  49
431
- 8
473
+ 5
432
474
  2
433
475
  15
434
476
  8
435
- 61
477
+ 89
436
478
  20
437
479
  2
438
480
  7
439
- 7
481
+ 12
440
482
  64
441
483
  35
442
484
  1
443
485
  49
444
- 5
486
+ 3
445
487
  2
446
488
  11
447
489
  I
@@ -454,10 +496,29 @@ I
454
496
  1
455
497
  n
456
498
  p
499
+ 13
500
+ x
457
501
  9
502
+ real_path
458
503
  x
459
- 16
460
- image_demensions
504
+ 15
505
+ ImageProperties
506
+ n
507
+ x
508
+ 3
509
+ new
510
+ x
511
+ 8
512
+ allocate
513
+ x
514
+ 10
515
+ initialize
516
+ x
517
+ 4
518
+ size
519
+ x
520
+ 4
521
+ last
461
522
  x
462
523
  4
463
524
  Sass
@@ -468,45 +529,40 @@ Script
468
529
  x
469
530
  6
470
531
  Number
471
- x
472
- 3
473
- new
474
- x
475
- 8
476
- allocate
477
532
  s
478
533
  2
479
534
  px
480
- x
481
- 10
482
- initialize
483
535
  p
484
- 7
536
+ 9
485
537
  I
486
538
  -1
487
539
  I
488
- 9
540
+ a
489
541
  I
490
542
  0
491
543
  I
544
+ b
545
+ I
492
546
  a
493
547
  I
494
- 13
548
+ c
495
549
  I
496
- b
550
+ 2f
497
551
  I
498
- 3e
552
+ d
553
+ I
554
+ 5a
499
555
  x
500
- 83
501
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
556
+ 81
557
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
502
558
  p
503
559
  3
504
560
  x
505
561
  10
506
562
  image_file
507
563
  x
508
- 1
509
- _
564
+ 10
565
+ image_path
510
566
  x
511
567
  6
512
568
  height
@@ -706,20 +762,20 @@ p
706
762
  I
707
763
  -1
708
764
  I
709
- f
765
+ 11
710
766
  I
711
767
  0
712
768
  I
713
- 10
769
+ 12
714
770
  I
715
771
  5
716
772
  I
717
- 11
773
+ 13
718
774
  I
719
775
  1b
720
776
  x
721
- 83
722
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
777
+ 81
778
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
723
779
  p
724
780
  1
725
781
  x
@@ -878,36 +934,28 @@ x
878
934
  5
879
935
  raise
880
936
  p
881
- 13
937
+ 9
882
938
  I
883
939
  -1
884
940
  I
885
- 14
941
+ 16
886
942
  I
887
943
  0
888
944
  I
889
- 15
890
- I
891
- 24
892
- I
893
- 0
945
+ 17
894
946
  I
895
947
  29
896
948
  I
897
- 16
949
+ 18
898
950
  I
899
951
  36
900
952
  I
901
- 17
902
- I
903
- 51
904
- I
905
- 0
953
+ 19
906
954
  I
907
955
  55
908
956
  x
909
- 83
910
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
957
+ 81
958
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
911
959
  p
912
960
  0
913
961
  x
@@ -1022,12 +1070,12 @@ p
1022
1070
  I
1023
1071
  0
1024
1072
  I
1025
- 1c
1073
+ 1e
1026
1074
  I
1027
1075
  a
1028
1076
  x
1029
- 83
1030
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
1077
+ 81
1078
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
1031
1079
  p
1032
1080
  1
1033
1081
  x
@@ -1056,16 +1104,16 @@ p
1056
1104
  I
1057
1105
  -1
1058
1106
  I
1059
- 1b
1107
+ 1d
1060
1108
  I
1061
1109
  0
1062
1110
  I
1063
- 1c
1111
+ 1e
1064
1112
  I
1065
1113
  21
1066
1114
  x
1067
- 83
1068
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
1115
+ 81
1116
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
1069
1117
  p
1070
1118
  0
1071
1119
  x
@@ -1177,12 +1225,12 @@ p
1177
1225
  I
1178
1226
  0
1179
1227
  I
1180
- 20
1228
+ 22
1181
1229
  I
1182
1230
  a
1183
1231
  x
1184
- 83
1185
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
1232
+ 81
1233
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
1186
1234
  p
1187
1235
  1
1188
1236
  x
@@ -1211,16 +1259,16 @@ p
1211
1259
  I
1212
1260
  -1
1213
1261
  I
1214
- 1f
1262
+ 21
1215
1263
  I
1216
1264
  0
1217
1265
  I
1218
- 20
1266
+ 22
1219
1267
  I
1220
1268
  21
1221
1269
  x
1222
- 83
1223
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
1270
+ 81
1271
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
1224
1272
  p
1225
1273
  0
1226
1274
  x
@@ -1258,16 +1306,16 @@ p
1258
1306
  I
1259
1307
  -1
1260
1308
  I
1261
- 23
1309
+ 25
1262
1310
  I
1263
1311
  0
1264
1312
  I
1265
- 24
1313
+ 26
1266
1314
  I
1267
1315
  4
1268
1316
  x
1269
- 83
1270
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
1317
+ 81
1318
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
1271
1319
  p
1272
1320
  0
1273
1321
  x
@@ -1364,20 +1412,20 @@ p
1364
1412
  I
1365
1413
  -1
1366
1414
  I
1367
- 27
1415
+ 29
1368
1416
  I
1369
1417
  0
1370
1418
  I
1371
- 28
1419
+ 2a
1372
1420
  I
1373
1421
  1f
1374
1422
  I
1375
- 29
1423
+ 2b
1376
1424
  I
1377
1425
  2c
1378
1426
  x
1379
- 83
1380
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
1427
+ 81
1428
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
1381
1429
  p
1382
1430
  1
1383
1431
  x
@@ -1388,36 +1436,36 @@ p
1388
1436
  I
1389
1437
  2
1390
1438
  I
1391
- f
1439
+ 11
1392
1440
  I
1393
1441
  10
1394
1442
  I
1395
- 14
1443
+ 16
1396
1444
  I
1397
1445
  1e
1398
1446
  I
1399
- 1a
1447
+ 1c
1400
1448
  I
1401
1449
  22
1402
1450
  I
1403
- 1b
1451
+ 1d
1404
1452
  I
1405
1453
  30
1406
1454
  I
1407
- 1f
1455
+ 21
1408
1456
  I
1409
1457
  3e
1410
1458
  I
1411
- 23
1459
+ 25
1412
1460
  I
1413
1461
  4c
1414
1462
  I
1415
- 27
1463
+ 29
1416
1464
  I
1417
1465
  5a
1418
1466
  x
1419
- 83
1420
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
1467
+ 81
1468
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
1421
1469
  p
1422
1470
  0
1423
1471
  x
@@ -1427,412 +1475,87 @@ x
1427
1475
  7
1428
1476
  private
1429
1477
  x
1430
- 16
1431
- image_demensions
1478
+ 9
1479
+ real_path
1432
1480
  M
1433
1481
  1
1434
1482
  n
1435
1483
  n
1436
1484
  x
1437
- 16
1438
- image_demensions
1485
+ 9
1486
+ real_path
1439
1487
  i
1440
- 148
1441
- 5
1442
- 48
1488
+ 56
1489
+ 20
1443
1490
  0
1444
- 7
1445
- 1
1446
- 14
1447
- 2
1448
- 49
1449
- 2
1450
- 1
1451
- 13
1452
- 10
1453
- 30
1454
- 15
1455
- 44
1456
- 43
1457
- 3
1458
- 78
1459
1491
  49
1460
- 4
1461
- 1
1462
- 13
1463
- 18
1464
- 3
1465
- 49
1466
- 5
1467
- 2
1468
- 15
1469
- 8
1470
- 34
1471
- 18
1472
- 2
1473
- 16
1474
- 2
1475
- 15
1476
- 5
1477
- 48
1478
1492
  0
1479
- 7
1480
- 1
1481
- 49
1482
- 2
1483
- 1
1484
- 7
1485
- 6
1486
- 14
1487
- 2
1488
- 49
1489
- 2
1493
+ 0
1494
+ 19
1490
1495
  1
1491
- 13
1492
- 10
1493
- 70
1494
1496
  15
1495
- 44
1496
- 43
1497
- 3
1498
- 78
1499
- 49
1500
- 4
1501
- 1
1502
- 13
1503
- 18
1504
- 3
1505
- 49
1506
- 5
1507
- 2
1508
- 15
1509
- 8
1510
- 74
1511
- 18
1512
- 2
1513
- 16
1514
- 2
1515
- 15
1516
- 5
1517
- 48
1518
- 0
1519
- 7
1497
+ 45
1520
1498
  1
1521
- 49
1522
1499
  2
1523
- 1
1524
- 7
1525
- 6
1526
1500
  49
1527
- 2
1528
- 1
1529
- 20
1501
+ 3
1530
1502
  0
1531
1503
  49
1532
- 7
1504
+ 4
1533
1505
  0
1534
- 45
1535
- 8
1536
1506
  9
1537
- 13
1538
- 71
1539
- 10
1540
- 47
1541
- 9
1542
- 124
1543
- 47
1544
- 49
1545
- 11
1546
- 0
1547
- 13
1507
+ 38
1508
+ 45
1548
1509
  5
1549
- 20
1550
- 0
1551
- 49
1552
- 7
1553
- 0
1554
- 47
1555
- 49
1556
- 12
1557
- 1
1558
- 47
1559
- 49
1560
- 13
1510
+ 6
1511
+ 45
1561
1512
  1
1562
- 15
1563
- 8
1564
- 137
1565
- 5
1566
- 20
1567
- 0
1568
- 49
1569
1513
  7
1570
- 0
1571
- 47
1572
- 49
1573
- 12
1574
- 1
1575
1514
  49
1576
- 10
1577
- 1
1578
- 49
1579
- 14
1580
- 0
1581
- 13
1582
- 18
1583
1515
  3
1516
+ 0
1584
1517
  49
1585
- 5
1586
- 2
1587
- 15
1588
- 11
1589
- I
1590
- 7
1591
- I
1592
- 1
1593
- I
1594
- 1
1595
- I
1596
- 1
1597
- n
1598
- p
1599
- 15
1600
- x
1601
- 7
1602
- options
1603
- x
1604
- 7
1605
- compass
1606
- x
1607
- 2
1608
- []
1609
- x
1610
- 4
1611
- Hash
1612
- x
1613
- 16
1614
- new_from_literal
1615
- x
1616
- 3
1617
- []=
1618
- x
1619
- 16
1620
- image_dimensions
1621
- x
1622
- 5
1623
- value
1624
- x
1625
- 15
1626
- ImageProperties
1627
- n
1628
- x
1629
- 3
1630
- new
1631
- x
1632
- 8
1633
- allocate
1634
- x
1635
- 19
1636
- image_path_for_size
1637
- x
1638
- 10
1639
- initialize
1640
- x
1641
1518
  4
1642
- size
1643
- p
1644
- 9
1645
- I
1646
- -1
1647
- I
1648
- 2f
1649
- I
1650
1519
  0
1651
- I
1652
- 30
1653
- I
1654
- 23
1655
- I
1656
- 31
1657
- I
1658
- 4b
1659
- I
1660
- 32
1661
- I
1662
- 94
1663
- x
1664
- 83
1665
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
1666
- p
1667
- 1
1668
- x
1669
- 10
1670
- image_file
1671
- x
1672
- 19
1673
- image_path_for_size
1674
- M
1675
- 1
1676
- n
1677
- n
1678
- x
1679
- 19
1680
- image_path_for_size
1681
- i
1682
- 25
1683
- 45
1684
- 0
1685
- 1
1686
1520
  20
1687
- 0
1521
+ 1
1688
1522
  49
1523
+ 8
1689
1524
  2
1690
- 1
1691
- 9
1692
- 15
1693
- 20
1694
- 0
1695
- 11
1696
1525
  8
1697
- 16
1698
- 1
1699
- 15
1526
+ 55
1527
+ 45
1700
1528
  5
1701
- 20
1702
- 0
1703
- 47
1704
- 49
1705
- 3
1706
- 1
1707
- 11
1708
- I
1709
- 3
1710
- I
1711
- 1
1712
- I
1713
- 1
1714
- I
1715
- 1
1716
- n
1717
- p
1718
- 4
1719
- x
1720
- 4
1721
- File
1722
- n
1723
- x
1724
- 7
1725
- exists?
1726
- x
1727
1529
  9
1728
- real_path
1729
- p
1730
- 13
1731
- I
1732
- -1
1733
- I
1734
- 35
1735
- I
1736
- 0
1737
- I
1738
- 36
1739
- I
1740
- a
1741
- I
1742
- 37
1743
- I
1744
- f
1745
- I
1746
- 36
1747
- I
1748
- 10
1749
- I
1750
- 0
1751
- I
1752
- 11
1753
- I
1754
- 39
1755
- I
1756
- 19
1757
- x
1758
- 83
1759
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
1760
- p
1761
- 1
1762
- x
1763
- 10
1764
- image_file
1765
- x
1766
- 9
1767
- real_path
1768
- M
1769
- 1
1770
- n
1771
- n
1772
- x
1773
- 9
1774
- real_path
1775
- i
1776
- 48
1777
1530
  45
1778
- 0
1779
1531
  1
1780
- 49
1781
- 2
1782
- 0
1532
+ 10
1783
1533
  49
1784
1534
  3
1785
1535
  0
1786
- 9
1787
- 30
1788
- 45
1789
- 4
1790
- 5
1791
- 45
1792
- 0
1793
- 6
1794
- 49
1795
- 2
1796
- 0
1797
1536
  49
1798
- 3
1537
+ 11
1799
1538
  0
1800
1539
  20
1801
- 0
1540
+ 1
1802
1541
  49
1803
- 7
1804
- 2
1805
- 8
1806
- 47
1807
- 45
1808
- 4
1809
1542
  8
1810
- 45
1811
- 0
1812
- 9
1813
- 49
1814
- 2
1815
- 0
1816
- 49
1817
- 10
1818
- 0
1819
- 20
1820
- 0
1821
- 49
1822
- 7
1823
1543
  2
1824
1544
  11
1825
1545
  I
1826
- 4
1546
+ 5
1827
1547
  I
1828
- 1
1548
+ 2
1829
1549
  I
1830
1550
  1
1831
1551
  I
1832
1552
  1
1833
1553
  n
1834
1554
  p
1835
- 11
1555
+ 12
1556
+ x
1557
+ 5
1558
+ value
1836
1559
  x
1837
1560
  7
1838
1561
  Compass
@@ -1861,35 +1584,38 @@ p
1861
1584
  I
1862
1585
  -1
1863
1586
  I
1864
- 3c
1587
+ 30
1865
1588
  I
1866
1589
  0
1867
1590
  I
1868
- 3e
1591
+ 31
1869
1592
  I
1870
- b
1593
+ 8
1871
1594
  I
1872
- 3f
1595
+ 33
1873
1596
  I
1874
- 1e
1597
+ 13
1875
1598
  I
1876
- 41
1599
+ 34
1877
1600
  I
1878
- 2f
1601
+ 26
1879
1602
  I
1880
- 0
1603
+ 36
1881
1604
  I
1882
- 30
1605
+ 38
1883
1606
  x
1884
- 83
1885
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
1607
+ 81
1608
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
1886
1609
  p
1887
- 1
1610
+ 2
1888
1611
  x
1889
1612
  10
1890
1613
  image_file
1891
1614
  x
1892
1615
  4
1616
+ path
1617
+ x
1618
+ 4
1893
1619
  JPEG
1894
1620
  M
1895
1621
  1
@@ -2087,12 +1813,12 @@ p
2087
1813
  I
2088
1814
  0
2089
1815
  I
2090
- 4c
1816
+ 41
2091
1817
  I
2092
1818
  c
2093
1819
  x
2094
- 83
2095
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
1820
+ 81
1821
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
2096
1822
  p
2097
1823
  1
2098
1824
  x
@@ -2102,32 +1828,28 @@ x
2102
1828
  4
2103
1829
  open
2104
1830
  p
2105
- 11
1831
+ 9
2106
1832
  I
2107
1833
  -1
2108
1834
  I
2109
- 48
1835
+ 3d
2110
1836
  I
2111
1837
  0
2112
1838
  I
2113
- 49
1839
+ 3e
2114
1840
  I
2115
1841
  a
2116
1842
  I
2117
- 4a
1843
+ 3f
2118
1844
  I
2119
1845
  13
2120
1846
  I
2121
- 4c
2122
- I
2123
- 20
2124
- I
2125
- 0
1847
+ 41
2126
1848
  I
2127
1849
  21
2128
1850
  x
2129
- 83
2130
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
1851
+ 81
1852
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
2131
1853
  p
2132
1854
  1
2133
1855
  x
@@ -2153,158 +1875,156 @@ x
2153
1875
  7
2154
1876
  examine
2155
1877
  i
2156
- 280
1878
+ 278
2157
1879
  20
2158
1880
  0
2159
1881
  99
2160
- 43
2161
- 0
2162
1882
  12
2163
1883
  49
2164
- 1
1884
+ 0
2165
1885
  1
2166
1886
  13
2167
1887
  99
2168
1888
  12
2169
1889
  7
2170
- 2
1890
+ 1
2171
1891
  12
2172
1892
  7
2173
- 3
1893
+ 2
2174
1894
  12
2175
1895
  65
2176
1896
  12
2177
1897
  49
2178
- 4
1898
+ 3
2179
1899
  4
2180
1900
  15
2181
1901
  54
2182
1902
  50
2183
- 2
1903
+ 1
2184
1904
  0
2185
1905
  15
2186
1906
  20
2187
1907
  0
2188
1908
  49
2189
- 5
1909
+ 4
2190
1910
  0
2191
1911
  4
2192
1912
  255
2193
1913
  83
2194
- 6
1914
+ 5
2195
1915
  13
2196
1916
  9
2197
- 51
1917
+ 49
2198
1918
  15
2199
1919
  20
2200
1920
  0
2201
1921
  49
2202
- 5
1922
+ 4
2203
1923
  0
2204
1924
  4
2205
1925
  216
2206
1926
  83
2207
- 6
1927
+ 5
2208
1928
  9
2209
- 56
1929
+ 54
2210
1930
  1
2211
1931
  8
2212
- 64
1932
+ 62
2213
1933
  5
2214
1934
  7
2215
- 7
1935
+ 6
2216
1936
  64
2217
1937
  47
2218
1938
  49
2219
- 8
1939
+ 7
2220
1940
  1
2221
1941
  15
2222
1942
  20
2223
1943
  0
2224
1944
  49
2225
- 9
1945
+ 8
2226
1946
  0
2227
1947
  19
2228
1948
  1
2229
1949
  9
2230
- 278
1950
+ 276
2231
1951
  20
2232
1952
  1
2233
1953
  13
2234
1954
  44
2235
1955
  43
2236
- 10
1956
+ 9
2237
1957
  4
2238
1958
  192
2239
1959
  4
2240
1960
  195
2241
1961
  49
2242
- 11
1962
+ 10
2243
1963
  2
2244
1964
  12
2245
1965
  49
2246
- 12
1966
+ 11
2247
1967
  1
2248
1968
  10
2249
- 146
1969
+ 144
2250
1970
  13
2251
1971
  44
2252
1972
  43
2253
- 10
1973
+ 9
2254
1974
  4
2255
1975
  197
2256
1976
  4
2257
1977
  199
2258
1978
  49
2259
- 11
1979
+ 10
2260
1980
  2
2261
1981
  12
2262
1982
  49
2263
- 12
1983
+ 11
2264
1984
  1
2265
1985
  10
2266
- 146
1986
+ 144
2267
1987
  13
2268
1988
  44
2269
1989
  43
2270
- 10
1990
+ 9
2271
1991
  4
2272
1992
  201
2273
1993
  4
2274
1994
  203
2275
1995
  49
2276
- 11
1996
+ 10
2277
1997
  2
2278
1998
  12
2279
1999
  49
2280
- 12
2000
+ 11
2281
2001
  1
2282
2002
  10
2283
- 146
2003
+ 144
2284
2004
  13
2285
2005
  44
2286
2006
  43
2287
- 10
2007
+ 9
2288
2008
  4
2289
2009
  205
2290
2010
  4
2291
2011
  207
2292
2012
  49
2293
- 11
2013
+ 10
2294
2014
  2
2295
2015
  12
2296
2016
  49
2297
- 12
2017
+ 11
2298
2018
  1
2299
2019
  10
2300
- 146
2020
+ 144
2301
2021
  8
2302
- 206
2022
+ 204
2303
2023
  15
2304
2024
  20
2305
2025
  0
2306
2026
  49
2307
- 13
2027
+ 12
2308
2028
  0
2309
2029
  97
2310
2030
  37
@@ -2313,15 +2033,15 @@ i
2313
2033
  15
2314
2034
  37
2315
2035
  38
2316
- 14
2036
+ 13
2317
2037
  15
2318
2038
  37
2319
2039
  38
2320
- 15
2040
+ 14
2321
2041
  15
2322
2042
  37
2323
2043
  38
2324
- 16
2044
+ 15
2325
2045
  15
2326
2046
  37
2327
2047
  19
@@ -2339,99 +2059,99 @@ i
2339
2059
  4
2340
2060
  3
2341
2061
  49
2342
- 17
2062
+ 16
2343
2063
  1
2344
2064
  81
2345
- 18
2065
+ 17
2346
2066
  83
2347
- 6
2067
+ 5
2348
2068
  9
2349
- 196
2069
+ 194
2350
2070
  1
2351
2071
  8
2352
- 204
2072
+ 202
2353
2073
  5
2354
2074
  7
2355
- 19
2075
+ 18
2356
2076
  64
2357
2077
  47
2358
2078
  49
2359
- 8
2079
+ 7
2360
2080
  1
2361
2081
  8
2362
- 274
2082
+ 272
2363
2083
  13
2364
2084
  4
2365
2085
  217
2366
2086
  12
2367
2087
  49
2368
- 12
2088
+ 11
2369
2089
  1
2370
2090
  10
2371
- 226
2091
+ 224
2372
2092
  13
2373
2093
  4
2374
2094
  218
2375
2095
  12
2376
2096
  49
2377
- 12
2097
+ 11
2378
2098
  1
2379
2099
  10
2380
- 226
2100
+ 224
2381
2101
  8
2382
- 232
2102
+ 230
2383
2103
  15
2384
2104
  1
2385
2105
  8
2386
- 279
2106
+ 277
2387
2107
  8
2388
- 274
2108
+ 272
2389
2109
  13
2390
2110
  4
2391
2111
  254
2392
2112
  12
2393
2113
  49
2394
- 12
2114
+ 11
2395
2115
  1
2396
2116
  9
2397
- 251
2117
+ 249
2398
2118
  15
2399
2119
  20
2400
2120
  0
2401
2121
  49
2402
- 20
2122
+ 19
2403
2123
  0
2404
2124
  38
2405
- 21
2125
+ 20
2406
2126
  8
2407
- 274
2127
+ 272
2408
2128
  13
2409
2129
  4
2410
2130
  225
2411
2131
  12
2412
2132
  49
2413
- 12
2133
+ 11
2414
2134
  1
2415
2135
  9
2416
- 268
2136
+ 266
2417
2137
  15
2418
2138
  20
2419
2139
  0
2420
2140
  49
2421
- 20
2141
+ 19
2422
2142
  0
2423
2143
  8
2424
- 274
2144
+ 272
2425
2145
  15
2426
2146
  20
2427
2147
  0
2428
2148
  49
2429
- 20
2149
+ 19
2430
2150
  0
2431
2151
  15
2432
2152
  68
2433
2153
  8
2434
- 65
2154
+ 63
2435
2155
  1
2436
2156
  11
2437
2157
  I
@@ -2444,13 +2164,10 @@ I
2444
2164
  1
2445
2165
  n
2446
2166
  p
2447
- 22
2448
- x
2449
- 4
2450
- Type
2167
+ 21
2451
2168
  x
2452
- 22
2453
- object_singleton_class
2169
+ 16
2170
+ object_metaclass
2454
2171
  x
2455
2172
  18
2456
2173
  __metaclass_init__
@@ -2596,16 +2313,16 @@ p
2596
2313
  I
2597
2314
  -1
2598
2315
  I
2599
- 54
2316
+ 49
2600
2317
  I
2601
2318
  0
2602
2319
  I
2603
- 55
2320
+ 4a
2604
2321
  I
2605
2322
  4
2606
2323
  x
2607
- 83
2608
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
2324
+ 81
2325
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
2609
2326
  p
2610
2327
  0
2611
2328
  x
@@ -2665,12 +2382,12 @@ p
2665
2382
  I
2666
2383
  -1
2667
2384
  I
2668
- 58
2385
+ 4d
2669
2386
  I
2670
2387
  e
2671
2388
  x
2672
- 83
2673
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
2389
+ 81
2390
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
2674
2391
  p
2675
2392
  0
2676
2393
  x
@@ -2722,12 +2439,12 @@ p
2722
2439
  I
2723
2440
  -1
2724
2441
  I
2725
- 59
2442
+ 4e
2726
2443
  I
2727
2444
  c
2728
2445
  x
2729
- 83
2730
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
2446
+ 81
2447
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
2731
2448
  p
2732
2449
  0
2733
2450
  x
@@ -2782,12 +2499,12 @@ p
2782
2499
  I
2783
2500
  -1
2784
2501
  I
2785
- 5a
2502
+ 4f
2786
2503
  I
2787
2504
  12
2788
2505
  x
2789
- 83
2790
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
2506
+ 81
2507
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
2791
2508
  p
2792
2509
  0
2793
2510
  x
@@ -2861,76 +2578,64 @@ x
2861
2578
  8
2862
2579
  readbyte
2863
2580
  p
2864
- 13
2581
+ 9
2865
2582
  I
2866
2583
  -1
2867
2584
  I
2868
- 5b
2585
+ 50
2869
2586
  I
2870
2587
  0
2871
2588
  I
2872
- 5c
2873
- I
2874
- 11
2875
- I
2876
- 0
2589
+ 51
2877
2590
  I
2878
2591
  13
2879
2592
  I
2880
- 5d
2881
- I
2882
- 24
2883
- I
2884
- 0
2593
+ 52
2885
2594
  I
2886
2595
  26
2887
2596
  I
2888
- 5e
2597
+ 53
2889
2598
  I
2890
2599
  29
2891
2600
  x
2892
- 83
2893
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
2601
+ 81
2602
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
2894
2603
  p
2895
2604
  1
2896
2605
  x
2897
2606
  1
2898
2607
  c
2899
2608
  p
2900
- 15
2609
+ 13
2901
2610
  I
2902
2611
  2
2903
2612
  I
2904
- 53
2613
+ 48
2905
2614
  I
2906
2615
  e
2907
2616
  I
2908
- 54
2909
- I
2910
- 1b
2911
- I
2912
- 0
2617
+ 49
2913
2618
  I
2914
2619
  1c
2915
2620
  I
2916
- 58
2621
+ 4d
2917
2622
  I
2918
2623
  2a
2919
2624
  I
2920
- 59
2625
+ 4e
2921
2626
  I
2922
2627
  38
2923
2628
  I
2924
- 5a
2629
+ 4f
2925
2630
  I
2926
2631
  46
2927
2632
  I
2928
- 5b
2633
+ 50
2929
2634
  I
2930
2635
  54
2931
2636
  x
2932
- 83
2933
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
2637
+ 81
2638
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
2934
2639
  p
2935
2640
  0
2936
2641
  x
@@ -2988,72 +2693,60 @@ x
2988
2693
  8
2989
2694
  @comment
2990
2695
  p
2991
- 31
2696
+ 25
2992
2697
  I
2993
2698
  -1
2994
2699
  I
2995
- 51
2700
+ 46
2996
2701
  I
2997
2702
  0
2998
2703
  I
2999
- 52
2704
+ 47
3000
2705
  I
3001
- 1d
2706
+ 1b
3002
2707
  I
3003
- 62
2708
+ 57
3004
2709
  I
3005
- 40
2710
+ 3f
3006
2711
  I
3007
- 0
2712
+ 59
3008
2713
  I
3009
- 41
2714
+ 48
3010
2715
  I
3011
- 64
2716
+ 5a
3012
2717
  I
3013
2718
  4a
3014
2719
  I
3015
- 65
3016
- I
3017
- 4c
3018
- I
3019
- 66
2720
+ 5b
3020
2721
  I
3021
- 93
2722
+ 91
3022
2723
  I
3023
- 67
2724
+ 5c
3024
2725
  I
3025
- b0
2726
+ ae
3026
2727
  I
3027
- 68
2728
+ 5d
3028
2729
  I
3029
2730
  cc
3030
2731
  I
3031
- 0
3032
- I
3033
- ce
3034
- I
3035
- 69
3036
- I
3037
- e8
3038
- I
3039
- 6a
2732
+ 5e
3040
2733
  I
3041
- fb
2734
+ e6
3042
2735
  I
3043
- 6b
2736
+ 5f
3044
2737
  I
3045
- 10d
2738
+ f9
3046
2739
  I
3047
- 6c
2740
+ 60
3048
2741
  I
3049
- 112
2742
+ 10b
3050
2743
  I
3051
- 0
2744
+ 61
3052
2745
  I
3053
- 118
2746
+ 116
3054
2747
  x
3055
- 83
3056
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
2748
+ 81
2749
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
3057
2750
  p
3058
2751
  4
3059
2752
  x
@@ -3073,28 +2766,28 @@ p
3073
2766
  I
3074
2767
  2
3075
2768
  I
3076
- 46
2769
+ 3b
3077
2770
  I
3078
2771
  e
3079
2772
  I
3080
- 48
2773
+ 3d
3081
2774
  I
3082
2775
  1c
3083
2776
  I
3084
- 50
2777
+ 45
3085
2778
  I
3086
2779
  20
3087
2780
  I
3088
- 51
2781
+ 46
3089
2782
  I
3090
2783
  2e
3091
2784
  x
3092
- 83
3093
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
2785
+ 81
2786
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
3094
2787
  p
3095
2788
  0
3096
2789
  p
3097
- 17
2790
+ 13
3098
2791
  I
3099
2792
  2
3100
2793
  I
@@ -3102,36 +2795,28 @@ I
3102
2795
  I
3103
2796
  10
3104
2797
  I
3105
- 9
2798
+ a
3106
2799
  I
3107
2800
  1e
3108
2801
  I
3109
- e
2802
+ 10
3110
2803
  I
3111
2804
  39
3112
2805
  I
3113
- 2d
2806
+ 2f
3114
2807
  I
3115
2808
  3d
3116
2809
  I
3117
- 2f
2810
+ 30
3118
2811
  I
3119
2812
  4b
3120
2813
  I
3121
- 35
3122
- I
3123
- 59
3124
- I
3125
- 3c
3126
- I
3127
- 67
3128
- I
3129
- 45
2814
+ 3a
3130
2815
  I
3131
- 82
2816
+ 66
3132
2817
  x
3133
- 83
3134
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
2818
+ 81
2819
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
3135
2820
  p
3136
2821
  0
3137
2822
  x
@@ -3146,7 +2831,7 @@ I
3146
2831
  I
3147
2832
  22
3148
2833
  x
3149
- 83
3150
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
2834
+ 81
2835
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/image_size.rb
3151
2836
  p
3152
2837
  0