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
@@ -22,7 +22,7 @@ module Compass::SassExtensions::Functions::Sprites
22
22
  def sprite_map(glob, kwargs = {})
23
23
  kwargs.extend VariableReader
24
24
  Compass::SassExtensions::Sprites::SpriteMap.from_uri(glob, self, kwargs)
25
- end
25
+ end
26
26
  Sass::Script::Functions.declare :sprite_map, [:glob], :var_kwargs => true
27
27
 
28
28
  # Returns the image and background position for use in a single shorthand property:
@@ -34,7 +34,7 @@ module Compass::SassExtensions::Functions::Sprites
34
34
  #
35
35
  # background: url('/images/icons.png?12345678') 0 -24px no-repeat;
36
36
  def sprite(map, sprite, offset_x = ZERO, offset_y = ZERO)
37
- sprite = convert_sprite_name(sprite)
37
+ sprite = convert_sprite_name(sprite)
38
38
  verify_map(map)
39
39
  unless sprite.is_a?(Sass::Script::String)
40
40
  raise Sass::SyntaxError, %Q(The second argument to sprite() must be a sprite name. See http://beta.compass-style.org/help/tutorials/spriting/ for more information.)
@@ -61,7 +61,7 @@ module Compass::SassExtensions::Functions::Sprites
61
61
  verify_map(map, "sprite")
62
62
  verify_sprite(sprite)
63
63
  if image = map.image_for(sprite.value)
64
- Sass::Script::String.new(image.relative_file)
64
+ Sass::Script::String.new(image.file)
65
65
  else
66
66
  missing_image!(map, sprite)
67
67
  end
@@ -96,9 +96,7 @@ module Compass::SassExtensions::Functions::Sprites
96
96
  def sprite_url(map)
97
97
  verify_map(map, "sprite-url")
98
98
  map.generate
99
- image_url(Sass::Script::String.new("#{map.path}-s#{map.uniqueness_hash}.png"),
100
- Sass::Script::Bool.new(false),
101
- Sass::Script::Bool.new(false))
99
+ generated_image_url(Sass::Script::String.new("#{map.path}-s#{map.uniqueness_hash}.png"))
102
100
  end
103
101
  Sass::Script::Functions.declare :sprite_url, [:map]
104
102
 
@@ -147,7 +145,7 @@ module Compass::SassExtensions::Functions::Sprites
147
145
  Sass::Script::Functions.declare :sprite_position, [:map, :sprite, :offset_x, :offset_y]
148
146
 
149
147
  def sprite_image(*args)
150
- raise Sass::SyntaxError, %Q(The sprite-image() function has been replaced by sprite(). See http://beta.compass-style.org/help/tutorials/spriting/ for more information.)
148
+ raise Sass::SyntaxError, %Q(The sprite-image() function has been replaced by sprite(). See http://compass-style.org/help/tutorials/spriting/ for more information.)
151
149
  end
152
150
 
153
151
  protected
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 9595534255132031488
2
+ 333337424968067900
3
3
  x
4
4
  M
5
5
  1
@@ -820,8 +820,8 @@ I
820
820
  I
821
821
  23
822
822
  x
823
- 80
824
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
823
+ 78
824
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
825
825
  p
826
826
  1
827
827
  x
@@ -842,8 +842,8 @@ I
842
842
  I
843
843
  10
844
844
  x
845
- 80
846
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
845
+ 78
846
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
847
847
  p
848
848
  0
849
849
  x
@@ -959,8 +959,8 @@ I
959
959
  I
960
960
  29
961
961
  x
962
- 80
963
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
962
+ 78
963
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
964
964
  p
965
965
  2
966
966
  x
@@ -1233,7 +1233,7 @@ x
1233
1233
  10
1234
1234
  initialize
1235
1235
  p
1236
- 19
1236
+ 17
1237
1237
  I
1238
1238
  -1
1239
1239
  I
@@ -1255,10 +1255,6 @@ I
1255
1255
  I
1256
1256
  28
1257
1257
  I
1258
- 44
1259
- I
1260
- 0
1261
- I
1262
1258
  45
1263
1259
  I
1264
1260
  2a
@@ -1273,8 +1269,8 @@ I
1273
1269
  I
1274
1270
  96
1275
1271
  x
1276
- 80
1277
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
1272
+ 78
1273
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
1278
1274
  p
1279
1275
  6
1280
1276
  x
@@ -1425,8 +1421,8 @@ I
1425
1421
  I
1426
1422
  32
1427
1423
  x
1428
- 80
1429
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
1424
+ 78
1425
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
1430
1426
  p
1431
1427
  1
1432
1428
  x
@@ -1587,8 +1583,8 @@ x
1587
1583
  8
1588
1584
  allocate
1589
1585
  x
1590
- 4
1591
- file
1586
+ 13
1587
+ relative_file
1592
1588
  x
1593
1589
  10
1594
1590
  initialize
@@ -1596,7 +1592,7 @@ x
1596
1592
  14
1597
1593
  missing_image!
1598
1594
  p
1599
- 17
1595
+ 15
1600
1596
  I
1601
1597
  -1
1602
1598
  I
@@ -1626,14 +1622,10 @@ I
1626
1622
  I
1627
1623
  42
1628
1624
  I
1629
- 5c
1630
- I
1631
- 0
1632
- I
1633
1625
  5d
1634
1626
  x
1635
- 80
1636
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
1627
+ 78
1628
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
1637
1629
  p
1638
1630
  3
1639
1631
  x
@@ -1821,8 +1813,8 @@ I
1821
1813
  I
1822
1814
  57
1823
1815
  x
1824
- 80
1825
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
1816
+ 78
1817
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
1826
1818
  p
1827
1819
  2
1828
1820
  x
@@ -2074,7 +2066,7 @@ x
2074
2066
  10
2075
2067
  initialize
2076
2068
  p
2077
- 17
2069
+ 15
2078
2070
  I
2079
2071
  -1
2080
2072
  I
@@ -2100,18 +2092,14 @@ I
2100
2092
  I
2101
2093
  57
2102
2094
  I
2103
- 44
2104
- I
2105
- 0
2106
- I
2107
2095
  45
2108
2096
  I
2109
2097
  59
2110
2098
  I
2111
2099
  94
2112
2100
  x
2113
- 80
2114
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
2101
+ 78
2102
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
2115
2103
  p
2116
2104
  3
2117
2105
  x
@@ -2138,7 +2126,7 @@ x
2138
2126
  10
2139
2127
  sprite_url
2140
2128
  i
2141
- 95
2129
+ 155
2142
2130
  5
2143
2131
  20
2144
2132
  0
@@ -2229,10 +2217,70 @@ i
2229
2217
  49
2230
2218
  7
2231
2219
  1
2220
+ 45
2221
+ 3
2222
+ 15
2223
+ 43
2224
+ 5
2225
+ 43
2226
+ 16
2227
+ 13
2228
+ 71
2229
+ 7
2230
+ 47
2231
+ 9
2232
+ 116
2233
+ 47
2234
+ 49
2235
+ 8
2236
+ 0
2237
+ 13
2238
+ 3
2239
+ 47
2240
+ 49
2241
+ 14
2242
+ 1
2243
+ 15
2244
+ 8
2245
+ 120
2246
+ 3
2247
+ 49
2248
+ 7
2249
+ 1
2250
+ 45
2251
+ 3
2252
+ 17
2253
+ 43
2254
+ 5
2255
+ 43
2256
+ 16
2257
+ 13
2258
+ 71
2259
+ 7
2260
+ 47
2261
+ 9
2262
+ 146
2263
+ 47
2264
+ 49
2265
+ 8
2266
+ 0
2267
+ 13
2268
+ 3
2232
2269
  47
2233
2270
  49
2271
+ 14
2272
+ 1
2234
2273
  15
2274
+ 8
2275
+ 150
2276
+ 3
2277
+ 49
2278
+ 7
2235
2279
  1
2280
+ 47
2281
+ 49
2282
+ 18
2283
+ 3
2236
2284
  11
2237
2285
  I
2238
2286
  8
@@ -2244,7 +2292,7 @@ I
2244
2292
  1
2245
2293
  n
2246
2294
  p
2247
- 16
2295
+ 19
2248
2296
  s
2249
2297
  10
2250
2298
  sprite-url
@@ -2288,11 +2336,16 @@ s
2288
2336
  x
2289
2337
  10
2290
2338
  initialize
2339
+ n
2340
+ x
2341
+ 4
2342
+ Bool
2343
+ n
2291
2344
  x
2292
- 19
2293
- generated_image_url
2294
- p
2295
2345
  9
2346
+ image_url
2347
+ p
2348
+ 15
2296
2349
  I
2297
2350
  -1
2298
2351
  I
@@ -2310,10 +2363,22 @@ I
2310
2363
  I
2311
2364
  63
2312
2365
  I
2313
- 5f
2366
+ 5a
2367
+ I
2368
+ 64
2369
+ I
2370
+ 78
2371
+ I
2372
+ 65
2373
+ I
2374
+ 96
2375
+ I
2376
+ 63
2377
+ I
2378
+ 9b
2314
2379
  x
2315
- 80
2316
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
2380
+ 78
2381
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
2317
2382
  p
2318
2383
  1
2319
2384
  x
@@ -2331,7 +2396,7 @@ x
2331
2396
  15
2332
2397
  sprite_position
2333
2398
  i
2334
- 363
2399
+ 343
2335
2400
  23
2336
2401
  1
2337
2402
  10
@@ -2362,30 +2427,10 @@ i
2362
2427
  15
2363
2428
  5
2364
2429
  20
2365
- 2
2366
- 7
2367
- 3
2368
- 47
2369
- 49
2370
- 4
2371
- 2
2372
- 15
2373
- 5
2374
- 20
2375
- 3
2376
- 7
2377
- 3
2378
- 47
2379
- 49
2380
- 4
2381
- 2
2382
- 15
2383
- 5
2384
- 20
2385
2430
  1
2386
2431
  47
2387
2432
  49
2388
- 5
2433
+ 3
2389
2434
  1
2390
2435
  19
2391
2436
  1
@@ -2394,48 +2439,48 @@ i
2394
2439
  20
2395
2440
  0
2396
2441
  7
2397
- 6
2442
+ 4
2398
2443
  64
2399
2444
  47
2400
2445
  49
2401
- 7
2446
+ 5
2402
2447
  2
2403
2448
  15
2404
2449
  20
2405
2450
  1
2406
2451
  13
2407
2452
  9
2408
- 87
2453
+ 67
2409
2454
  15
2410
2455
  20
2411
2456
  1
2412
2457
  45
2413
- 8
2414
- 9
2458
+ 6
2459
+ 7
2415
2460
  43
2416
- 10
2461
+ 8
2417
2462
  43
2418
- 11
2463
+ 9
2419
2464
  49
2420
- 12
2465
+ 10
2421
2466
  1
2422
2467
  9
2423
- 92
2468
+ 72
2424
2469
  1
2425
2470
  8
2426
- 105
2471
+ 85
2427
2472
  5
2428
2473
  45
2429
- 8
2430
- 13
2474
+ 6
2475
+ 11
2431
2476
  43
2432
- 14
2477
+ 12
2433
2478
  7
2434
- 15
2479
+ 13
2435
2480
  64
2436
2481
  47
2437
2482
  49
2438
- 16
2483
+ 14
2439
2484
  2
2440
2485
  15
2441
2486
  20
@@ -2443,10 +2488,10 @@ i
2443
2488
  20
2444
2489
  1
2445
2490
  49
2446
- 17
2491
+ 15
2447
2492
  0
2448
2493
  49
2449
- 18
2494
+ 16
2450
2495
  1
2451
2496
  19
2452
2497
  4
@@ -2454,10 +2499,10 @@ i
2454
2499
  20
2455
2500
  4
2456
2501
  9
2457
- 126
2502
+ 106
2458
2503
  1
2459
2504
  8
2460
- 135
2505
+ 115
2461
2506
  5
2462
2507
  20
2463
2508
  0
@@ -2465,58 +2510,58 @@ i
2465
2510
  1
2466
2511
  47
2467
2512
  49
2468
- 19
2513
+ 17
2469
2514
  2
2470
2515
  15
2471
2516
  20
2472
2517
  2
2473
2518
  49
2474
- 20
2519
+ 18
2475
2520
  0
2476
2521
  7
2477
- 21
2522
+ 19
2478
2523
  64
2479
2524
  83
2480
- 22
2525
+ 20
2481
2526
  9
2482
- 154
2527
+ 134
2483
2528
  20
2484
2529
  2
2485
2530
  19
2486
2531
  5
2487
2532
  8
2488
- 235
2533
+ 215
2489
2534
  20
2490
2535
  2
2491
2536
  49
2492
- 17
2537
+ 15
2493
2538
  0
2494
2539
  20
2495
2540
  4
2496
2541
  49
2497
- 23
2542
+ 21
2498
2543
  0
2499
2544
  82
2500
- 24
2545
+ 22
2501
2546
  19
2502
2547
  5
2503
2548
  15
2504
2549
  45
2505
- 8
2506
- 25
2550
+ 6
2551
+ 23
2507
2552
  43
2508
- 10
2553
+ 8
2509
2554
  43
2510
- 3
2555
+ 24
2511
2556
  13
2512
2557
  71
2513
- 26
2558
+ 25
2514
2559
  47
2515
2560
  9
2516
- 212
2561
+ 192
2517
2562
  47
2518
2563
  49
2519
- 27
2564
+ 26
2520
2565
  0
2521
2566
  13
2522
2567
  20
@@ -2525,45 +2570,45 @@ i
2525
2570
  5
2526
2571
  78
2527
2572
  83
2528
- 22
2573
+ 20
2529
2574
  9
2530
- 200
2575
+ 180
2531
2576
  35
2532
2577
  0
2533
2578
  8
2534
- 205
2579
+ 185
2535
2580
  7
2536
- 28
2581
+ 27
2537
2582
  64
2538
2583
  35
2539
2584
  1
2540
2585
  47
2541
2586
  49
2542
- 29
2587
+ 28
2543
2588
  2
2544
2589
  15
2545
2590
  8
2546
- 233
2591
+ 213
2547
2592
  20
2548
2593
  5
2549
2594
  20
2550
2595
  5
2551
2596
  78
2552
2597
  83
2553
- 22
2598
+ 20
2554
2599
  9
2555
- 225
2600
+ 205
2556
2601
  35
2557
2602
  0
2558
2603
  8
2559
- 230
2604
+ 210
2560
2605
  7
2561
- 28
2606
+ 27
2562
2607
  64
2563
2608
  35
2564
2609
  1
2565
2610
  49
2566
- 26
2611
+ 25
2567
2612
  2
2568
2613
  19
2569
2614
  5
@@ -2571,34 +2616,34 @@ i
2571
2616
  20
2572
2617
  3
2573
2618
  49
2574
- 17
2619
+ 15
2575
2620
  0
2576
2621
  20
2577
2622
  4
2578
2623
  49
2579
- 30
2624
+ 29
2580
2625
  0
2581
2626
  82
2582
- 24
2627
+ 22
2583
2628
  19
2584
2629
  6
2585
2630
  15
2586
2631
  45
2587
- 8
2588
- 31
2632
+ 6
2633
+ 30
2589
2634
  43
2590
- 10
2635
+ 8
2591
2636
  43
2592
- 3
2637
+ 24
2593
2638
  13
2594
2639
  71
2595
- 26
2640
+ 25
2596
2641
  47
2597
2642
  9
2598
- 294
2643
+ 274
2599
2644
  47
2600
2645
  49
2601
- 27
2646
+ 26
2602
2647
  0
2603
2648
  13
2604
2649
  20
@@ -2607,65 +2652,65 @@ i
2607
2652
  6
2608
2653
  78
2609
2654
  83
2610
- 22
2655
+ 20
2611
2656
  9
2612
- 282
2657
+ 262
2613
2658
  35
2614
2659
  0
2615
2660
  8
2616
- 287
2661
+ 267
2617
2662
  7
2618
- 28
2663
+ 27
2619
2664
  64
2620
2665
  35
2621
2666
  1
2622
2667
  47
2623
2668
  49
2624
- 29
2669
+ 28
2625
2670
  2
2626
2671
  15
2627
2672
  8
2628
- 315
2673
+ 295
2629
2674
  20
2630
2675
  6
2631
2676
  20
2632
2677
  6
2633
2678
  78
2634
2679
  83
2635
- 22
2680
+ 20
2636
2681
  9
2637
- 307
2682
+ 287
2638
2683
  35
2639
2684
  0
2640
2685
  8
2641
- 312
2686
+ 292
2642
2687
  7
2643
- 28
2688
+ 27
2644
2689
  64
2645
2690
  35
2646
2691
  1
2647
2692
  49
2648
- 26
2693
+ 25
2649
2694
  2
2650
2695
  19
2651
2696
  6
2652
2697
  15
2653
2698
  45
2654
- 8
2655
- 32
2699
+ 6
2700
+ 31
2656
2701
  43
2657
- 10
2702
+ 8
2658
2703
  43
2659
- 33
2704
+ 32
2660
2705
  13
2661
2706
  71
2662
- 26
2707
+ 25
2663
2708
  47
2664
2709
  9
2665
- 351
2710
+ 331
2666
2711
  47
2667
2712
  49
2668
- 27
2713
+ 26
2669
2714
  0
2670
2715
  13
2671
2716
  20
@@ -2675,14 +2720,14 @@ i
2675
2720
  35
2676
2721
  2
2677
2722
  7
2678
- 34
2723
+ 33
2679
2724
  47
2680
2725
  49
2681
- 29
2726
+ 28
2682
2727
  2
2683
2728
  15
2684
2729
  8
2685
- 362
2730
+ 342
2686
2731
  20
2687
2732
  5
2688
2733
  20
@@ -2690,9 +2735,9 @@ i
2690
2735
  35
2691
2736
  2
2692
2737
  7
2693
- 34
2738
+ 33
2694
2739
  49
2695
- 26
2740
+ 25
2696
2741
  2
2697
2742
  11
2698
2743
  I
@@ -2705,19 +2750,13 @@ I
2705
2750
  4
2706
2751
  n
2707
2752
  p
2708
- 35
2753
+ 34
2709
2754
  x
2710
2755
  4
2711
2756
  ZERO
2712
2757
  n
2713
2758
  n
2714
2759
  x
2715
- 6
2716
- Number
2717
- x
2718
- 11
2719
- assert_type
2720
- x
2721
2760
  19
2722
2761
  convert_sprite_name
2723
2762
  s
@@ -2775,6 +2814,9 @@ x
2775
2814
  -
2776
2815
  n
2777
2816
  x
2817
+ 6
2818
+ Number
2819
+ x
2778
2820
  3
2779
2821
  new
2780
2822
  x
@@ -2798,124 +2840,72 @@ x
2798
2840
  5
2799
2841
  space
2800
2842
  p
2801
- 57
2843
+ 31
2802
2844
  I
2803
2845
  -1
2804
2846
  I
2805
- 7a
2806
- I
2807
- 1c
2808
- I
2809
- 7b
2810
- I
2811
- 26
2812
- I
2813
2847
  7c
2814
2848
  I
2815
- 30
2849
+ 1c
2816
2850
  I
2817
2851
  7d
2818
2852
  I
2819
- 3a
2853
+ 26
2820
2854
  I
2821
2855
  7e
2822
2856
  I
2823
- 45
2857
+ 31
2824
2858
  I
2825
2859
  7f
2826
2860
  I
2827
- 5c
2861
+ 48
2828
2862
  I
2829
2863
  80
2830
2864
  I
2831
- 69
2832
- I
2833
- 0
2834
- I
2835
- 6a
2865
+ 56
2836
2866
  I
2837
2867
  82
2838
2868
  I
2839
- 77
2869
+ 63
2840
2870
  I
2841
2871
  83
2842
2872
  I
2843
- 7e
2873
+ 6a
2844
2874
  I
2845
2875
  84
2846
2876
  I
2847
- 87
2848
- I
2849
- 0
2850
- I
2851
- 88
2877
+ 74
2852
2878
  I
2853
2879
  86
2854
2880
  I
2855
- 94
2881
+ 80
2856
2882
  I
2857
2883
  87
2858
2884
  I
2859
- 9a
2885
+ 86
2860
2886
  I
2861
2887
  89
2862
2888
  I
2863
- a9
2864
- I
2865
- 8a
2866
- I
2867
- cd
2868
- I
2869
- 0
2870
- I
2871
- d4
2872
- I
2873
- 8a
2874
- I
2875
- e6
2876
- I
2877
- 0
2878
- I
2879
- e9
2889
+ 95
2880
2890
  I
2881
2891
  8a
2882
2892
  I
2883
- eb
2884
- I
2885
- 0
2886
- I
2887
- ec
2893
+ d8
2888
2894
  I
2889
2895
  8c
2890
2896
  I
2891
- fb
2897
+ e7
2892
2898
  I
2893
2899
  8d
2894
2900
  I
2895
- 11f
2896
- I
2897
- 0
2898
- I
2899
- 126
2900
- I
2901
- 8d
2902
- I
2903
- 138
2904
- I
2905
- 0
2906
- I
2907
- 13b
2908
- I
2909
- 8d
2910
- I
2911
- 13e
2901
+ 12a
2912
2902
  I
2913
2903
  8e
2914
2904
  I
2915
- 16b
2905
+ 157
2916
2906
  x
2917
- 80
2918
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
2907
+ 78
2908
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
2919
2909
  p
2920
2910
  7
2921
2911
  x
@@ -2989,8 +2979,8 @@ x
2989
2979
  11
2990
2980
  SyntaxError
2991
2981
  s
2992
- 134
2993
- The sprite-image() function has been replaced by sprite(). See http://compass-style.org/help/tutorials/spriting/ for more information.
2982
+ 139
2983
+ The sprite-image() function has been replaced by sprite(). See http://beta.compass-style.org/help/tutorials/spriting/ for more information.
2994
2984
  x
2995
2985
  5
2996
2986
  raise
@@ -3007,8 +2997,8 @@ I
3007
2997
  I
3008
2998
  e
3009
2999
  x
3010
- 80
3011
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
3000
+ 78
3001
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
3012
3002
  p
3013
3003
  1
3014
3004
  x
@@ -3162,7 +3152,7 @@ x
3162
3152
  initialize
3163
3153
  n
3164
3154
  p
3165
- 13
3155
+ 11
3166
3156
  I
3167
3157
  -1
3168
3158
  I
@@ -3180,18 +3170,14 @@ I
3180
3170
  I
3181
3171
  9c
3182
3172
  I
3183
- 50
3184
- I
3185
- 0
3186
- I
3187
3173
  51
3188
3174
  I
3189
3175
  9f
3190
3176
  I
3191
3177
  54
3192
3178
  x
3193
- 80
3194
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
3179
+ 78
3180
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
3195
3181
  p
3196
3182
  1
3197
3183
  x
@@ -3280,7 +3266,7 @@ x
3280
3266
  15
3281
3267
  missing_sprite!
3282
3268
  p
3283
- 9
3269
+ 7
3284
3270
  I
3285
3271
  -1
3286
3272
  I
@@ -3294,14 +3280,10 @@ I
3294
3280
  I
3295
3281
  a4
3296
3282
  I
3297
- 24
3298
- I
3299
- 0
3300
- I
3301
3283
  25
3302
3284
  x
3303
- 80
3304
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
3285
+ 78
3286
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
3305
3287
  p
3306
3288
  2
3307
3289
  x
@@ -3388,7 +3370,7 @@ x
3388
3370
  5
3389
3371
  raise
3390
3372
  p
3391
- 9
3373
+ 7
3392
3374
  I
3393
3375
  -1
3394
3376
  I
@@ -3402,14 +3384,10 @@ I
3402
3384
  I
3403
3385
  aa
3404
3386
  I
3405
- 1e
3406
- I
3407
- 0
3408
- I
3409
3387
  1f
3410
3388
  x
3411
- 80
3412
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
3389
+ 78
3390
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
3413
3391
  p
3414
3392
  1
3415
3393
  x
@@ -3547,8 +3525,8 @@ af
3547
3525
  I
3548
3526
  38
3549
3527
  x
3550
- 80
3551
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
3528
+ 78
3529
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
3552
3530
  p
3553
3531
  2
3554
3532
  x
@@ -3634,8 +3612,8 @@ b3
3634
3612
  I
3635
3613
  16
3636
3614
  x
3637
- 80
3638
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
3615
+ 78
3616
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
3639
3617
  p
3640
3618
  1
3641
3619
  x
@@ -3718,11 +3696,11 @@ I
3718
3696
  I
3719
3697
  160
3720
3698
  I
3721
- 65
3699
+ 67
3722
3700
  I
3723
3701
  171
3724
3702
  I
3725
- 7a
3703
+ 7c
3726
3704
  I
3727
3705
  17f
3728
3706
  I
@@ -3770,8 +3748,8 @@ b2
3770
3748
  I
3771
3749
  227
3772
3750
  x
3773
- 80
3774
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
3751
+ 78
3752
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
3775
3753
  p
3776
3754
  0
3777
3755
  x
@@ -3786,7 +3764,7 @@ I
3786
3764
  I
3787
3765
  22
3788
3766
  x
3789
- 80
3790
- /Users/crispee/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
3767
+ 78
3768
+ /Users/chris/Projects/compass/lib/compass/sass_extensions/functions/sprites.rb
3791
3769
  p
3792
3770
  0