compass 0.12.alpha.0 → 0.12.alpha.1

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