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,8 +1,16 @@
1
+ require 'erb'
2
+ require 'compass/sprite_importer/binding'
1
3
  module Compass
2
4
  class SpriteImporter < Sass::Importers::Base
3
5
  VAILD_FILE_NAME = /\A#{Sass::SCSS::RX::IDENT}\Z/
4
6
  SPRITE_IMPORTER_REGEX = %r{((.+/)?([^\*.]+))/(.+?)\.png}
5
7
  VALID_EXTENSIONS = ['.png']
8
+
9
+ TEMPLATE_FOLDER = File.join(File.expand_path('../', __FILE__), 'sprite_importer')
10
+ CONTENT_TEMPLATE_FILE = File.join(TEMPLATE_FOLDER, 'content.erb')
11
+ CONTENT_TEMPLATE = ERB.new(File.read(CONTENT_TEMPLATE_FILE))
12
+
13
+
6
14
 
7
15
  # finds all sprite files
8
16
  def self.find_all_sprite_map_files(path)
@@ -19,7 +27,7 @@ module Compass
19
27
  end
20
28
 
21
29
  def find_relative(uri, base, options)
22
- find(File.join(base, uri), options)
30
+ nil
23
31
  end
24
32
 
25
33
  def to_s
@@ -85,93 +93,20 @@ module Compass
85
93
  end
86
94
 
87
95
  # Returns the sass_options for this sprite
88
- def self.sass_options(name, importer, options)
89
- options.merge!(:filename => name, :syntax => :scss, :importer => importer)
96
+ def self.sass_options(uri, importer, options)
97
+ options.merge!(:filename => uri, :syntax => :scss, :importer => importer)
90
98
  end
91
99
 
92
100
  # Returns a Sass::Engine for this sprite object
93
101
  def self.sass_engine(uri, name, importer, options)
94
- Sass::Engine.new(content_for_images(uri, name, options[:skip_overrides]), sass_options(name, importer, options))
102
+ content = content_for_images(uri, name, options[:skip_overrides])
103
+ Sass::Engine.new(content, sass_options(uri, importer, options))
95
104
  end
96
105
 
97
106
  # Generates the Sass for this sprite file
98
107
  def self.content_for_images(uri, name, skip_overrides = false)
99
- <<-SCSS
100
- @import "compass/utilities/sprites/base";
101
-
102
- // General Sprite Defaults
103
- // You can override them before you import this file.
104
- $#{name}-sprite-base-class: ".#{name}-sprite" !default;
105
- $#{name}-sprite-dimensions: false !default;
106
- $#{name}-position: 0% !default;
107
- $#{name}-spacing: 0 !default;
108
- $#{name}-repeat: no-repeat !default;
109
- $#{name}-prefix: '' !default;
110
- $#{name}-clean-up: true !default;
111
- $#{name}-layout:vertical !default;
112
-
113
- #{skip_overrides ? "$#{name}-sprites: sprite-map(\"#{uri}\", $layout: $#{name}-layout, $cleanup: $#{name}-clean-up);" : generate_overrides(uri, name) }
114
-
115
- // All sprites should extend this class
116
- // The #{name}-sprite mixin will do so for you.
117
- \#{$#{name}-sprite-base-class} {
118
- background: $#{name}-sprites no-repeat;
119
- }
120
-
121
- // Use this to set the dimensions of an element
122
- // based on the size of the original image.
123
- @mixin #{name}-sprite-dimensions($name) {
124
- @include sprite-dimensions($#{name}-sprites, $name)
125
- }
126
-
127
- // Move the background position to display the sprite.
128
- @mixin #{name}-sprite-position($name, $offset-x: 0, $offset-y: 0) {
129
- @include sprite-background-position($#{name}-sprites, $name, $offset-x, $offset-y)
130
- }
131
-
132
- // Extends the sprite base class and set the background position for the desired sprite.
133
- // It will also apply the image dimensions if $dimensions is true.
134
- @mixin #{name}-sprite($name, $dimensions: $#{name}-sprite-dimensions, $offset-x: 0, $offset-y: 0) {
135
- @extend \#{$#{name}-sprite-base-class};
136
- @include sprite($#{name}-sprites, $name, $dimensions, $offset-x, $offset-y)
137
- }
138
-
139
- @mixin #{name}-sprites($sprite-names, $dimensions: $#{name}-sprite-dimensions, $prefix: sprite-map-name($#{name}-sprites), $offset-x: 0, $offset-y: 0) {
140
- @include sprites($#{name}-sprites, $sprite-names, $#{name}-sprite-base-class, $dimensions, $prefix, $offset-x, $offset-y)
141
- }
142
-
143
- // Generates a class for each sprited image.
144
- @mixin all-#{name}-sprites($dimensions: $#{name}-sprite-dimensions, $prefix: sprite-map-name($#{name}-sprites), $offset-x: 0, $offset-y: 0) {
145
- @include #{name}-sprites(#{sprite_names(uri).join(" ")}, $dimensions, $prefix, $offset-x, $offset-y);
146
- }
147
- SCSS
148
- end
149
-
150
- # Generates the override defaults for this Sprite
151
- # <tt>$#{name}-#{sprite_name}-position </tt>
152
- # <tt> $#{name}-#{sprite_name}-spacing </tt>
153
- # <tt> #{name}-#{sprite_name}-repeat: </tt>
154
- def self.generate_overrides(uri, name)
155
- sprites = sprite_names(uri)
156
- content = <<-TXT
157
- // These variables control the generated sprite output
158
- // You can override them selectively before you import this file.
159
- TXT
160
- sprites.map do |sprite_name|
161
- content += <<-SCSS
162
- $#{name}-#{sprite_name}-position: $#{name}-position !default;
163
- $#{name}-#{sprite_name}-spacing: $#{name}-spacing !default;
164
- $#{name}-#{sprite_name}-repeat: $#{name}-repeat !default;
165
- SCSS
166
- end.join
167
-
168
- content += "\n$#{name}-sprites: sprite-map(\"#{uri}\", \n$layout: $#{name}-layout, \n$cleanup: $#{name}-clean-up,\n"
169
- content += sprites.map do |sprite_name|
170
- %Q{ $#{sprite_name}-position: $#{name}-#{sprite_name}-position,
171
- $#{sprite_name}-spacing: $#{name}-#{sprite_name}-spacing,
172
- $#{sprite_name}-repeat: $#{name}-#{sprite_name}-repeat}
173
- end.join(",\n")
174
- content += ");"
108
+ binder = Compass::Sprites::Binding.new(:name => name, :uri => uri, :skip_overrides => skip_overrides, :sprite_names => sprite_names(uri), :files => files(uri))
109
+ CONTENT_TEMPLATE.result(binder.get_binding)
175
110
  end
176
111
  end
177
112
  end
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 333337424968067900
2
+ 9595534255132031488
3
3
  x
4
4
  M
5
5
  1
@@ -140,360 +140,284 @@ x
140
140
  14
141
141
  SpriteImporter
142
142
  i
143
- 355
143
+ 279
144
144
  5
145
145
  66
146
- 5
147
- 7
148
- 0
149
- 7
150
- 1
151
- 47
152
- 49
153
- 2
154
- 2
155
- 15
156
146
  65
157
147
  7
158
- 3
148
+ 0
159
149
  44
160
150
  43
161
- 4
151
+ 1
162
152
  7
163
- 5
153
+ 2
164
154
  45
165
- 6
166
- 7
155
+ 3
156
+ 4
167
157
  43
168
- 8
158
+ 5
169
159
  43
170
- 9
160
+ 6
171
161
  43
172
- 10
162
+ 7
173
163
  47
174
164
  101
175
- 11
165
+ 8
176
166
  7
177
- 12
167
+ 9
178
168
  63
179
169
  3
180
170
  78
181
171
  49
182
- 13
172
+ 10
183
173
  2
184
174
  49
185
- 14
175
+ 11
186
176
  2
187
177
  15
188
178
  65
189
179
  7
190
- 15
180
+ 12
191
181
  7
192
- 16
182
+ 13
193
183
  13
194
184
  70
195
185
  9
196
- 65
186
+ 55
197
187
  15
198
188
  44
199
189
  43
200
- 4
190
+ 1
201
191
  7
202
- 17
192
+ 14
203
193
  78
204
194
  49
205
- 13
195
+ 10
206
196
  2
207
197
  6
208
- 16
198
+ 13
209
199
  49
210
- 14
200
+ 11
211
201
  2
212
202
  15
213
203
  65
214
204
  7
215
- 18
205
+ 15
216
206
  7
217
- 19
207
+ 16
218
208
  64
219
209
  35
220
210
  1
221
211
  49
222
- 14
212
+ 11
223
213
  2
224
214
  15
225
215
  99
226
216
  7
227
- 20
217
+ 17
228
218
  7
229
- 21
219
+ 18
230
220
  65
231
221
  5
232
222
  49
233
- 22
223
+ 19
234
224
  4
235
225
  15
236
226
  99
237
227
  7
238
- 23
228
+ 20
239
229
  7
240
- 24
230
+ 21
241
231
  65
242
232
  67
243
233
  49
244
- 25
234
+ 22
245
235
  0
246
236
  49
247
- 26
237
+ 23
248
238
  4
249
239
  15
250
240
  99
251
241
  7
252
- 27
242
+ 24
253
243
  7
254
- 28
255
- 65
256
- 67
257
- 49
258
244
  25
259
- 0
260
- 49
261
- 26
262
- 4
263
- 15
264
- 99
265
- 7
266
- 29
267
- 7
268
- 30
269
245
  65
270
246
  67
271
247
  49
272
- 25
248
+ 22
273
249
  0
274
250
  49
275
- 26
251
+ 23
276
252
  4
277
253
  15
278
254
  99
279
255
  7
280
- 11
256
+ 8
281
257
  7
282
- 31
258
+ 26
283
259
  65
284
260
  67
285
261
  49
286
- 25
262
+ 22
287
263
  0
288
264
  49
289
- 26
265
+ 23
290
266
  4
291
267
  15
292
268
  99
293
269
  7
294
- 32
270
+ 27
295
271
  7
296
- 33
272
+ 28
297
273
  65
298
274
  67
299
275
  49
300
- 25
276
+ 22
301
277
  0
302
278
  49
303
- 26
279
+ 23
304
280
  4
305
281
  15
306
282
  99
307
283
  7
308
- 34
284
+ 29
309
285
  7
310
- 35
286
+ 30
311
287
  65
312
288
  67
313
289
  49
314
- 25
290
+ 22
315
291
  0
316
292
  49
317
- 26
293
+ 23
318
294
  4
319
295
  15
320
296
  99
321
297
  7
322
- 36
298
+ 31
323
299
  7
324
- 37
300
+ 32
325
301
  65
326
302
  67
327
303
  49
328
- 25
304
+ 22
329
305
  0
330
306
  49
331
- 26
307
+ 23
332
308
  4
333
309
  15
334
310
  99
335
311
  7
336
- 38
312
+ 33
337
313
  7
338
- 39
314
+ 34
339
315
  65
340
316
  67
341
317
  49
342
- 25
318
+ 22
343
319
  0
344
320
  49
345
- 26
321
+ 23
346
322
  4
347
323
  15
348
324
  99
349
325
  7
350
- 40
326
+ 35
351
327
  7
352
- 41
328
+ 36
353
329
  65
354
330
  5
355
331
  49
356
- 22
357
- 4
358
- 15
359
- 99
360
- 7
361
- 42
362
- 7
363
- 43
364
- 65
365
- 67
366
- 49
367
- 25
368
- 0
369
- 49
370
- 26
332
+ 19
371
333
  4
372
334
  15
373
335
  99
374
336
  7
375
- 44
337
+ 37
376
338
  7
377
- 45
339
+ 38
378
340
  65
379
- 67
380
- 49
381
- 25
382
- 0
341
+ 5
383
342
  49
384
- 26
343
+ 19
385
344
  4
386
345
  15
387
346
  99
388
347
  7
389
- 46
348
+ 39
390
349
  7
391
- 47
350
+ 40
392
351
  65
393
- 67
394
- 49
395
- 25
396
- 0
352
+ 5
397
353
  49
398
- 26
354
+ 19
399
355
  4
400
356
  15
401
357
  99
402
358
  7
403
- 48
359
+ 41
404
360
  7
405
- 49
361
+ 42
406
362
  65
407
- 67
408
- 49
409
- 25
410
- 0
363
+ 5
411
364
  49
412
- 26
365
+ 19
413
366
  4
414
367
  15
415
368
  99
416
369
  7
417
- 50
370
+ 43
418
371
  7
419
- 51
372
+ 44
420
373
  65
421
- 67
422
- 49
423
- 25
424
- 0
374
+ 5
425
375
  49
426
- 26
376
+ 19
427
377
  4
428
378
  15
429
379
  99
430
380
  7
431
- 52
381
+ 45
432
382
  7
433
- 53
383
+ 46
434
384
  65
435
- 67
436
- 49
437
- 25
438
- 0
385
+ 5
439
386
  49
440
- 26
387
+ 19
441
388
  4
442
389
  15
443
390
  99
444
391
  7
445
- 54
392
+ 47
446
393
  7
447
- 55
394
+ 48
448
395
  65
449
- 67
450
- 49
451
- 25
452
- 0
396
+ 5
453
397
  49
454
- 26
398
+ 19
455
399
  4
456
400
  15
457
401
  99
458
402
  7
459
- 56
460
- 7
461
- 57
462
- 65
463
- 67
464
403
  49
465
- 25
466
- 0
467
- 49
468
- 26
469
- 4
470
- 15
471
- 99
472
- 7
473
- 58
474
404
  7
475
- 59
405
+ 50
476
406
  65
477
- 67
478
- 49
479
- 25
480
- 0
407
+ 5
481
408
  49
482
- 26
409
+ 19
483
410
  4
484
411
  15
485
412
  99
486
413
  7
487
- 60
414
+ 51
488
415
  7
489
- 61
416
+ 52
490
417
  65
491
- 67
492
- 49
493
- 25
494
- 0
418
+ 5
495
419
  49
496
- 26
420
+ 19
497
421
  4
498
422
  11
499
423
  I
@@ -506,19 +430,10 @@ I
506
430
  0
507
431
  n
508
432
  p
509
- 62
433
+ 53
510
434
  x
511
- 3
512
- uri
513
- x
514
- 7
515
- options
516
- x
517
- 13
518
- attr_accessor
519
- x
520
- 15
521
- VAILD_FILE_NAME
435
+ 15
436
+ VAILD_FILE_NAME
522
437
  x
523
438
  6
524
439
  Regexp
@@ -564,338 +479,166 @@ s
564
479
  4
565
480
  .png
566
481
  x
567
- 4
568
- load
482
+ 25
483
+ find_all_sprite_map_files
569
484
  M
570
485
  1
571
486
  n
572
487
  n
573
488
  x
574
- 4
575
- load
489
+ 25
490
+ find_all_sprite_map_files
576
491
  i
577
- 54
578
- 45
492
+ 59
493
+ 7
579
494
  0
495
+ 64
496
+ 19
580
497
  1
581
- 43
498
+ 15
499
+ 7
500
+ 1
501
+ 20
502
+ 1
503
+ 4
504
+ 10
505
+ 49
582
506
  2
583
- 13
584
- 71
585
- 3
586
- 47
587
- 9
588
- 23
507
+ 1
589
508
  47
590
- 49
509
+ 101
510
+ 3
511
+ 7
591
512
  4
592
- 0
593
- 13
594
- 47
595
- 49
513
+ 45
596
514
  5
597
- 0
598
- 15
599
- 8
600
- 26
515
+ 6
516
+ 7
517
+ 7
518
+ 64
601
519
  49
520
+ 8
521
+ 1
522
+ 47
523
+ 101
602
524
  3
603
- 0
525
+ 7
526
+ 9
527
+ 63
528
+ 5
604
529
  19
605
530
  2
606
531
  15
532
+ 45
533
+ 10
534
+ 11
535
+ 45
536
+ 12
537
+ 13
607
538
  20
608
539
  0
609
- 20
610
- 1
611
- 17
612
- 2
540
+ 7
541
+ 14
542
+ 64
613
543
  20
614
544
  2
615
- 12
616
545
  49
617
- 6
618
- 1
619
- 15
620
- 20
621
- 2
622
- 12
546
+ 8
547
+ 3
623
548
  49
624
- 7
625
- 1
626
- 15
627
- 2
628
549
  15
629
- 20
630
- 2
550
+ 1
631
551
  11
632
552
  I
633
- 6
553
+ 8
634
554
  I
635
555
  3
636
556
  I
637
- 2
557
+ 1
638
558
  I
639
- 2
640
- n
641
- p
642
- 8
643
- x
644
- 7
645
- Compass
559
+ 1
646
560
  n
647
- x
648
- 14
649
- SpriteImporter
650
- x
651
- 3
652
- new
653
- x
654
- 8
655
- allocate
656
- x
657
- 10
658
- initialize
659
- x
660
- 4
661
- uri=
662
- x
663
- 8
664
- options=
665
561
  p
666
- 9
667
- I
668
- -1
669
- I
562
+ 16
563
+ s
670
564
  8
671
- I
672
- 0
673
- I
674
- 9
675
- I
676
- 1d
677
- I
678
- a
679
- I
680
- 33
681
- I
682
- b
683
- I
684
- 36
685
- x
686
- 60
687
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
688
- p
689
- 3
690
- x
565
+ [0-9a-f]
566
+ s
691
567
  3
692
- uri
693
- x
694
- 7
695
- options
696
- x
697
- 5
698
- klass
568
+ *-s
699
569
  x
700
- 13
701
- attach_method
702
- x
703
- 10
704
- initialize
705
- M
706
570
  1
707
- n
708
- n
571
+ *
709
572
  x
710
- 10
711
- initialize
712
- i
713
- 42
714
- 23
715
- 0
716
- 10
717
- 14
718
- 44
719
- 43
720
- 0
721
- 78
722
- 49
723
- 1
724
- 1
725
- 19
726
- 0
727
- 15
728
- 7
729
- 2
730
- 64
731
- 44
732
- 43
733
- 0
734
- 78
735
- 49
736
- 1
737
- 1
738
- 17
739
- 2
740
- 38
741
- 3
742
- 15
743
- 38
744
573
  4
745
- 15
746
- 2
747
- 15
748
- 20
749
- 0
750
- 56
751
- 5
752
- 50
753
- 6
754
- 0
755
- 11
756
- I
757
- 4
758
- I
759
- 1
760
- I
761
- 0
762
- I
574
+ to_s
575
+ s
763
576
  1
764
- n
765
- p
766
- 7
767
- x
768
- 4
769
- Hash
577
+ {
770
578
  x
771
579
  16
772
- new_from_literal
580
+ VALID_EXTENSIONS
581
+ n
773
582
  s
774
- 0
775
-
583
+ 1
584
+ ,
776
585
  x
777
586
  4
778
- @uri
779
- x
780
- 8
781
- @options
782
- M
587
+ join
588
+ s
783
589
  1
784
- p
785
- 2
786
- x
787
- 9
788
- for_block
789
- t
790
- n
590
+ }
791
591
  x
792
- 10
793
- initialize
794
- i
795
- 27
796
- 58
797
- 37
798
- 19
799
- 0
800
- 15
801
- 37
802
- 19
803
- 1
804
- 15
805
- 15
806
- 5
807
- 20
808
- 0
809
- 47
810
- 101
811
- 0
812
- 7
813
- 1
814
- 63
815
- 2
816
- 20
817
- 1
818
- 47
819
- 49
820
- 2
821
- 2
822
- 11
823
- I
824
- 6
825
- I
826
- 2
827
- I
828
- 2
829
- I
830
- 2
831
- n
832
- p
833
592
  3
593
+ Dir
594
+ n
834
595
  x
835
596
  4
836
- to_s
597
+ File
598
+ n
837
599
  s
838
- 1
839
- =
600
+ 2
601
+ **
840
602
  x
841
603
  4
842
- send
604
+ glob
843
605
  p
844
- 5
606
+ 9
607
+ I
608
+ -1
609
+ I
610
+ 8
845
611
  I
846
612
  0
847
613
  I
848
- 10
614
+ 9
615
+ I
616
+ 6
849
617
  I
850
618
  a
851
619
  I
852
- 11
620
+ 27
853
621
  I
854
- 1b
622
+ b
623
+ I
624
+ 3b
855
625
  x
856
- 60
857
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
626
+ 62
627
+ /Users/crispee/Projects/compass/lib/compass/sprite_importer.rb
858
628
  p
859
- 2
860
- x
861
629
  3
862
- key
863
- x
864
- 5
865
- value
866
630
  x
867
631
  4
868
- each
869
- p
870
- 7
871
- I
872
- -1
873
- I
874
- e
875
- I
876
- e
877
- I
878
- f
879
- I
880
- 22
881
- I
882
- 10
883
- I
884
- 2a
885
- x
886
- 60
887
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
888
- p
889
- 1
632
+ path
890
633
  x
891
- 7
892
- options
634
+ 3
635
+ hex
893
636
  x
894
- 17
895
- method_visibility
637
+ 4
638
+ glob
896
639
  x
897
- 15
898
- add_defn_method
640
+ 13
641
+ attach_method
899
642
  x
900
643
  4
901
644
  find
@@ -907,41 +650,47 @@ x
907
650
  4
908
651
  find
909
652
  i
910
- 32
653
+ 38
911
654
  20
912
655
  0
913
- 20
914
- 1
915
- 17
916
- 2
917
- 38
656
+ 45
918
657
  0
919
- 15
920
- 38
921
658
  1
922
- 15
659
+ 49
923
660
  2
924
- 15
661
+ 1
662
+ 9
663
+ 34
664
+ 5
665
+ 49
666
+ 3
667
+ 0
925
668
  20
926
669
  0
927
- 45
928
- 2
670
+ 5
671
+ 49
929
672
  3
673
+ 0
674
+ 20
675
+ 0
930
676
  49
931
677
  4
932
678
  1
933
- 9
934
- 30
935
679
  5
936
- 48
680
+ 20
681
+ 1
682
+ 49
937
683
  5
684
+ 4
938
685
  11
939
686
  8
940
- 31
687
+ 35
688
+ 1
689
+ 15
941
690
  1
942
691
  11
943
692
  I
944
- 4
693
+ 7
945
694
  I
946
695
  2
947
696
  I
@@ -952,12 +701,6 @@ n
952
701
  p
953
702
  6
954
703
  x
955
- 4
956
- @uri
957
- x
958
- 8
959
- @options
960
- x
961
704
  21
962
705
  SPRITE_IMPORTER_REGEX
963
706
  n
@@ -965,35 +708,45 @@ x
965
708
  2
966
709
  =~
967
710
  x
711
+ 5
712
+ class
713
+ x
714
+ 11
715
+ sprite_name
716
+ x
968
717
  11
969
718
  sass_engine
970
719
  p
971
- 11
720
+ 13
972
721
  I
973
722
  -1
974
723
  I
975
- 15
724
+ e
976
725
  I
977
726
  0
978
727
  I
979
- 16
728
+ f
980
729
  I
981
- e
730
+ a
982
731
  I
983
- 17
732
+ 10
984
733
  I
985
- 18
734
+ 22
986
735
  I
987
- 18
736
+ f
988
737
  I
989
- 1e
738
+ 23
990
739
  I
991
- 17
740
+ 0
992
741
  I
993
- 20
742
+ 24
743
+ I
744
+ 12
745
+ I
746
+ 26
994
747
  x
995
- 60
996
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
748
+ 62
749
+ /Users/crispee/Projects/compass/lib/compass/sprite_importer.rb
997
750
  p
998
751
  2
999
752
  x
@@ -1003,6 +756,12 @@ x
1003
756
  7
1004
757
  options
1005
758
  x
759
+ 17
760
+ method_visibility
761
+ x
762
+ 15
763
+ add_defn_method
764
+ x
1006
765
  13
1007
766
  find_relative
1008
767
  M
@@ -1013,41 +772,11 @@ x
1013
772
  13
1014
773
  find_relative
1015
774
  i
1016
- 32
1017
- 20
1018
- 0
1019
- 20
1020
- 2
1021
- 17
1022
- 2
1023
- 38
1024
- 0
1025
- 15
1026
- 38
1027
- 1
1028
- 15
1029
- 2
1030
- 15
1031
- 5
1032
- 45
1033
775
  2
1034
- 3
1035
- 20
1036
776
  1
1037
- 20
1038
- 0
1039
- 49
1040
- 4
1041
- 2
1042
- 20
1043
- 2
1044
- 47
1045
- 49
1046
- 5
1047
- 2
1048
777
  11
1049
778
  I
1050
- 7
779
+ 4
1051
780
  I
1052
781
  3
1053
782
  I
@@ -1056,42 +785,22 @@ I
1056
785
  3
1057
786
  n
1058
787
  p
1059
- 6
1060
- x
1061
- 4
1062
- @uri
1063
- x
1064
- 8
1065
- @options
1066
- x
1067
- 4
1068
- File
1069
- n
1070
- x
1071
- 4
1072
- join
1073
- x
1074
- 4
1075
- find
788
+ 0
1076
789
  p
1077
- 7
790
+ 5
1078
791
  I
1079
792
  -1
1080
793
  I
1081
- 1c
794
+ 15
1082
795
  I
1083
796
  0
1084
797
  I
1085
- 1d
1086
- I
1087
- e
1088
- I
1089
- 1e
798
+ 16
1090
799
  I
1091
- 20
800
+ 2
1092
801
  x
1093
- 60
1094
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
802
+ 62
803
+ /Users/crispee/Projects/compass/lib/compass/sprite_importer.rb
1095
804
  p
1096
805
  3
1097
806
  x
@@ -1142,16 +851,16 @@ p
1142
851
  I
1143
852
  -1
1144
853
  I
1145
- 21
854
+ 19
1146
855
  I
1147
856
  0
1148
857
  I
1149
- 22
858
+ 1a
1150
859
  I
1151
860
  8
1152
861
  x
1153
- 60
1154
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
862
+ 62
863
+ /Users/crispee/Projects/compass/lib/compass/sprite_importer.rb
1155
864
  p
1156
865
  0
1157
866
  x
@@ -1202,16 +911,16 @@ p
1202
911
  I
1203
912
  -1
1204
913
  I
1205
- 25
914
+ 1d
1206
915
  I
1207
916
  0
1208
917
  I
1209
- 26
918
+ 1e
1210
919
  I
1211
920
  b
1212
921
  x
1213
- 60
1214
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
922
+ 62
923
+ /Users/crispee/Projects/compass/lib/compass/sprite_importer.rb
1215
924
  p
1216
925
  0
1217
926
  x
@@ -1260,16 +969,16 @@ p
1260
969
  I
1261
970
  -1
1262
971
  I
1263
- 29
972
+ 21
1264
973
  I
1265
974
  0
1266
975
  I
1267
- 2a
976
+ 22
1268
977
  I
1269
978
  c
1270
979
  x
1271
- 60
1272
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
980
+ 62
981
+ /Users/crispee/Projects/compass/lib/compass/sprite_importer.rb
1273
982
  p
1274
983
  1
1275
984
  x
@@ -1286,38 +995,30 @@ x
1286
995
  5
1287
996
  mtime
1288
997
  i
1289
- 33
1290
- 20
998
+ 25
999
+ 5
1000
+ 49
1001
+ 0
1291
1002
  0
1292
1003
  20
1293
- 1
1294
- 17
1295
- 2
1296
- 38
1297
1004
  0
1298
- 15
1299
- 38
1005
+ 49
1006
+ 1
1300
1007
  1
1301
- 15
1302
- 2
1303
- 15
1304
- 5
1305
- 48
1306
- 2
1307
1008
  49
1308
- 3
1009
+ 2
1309
1010
  0
1310
1011
  45
1012
+ 3
1311
1013
  4
1312
- 5
1313
1014
  78
1314
1015
  49
1315
- 6
1016
+ 5
1316
1017
  1
1317
1018
  56
1318
- 7
1019
+ 6
1319
1020
  50
1320
- 8
1021
+ 7
1321
1022
  1
1322
1023
  11
1323
1024
  I
@@ -1330,13 +1031,10 @@ I
1330
1031
  2
1331
1032
  n
1332
1033
  p
1333
- 9
1334
- x
1335
- 4
1336
- @uri
1337
- x
1338
1034
  8
1339
- @options
1035
+ x
1036
+ 5
1037
+ class
1340
1038
  x
1341
1039
  5
1342
1040
  files
@@ -1419,20 +1117,24 @@ x
1419
1117
  1
1420
1118
  >
1421
1119
  p
1422
- 5
1120
+ 7
1423
1121
  I
1424
1122
  0
1425
1123
  I
1426
- 2f
1124
+ 26
1427
1125
  I
1428
1126
  a
1429
1127
  I
1430
- 30
1128
+ 27
1129
+ I
1130
+ 20
1131
+ I
1132
+ 0
1431
1133
  I
1432
1134
  21
1433
1135
  x
1434
- 60
1435
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
1136
+ 62
1137
+ /Users/crispee/Projects/compass/lib/compass/sprite_importer.rb
1436
1138
  p
1437
1139
  3
1438
1140
  x
@@ -1448,24 +1150,20 @@ x
1448
1150
  6
1449
1151
  inject
1450
1152
  p
1451
- 7
1153
+ 5
1452
1154
  I
1453
1155
  -1
1454
1156
  I
1455
- 2d
1157
+ 25
1456
1158
  I
1457
1159
  0
1458
1160
  I
1459
- 2e
1460
- I
1461
- e
1462
- I
1463
- 2f
1161
+ 26
1464
1162
  I
1465
- 21
1163
+ 19
1466
1164
  x
1467
- 60
1468
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
1165
+ 62
1166
+ /Users/crispee/Projects/compass/lib/compass/sprite_importer.rb
1469
1167
  p
1470
1168
  2
1471
1169
  x
@@ -1485,7 +1183,7 @@ x
1485
1183
  3
1486
1184
  key
1487
1185
  i
1488
- 67
1186
+ 53
1489
1187
  23
1490
1188
  1
1491
1189
  10
@@ -1500,55 +1198,41 @@ i
1500
1198
  19
1501
1199
  1
1502
1200
  15
1503
- 20
1504
- 0
1505
- 20
1506
- 1
1507
- 17
1508
- 2
1509
- 38
1510
- 2
1511
- 15
1512
- 38
1513
- 3
1514
- 15
1515
- 2
1516
- 15
1517
1201
  5
1518
1202
  49
1519
- 4
1203
+ 2
1520
1204
  0
1521
1205
  49
1522
- 5
1206
+ 3
1523
1207
  0
1524
1208
  7
1525
- 6
1209
+ 4
1526
1210
  64
1527
1211
  81
1528
- 7
1212
+ 5
1529
1213
  45
1530
- 8
1531
- 9
1214
+ 6
1215
+ 7
1532
1216
  45
1217
+ 6
1533
1218
  8
1534
- 10
1535
1219
  20
1536
1220
  0
1537
1221
  49
1538
- 11
1222
+ 9
1539
1223
  1
1540
1224
  49
1541
- 12
1225
+ 10
1542
1226
  1
1543
1227
  81
1544
- 7
1228
+ 5
1545
1229
  45
1546
- 8
1547
- 13
1230
+ 6
1231
+ 11
1548
1232
  20
1549
1233
  0
1550
1234
  49
1551
- 14
1235
+ 12
1552
1236
  1
1553
1237
  35
1554
1238
  2
@@ -1563,7 +1247,7 @@ I
1563
1247
  2
1564
1248
  n
1565
1249
  p
1566
- 15
1250
+ 13
1567
1251
  x
1568
1252
  4
1569
1253
  Hash
@@ -1571,20 +1255,14 @@ x
1571
1255
  16
1572
1256
  new_from_literal
1573
1257
  x
1574
- 4
1575
- @uri
1576
- x
1577
- 8
1578
- @options
1579
- x
1580
1258
  5
1581
1259
  class
1582
1260
  x
1583
1261
  4
1584
1262
  name
1585
1263
  s
1586
- 1
1587
- :
1264
+ 8
1265
+ :sprite:
1588
1266
  x
1589
1267
  1
1590
1268
  +
@@ -1604,24 +1282,20 @@ x
1604
1282
  8
1605
1283
  basename
1606
1284
  p
1607
- 7
1285
+ 5
1608
1286
  I
1609
1287
  -1
1610
1288
  I
1611
- 34
1289
+ 2b
1612
1290
  I
1613
1291
  e
1614
1292
  I
1615
- 35
1616
- I
1617
- 1c
1618
- I
1619
- 36
1293
+ 2c
1620
1294
  I
1621
- 43
1295
+ 35
1622
1296
  x
1623
- 60
1624
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
1297
+ 62
1298
+ /Users/crispee/Projects/compass/lib/compass/sprite_importer.rb
1625
1299
  p
1626
1300
  2
1627
1301
  x
@@ -1641,7 +1315,7 @@ x
1641
1315
  13
1642
1316
  path_and_name
1643
1317
  i
1644
- 41
1318
+ 40
1645
1319
  20
1646
1320
  0
1647
1321
  45
@@ -1667,21 +1341,20 @@ i
1667
1341
  35
1668
1342
  2
1669
1343
  8
1670
- 40
1344
+ 39
1671
1345
  5
1672
1346
  45
1673
1347
  4
1674
1348
  5
1675
- 7
1349
+ 43
1676
1350
  6
1677
- 64
1678
- 49
1679
1351
  7
1680
- 1
1352
+ 7
1353
+ 64
1681
1354
  47
1682
1355
  49
1683
1356
  8
1684
- 1
1357
+ 2
1685
1358
  11
1686
1359
  I
1687
1360
  4
@@ -1708,102 +1381,125 @@ x
1708
1381
  7
1709
1382
  Compass
1710
1383
  n
1711
- s
1712
- 19
1713
- invalid sprite path
1714
1384
  x
1715
1385
  5
1716
1386
  Error
1387
+ s
1388
+ 19
1389
+ invalid sprite path
1717
1390
  x
1718
1391
  5
1719
1392
  raise
1720
1393
  p
1721
- 9
1394
+ 11
1722
1395
  I
1723
1396
  -1
1724
1397
  I
1725
- 39
1398
+ 2f
1726
1399
  I
1727
1400
  0
1728
1401
  I
1729
- 3a
1402
+ 30
1730
1403
  I
1731
1404
  a
1732
1405
  I
1733
- 3b
1406
+ 31
1734
1407
  I
1735
1408
  1a
1736
1409
  I
1737
- 3d
1410
+ 33
1411
+ I
1412
+ 27
1738
1413
  I
1739
- 29
1414
+ 0
1415
+ I
1416
+ 28
1740
1417
  x
1741
- 60
1742
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
1418
+ 62
1419
+ /Users/crispee/Projects/compass/lib/compass/sprite_importer.rb
1743
1420
  p
1744
1421
  1
1745
1422
  x
1746
1423
  3
1747
1424
  uri
1748
1425
  x
1749
- 4
1750
- name
1426
+ 11
1427
+ sprite_name
1751
1428
  M
1752
1429
  1
1753
1430
  n
1754
1431
  n
1755
1432
  x
1756
- 4
1757
- name
1433
+ 11
1434
+ sprite_name
1758
1435
  i
1759
- 9
1436
+ 22
1760
1437
  5
1438
+ 20
1439
+ 0
1761
1440
  47
1762
1441
  49
1763
1442
  0
1764
- 0
1765
- 15
1766
- 39
1767
1443
  1
1444
+ 97
1445
+ 37
1446
+ 19
1447
+ 1
1448
+ 15
1449
+ 37
1450
+ 19
1451
+ 2
1452
+ 15
1453
+ 15
1454
+ 2
1455
+ 15
1456
+ 20
1457
+ 2
1768
1458
  11
1769
1459
  I
1770
- 1
1460
+ 5
1771
1461
  I
1772
- 0
1462
+ 3
1773
1463
  I
1774
- 0
1464
+ 1
1775
1465
  I
1776
- 0
1466
+ 1
1777
1467
  n
1778
1468
  p
1779
- 2
1780
- x
1781
- 21
1782
- ensure_path_and_name!
1469
+ 1
1783
1470
  x
1784
- 5
1785
- @name
1471
+ 13
1472
+ path_and_name
1786
1473
  p
1787
1474
  7
1788
1475
  I
1789
1476
  -1
1790
1477
  I
1791
- 42
1478
+ 38
1792
1479
  I
1793
1480
  0
1794
1481
  I
1795
- 43
1482
+ 39
1796
1483
  I
1797
- 6
1484
+ 13
1798
1485
  I
1799
- 44
1486
+ 3a
1800
1487
  I
1801
- 9
1488
+ 16
1802
1489
  x
1803
- 60
1804
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
1490
+ 62
1491
+ /Users/crispee/Projects/compass/lib/compass/sprite_importer.rb
1805
1492
  p
1806
- 0
1493
+ 3
1494
+ x
1495
+ 3
1496
+ uri
1497
+ x
1498
+ 1
1499
+ _
1500
+ x
1501
+ 4
1502
+ name
1807
1503
  x
1808
1504
  4
1809
1505
  path
@@ -1815,187 +1511,121 @@ x
1815
1511
  4
1816
1512
  path
1817
1513
  i
1818
- 9
1819
- 5
1820
- 47
1821
- 49
1822
- 0
1823
- 0
1824
- 15
1825
- 39
1826
- 1
1827
- 11
1828
- I
1829
- 1
1830
- I
1831
- 0
1832
- I
1833
- 0
1834
- I
1835
- 0
1836
- n
1837
- p
1838
- 2
1839
- x
1840
- 21
1841
- ensure_path_and_name!
1842
- x
1514
+ 22
1843
1515
  5
1844
- @path
1845
- p
1846
- 7
1847
- I
1848
- -1
1849
- I
1850
- 48
1851
- I
1516
+ 20
1852
1517
  0
1853
- I
1518
+ 47
1854
1519
  49
1855
- I
1856
- 6
1857
- I
1858
- 4a
1859
- I
1860
- 9
1861
- x
1862
- 60
1863
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
1864
- p
1865
1520
  0
1866
- x
1867
- 5
1868
- files
1869
- M
1870
1521
  1
1871
- n
1872
- n
1873
- x
1874
- 5
1875
- files
1876
- i
1877
- 28
1878
- 45
1879
- 0
1522
+ 97
1523
+ 37
1524
+ 19
1880
1525
  1
1881
- 45
1526
+ 15
1527
+ 37
1528
+ 19
1882
1529
  2
1883
- 3
1884
- 45
1885
- 4
1886
- 5
1887
- 49
1888
- 6
1889
- 0
1890
- 49
1891
- 7
1892
- 0
1893
- 5
1894
- 48
1895
- 8
1896
- 49
1897
- 9
1530
+ 15
1531
+ 15
1898
1532
  2
1899
- 49
1900
- 10
1533
+ 15
1534
+ 20
1901
1535
  1
1902
- 49
1903
- 11
1904
- 0
1905
1536
  11
1906
1537
  I
1907
- 4
1908
- I
1909
- 0
1910
- I
1911
- 0
1538
+ 5
1912
1539
  I
1913
- 0
1914
- n
1915
- p
1916
- 12
1917
- x
1918
- 3
1919
- Dir
1920
- n
1921
- x
1922
- 4
1923
- File
1924
- n
1925
- x
1926
- 7
1927
- Compass
1928
- n
1929
- x
1930
- 13
1931
- configuration
1932
- x
1933
- 11
1934
- images_path
1935
- x
1936
1540
  3
1937
- uri
1938
- x
1939
- 4
1940
- join
1941
- x
1942
- 2
1943
- []
1541
+ I
1542
+ 1
1543
+ I
1544
+ 1
1545
+ n
1546
+ p
1547
+ 1
1944
1548
  x
1945
- 4
1946
- sort
1549
+ 13
1550
+ path_and_name
1947
1551
  p
1948
- 5
1552
+ 7
1949
1553
  I
1950
1554
  -1
1951
1555
  I
1952
- 4e
1556
+ 3e
1953
1557
  I
1954
1558
  0
1955
1559
  I
1956
- 4f
1560
+ 3f
1957
1561
  I
1958
- 1c
1562
+ 13
1563
+ I
1564
+ 40
1565
+ I
1566
+ 16
1959
1567
  x
1960
- 60
1961
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
1568
+ 62
1569
+ /Users/crispee/Projects/compass/lib/compass/sprite_importer.rb
1962
1570
  p
1963
- 0
1571
+ 3
1964
1572
  x
1965
- 12
1966
- sprite_names
1573
+ 3
1574
+ uri
1575
+ x
1576
+ 4
1577
+ path
1578
+ x
1579
+ 1
1580
+ _
1581
+ x
1582
+ 5
1583
+ files
1967
1584
  M
1968
1585
  1
1969
1586
  n
1970
1587
  n
1971
1588
  x
1972
- 12
1973
- sprite_names
1974
- i
1975
- 9
1976
1589
  5
1977
- 48
1590
+ files
1591
+ i
1592
+ 15
1593
+ 45
1978
1594
  0
1979
- 56
1980
1595
  1
1981
- 50
1596
+ 49
1982
1597
  2
1983
1598
  0
1599
+ 49
1600
+ 3
1601
+ 0
1602
+ 56
1603
+ 4
1604
+ 50
1605
+ 5
1606
+ 0
1984
1607
  11
1985
1608
  I
1986
- 2
1609
+ 3
1987
1610
  I
1988
- 0
1611
+ 1
1989
1612
  I
1990
- 0
1613
+ 1
1991
1614
  I
1992
- 0
1615
+ 1
1993
1616
  n
1994
1617
  p
1995
- 3
1618
+ 6
1996
1619
  x
1997
- 5
1998
- files
1620
+ 7
1621
+ Compass
1622
+ n
1623
+ x
1624
+ 13
1625
+ configuration
1626
+ x
1627
+ 16
1628
+ sprite_load_path
1999
1629
  M
2000
1630
  1
2001
1631
  p
@@ -2006,10 +1636,10 @@ for_block
2006
1636
  t
2007
1637
  n
2008
1638
  x
2009
- 12
2010
- sprite_names
1639
+ 5
1640
+ files
2011
1641
  i
2012
- 60
1642
+ 44
2013
1643
  57
2014
1644
  19
2015
1645
  0
@@ -2017,61 +1647,45 @@ i
2017
1647
  45
2018
1648
  0
2019
1649
  1
2020
- 20
2021
- 0
2022
- 7
1650
+ 45
2023
1651
  2
2024
- 64
2025
- 49
2026
1652
  3
2027
- 2
2028
- 19
1653
+ 20
1654
+ 0
1655
+ 21
2029
1656
  1
2030
- 15
2031
- 45
1657
+ 0
1658
+ 49
2032
1659
  4
1660
+ 2
1661
+ 49
2033
1662
  5
2034
- 20
2035
1663
  1
2036
1664
  49
2037
1665
  6
1666
+ 0
1667
+ 19
2038
1668
  1
2039
- 9
2040
- 31
1669
+ 15
1670
+ 20
2041
1671
  1
2042
- 8
2043
- 56
2044
- 5
2045
- 45
2046
- 7
2047
- 8
2048
- 43
2049
- 9
1672
+ 49
2050
1673
  7
2051
- 10
2052
- 45
2053
1674
  0
1675
+ 9
1676
+ 38
1677
+ 1
2054
1678
  11
2055
- 20
2056
- 0
2057
- 49
2058
- 3
1679
+ 8
1680
+ 39
2059
1681
  1
2060
- 47
2061
- 101
2062
- 12
2063
- 63
2064
- 2
2065
- 47
2066
- 49
2067
- 13
2068
- 2
2069
1682
  15
2070
1683
  20
2071
1684
  1
1685
+ 31
2072
1686
  11
2073
1687
  I
2074
- 8
1688
+ 7
2075
1689
  I
2076
1690
  2
2077
1691
  I
@@ -2080,111 +1694,104 @@ I
2080
1694
  1
2081
1695
  n
2082
1696
  p
2083
- 14
1697
+ 8
1698
+ x
1699
+ 3
1700
+ Dir
1701
+ n
2084
1702
  x
2085
1703
  4
2086
1704
  File
2087
1705
  n
2088
- s
2089
- 4
2090
- .png
2091
- x
2092
- 8
2093
- basename
2094
1706
  x
2095
- 15
2096
- VAILD_FILE_NAME
2097
- n
1707
+ 4
1708
+ join
2098
1709
  x
2099
1710
  2
2100
- =~
2101
- x
2102
- 7
2103
- Compass
2104
- n
2105
- x
2106
- 5
2107
- Error
2108
- s
2109
- 63
2110
- Sprite file names must be legal css identifiers. Please rename
2111
- n
1711
+ []
2112
1712
  x
2113
1713
  4
2114
- to_s
1714
+ sort
2115
1715
  x
2116
- 5
2117
- raise
1716
+ 6
1717
+ empty?
2118
1718
  p
2119
1719
  11
2120
1720
  I
2121
1721
  0
2122
1722
  I
2123
- 54
1723
+ 45
2124
1724
  I
2125
1725
  4
2126
1726
  I
2127
- 55
1727
+ 46
2128
1728
  I
2129
- 12
1729
+ 1b
2130
1730
  I
2131
- 56
1731
+ 47
2132
1732
  I
2133
- 1f
1733
+ 27
2134
1734
  I
2135
- 57
1735
+ 0
2136
1736
  I
2137
- 39
1737
+ 28
2138
1738
  I
2139
- 59
1739
+ 48
2140
1740
  I
2141
- 3c
1741
+ 2c
2142
1742
  x
2143
- 60
2144
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
1743
+ 62
1744
+ /Users/crispee/Projects/compass/lib/compass/sprite_importer.rb
2145
1745
  p
2146
1746
  2
2147
1747
  x
2148
- 4
2149
- file
1748
+ 6
1749
+ folder
2150
1750
  x
2151
- 8
2152
- filename
1751
+ 5
1752
+ files
2153
1753
  x
2154
- 7
2155
- collect
1754
+ 4
1755
+ each
2156
1756
  p
2157
1757
  5
2158
1758
  I
2159
1759
  -1
2160
1760
  I
2161
- 53
1761
+ 44
2162
1762
  I
2163
1763
  0
2164
1764
  I
2165
- 54
1765
+ 45
2166
1766
  I
2167
- 9
1767
+ f
2168
1768
  x
2169
- 60
2170
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
1769
+ 62
1770
+ /Users/crispee/Projects/compass/lib/compass/sprite_importer.rb
2171
1771
  p
2172
- 0
1772
+ 1
2173
1773
  x
2174
- 17
2175
- validate_sprites!
1774
+ 3
1775
+ uri
1776
+ x
1777
+ 12
1778
+ sprite_names
2176
1779
  M
2177
1780
  1
2178
1781
  n
2179
1782
  n
2180
1783
  x
2181
- 17
2182
- validate_sprites!
1784
+ 12
1785
+ sprite_names
2183
1786
  i
2184
- 9
1787
+ 13
2185
1788
  5
2186
- 48
1789
+ 20
2187
1790
  0
1791
+ 47
1792
+ 49
1793
+ 0
1794
+ 1
2188
1795
  56
2189
1796
  1
2190
1797
  50
@@ -2192,13 +1799,13 @@ i
2192
1799
  0
2193
1800
  11
2194
1801
  I
2195
- 2
1802
+ 3
2196
1803
  I
2197
- 0
1804
+ 1
2198
1805
  I
2199
- 0
1806
+ 1
2200
1807
  I
2201
- 0
1808
+ 1
2202
1809
  n
2203
1810
  p
2204
1811
  3
@@ -2215,10 +1822,10 @@ for_block
2215
1822
  t
2216
1823
  n
2217
1824
  x
2218
- 17
2219
- validate_sprites!
1825
+ 12
1826
+ sprite_names
2220
1827
  i
2221
- 52
1828
+ 60
2222
1829
  57
2223
1830
  19
2224
1831
  0
@@ -2226,76 +1833,87 @@ i
2226
1833
  45
2227
1834
  0
2228
1835
  1
1836
+ 20
1837
+ 0
1838
+ 7
1839
+ 2
1840
+ 64
1841
+ 49
1842
+ 3
1843
+ 2
1844
+ 19
1845
+ 1
1846
+ 15
2229
1847
  45
2230
- 2
2231
- 3
2232
- 20
2233
- 0
2234
- 49
2235
1848
  4
1849
+ 5
1850
+ 20
2236
1851
  1
2237
1852
  49
2238
- 5
1853
+ 6
2239
1854
  1
2240
1855
  9
2241
- 23
1856
+ 31
2242
1857
  1
2243
1858
  8
2244
- 51
1859
+ 56
2245
1860
  5
2246
1861
  45
2247
- 6
2248
1862
  7
2249
- 43
2250
1863
  8
2251
- 7
1864
+ 43
2252
1865
  9
1866
+ 7
1867
+ 10
2253
1868
  45
2254
1869
  0
2255
- 10
2256
- 7
2257
1870
  11
2258
- 64
1871
+ 20
1872
+ 0
2259
1873
  49
2260
- 12
1874
+ 3
2261
1875
  1
2262
1876
  47
2263
1877
  101
2264
- 13
2265
- 7
2266
- 14
1878
+ 12
2267
1879
  63
2268
- 3
1880
+ 2
2269
1881
  47
2270
1882
  49
2271
- 15
1883
+ 13
2272
1884
  2
1885
+ 15
1886
+ 20
1887
+ 1
2273
1888
  11
2274
1889
  I
2275
- 7
1890
+ 8
2276
1891
  I
2277
- 1
1892
+ 2
2278
1893
  I
2279
1894
  1
2280
1895
  I
2281
1896
  1
2282
1897
  n
2283
1898
  p
2284
- 16
2285
- x
2286
- 16
2287
- VALID_EXTENSIONS
2288
- n
1899
+ 14
2289
1900
  x
2290
1901
  4
2291
1902
  File
2292
1903
  n
2293
- x
2294
- 7
2295
- extname
1904
+ s
1905
+ 4
1906
+ .png
2296
1907
  x
2297
1908
  8
2298
- include?
1909
+ basename
1910
+ x
1911
+ 15
1912
+ VAILD_FILE_NAME
1913
+ n
1914
+ x
1915
+ 2
1916
+ =~
2299
1917
  x
2300
1918
  7
2301
1919
  Compass
@@ -2304,68 +1922,77 @@ x
2304
1922
  5
2305
1923
  Error
2306
1924
  s
2307
- 31
2308
- Invalid sprite extension only:
1925
+ 63
1926
+ Sprite file names must be legal css identifiers. Please rename
2309
1927
  n
2310
- s
2311
- 1
2312
- ,
2313
- x
2314
- 4
2315
- join
2316
1928
  x
2317
1929
  4
2318
1930
  to_s
2319
- s
2320
- 19
2321
- images are allowed
2322
1931
  x
2323
1932
  5
2324
1933
  raise
2325
1934
  p
2326
- 7
1935
+ 13
2327
1936
  I
2328
1937
  0
2329
1938
  I
2330
- 5e
1939
+ 4e
2331
1940
  I
2332
1941
  4
2333
1942
  I
2334
- 5f
1943
+ 4f
2335
1944
  I
2336
- 17
1945
+ 12
2337
1946
  I
2338
- 60
1947
+ 50
2339
1948
  I
2340
- 34
1949
+ 1f
1950
+ I
1951
+ 51
1952
+ I
1953
+ 38
1954
+ I
1955
+ 0
1956
+ I
1957
+ 39
1958
+ I
1959
+ 53
1960
+ I
1961
+ 3c
2341
1962
  x
2342
- 60
2343
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
1963
+ 62
1964
+ /Users/crispee/Projects/compass/lib/compass/sprite_importer.rb
2344
1965
  p
2345
- 1
1966
+ 2
2346
1967
  x
2347
1968
  4
2348
1969
  file
2349
1970
  x
2350
- 4
2351
- each
1971
+ 8
1972
+ filename
1973
+ x
1974
+ 7
1975
+ collect
2352
1976
  p
2353
1977
  5
2354
1978
  I
2355
1979
  -1
2356
1980
  I
2357
- 5d
1981
+ 4d
2358
1982
  I
2359
1983
  0
2360
1984
  I
2361
- 5e
1985
+ 4e
2362
1986
  I
2363
- 9
1987
+ d
2364
1988
  x
2365
- 60
2366
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
1989
+ 62
1990
+ /Users/crispee/Projects/compass/lib/compass/sprite_importer.rb
2367
1991
  p
2368
- 0
1992
+ 1
1993
+ x
1994
+ 3
1995
+ uri
2369
1996
  x
2370
1997
  12
2371
1998
  sass_options
@@ -2377,63 +2004,59 @@ x
2377
2004
  12
2378
2005
  sass_options
2379
2006
  i
2380
- 42
2381
- 5
2382
- 48
2383
- 0
2007
+ 41
2008
+ 20
2009
+ 2
2384
2010
  44
2385
2011
  43
2386
- 1
2012
+ 0
2387
2013
  4
2388
2014
  3
2389
2015
  49
2390
- 2
2016
+ 1
2391
2017
  1
2392
2018
  13
2393
2019
  7
2394
- 3
2395
- 5
2396
- 48
2397
- 4
2020
+ 2
2021
+ 20
2022
+ 0
2398
2023
  49
2399
- 5
2024
+ 3
2400
2025
  2
2401
2026
  15
2402
2027
  13
2403
2028
  7
2404
- 6
2405
- 7
2029
+ 4
2406
2030
  7
2407
- 49
2408
2031
  5
2032
+ 49
2033
+ 3
2409
2034
  2
2410
2035
  15
2411
2036
  13
2412
2037
  7
2413
- 8
2414
- 5
2038
+ 6
2039
+ 20
2040
+ 1
2415
2041
  49
2416
- 5
2042
+ 3
2417
2043
  2
2418
2044
  15
2419
2045
  49
2420
- 9
2046
+ 7
2421
2047
  1
2422
2048
  11
2423
2049
  I
2424
- 5
2050
+ 8
2425
2051
  I
2426
- 0
2052
+ 3
2427
2053
  I
2428
- 0
2054
+ 3
2429
2055
  I
2430
- 0
2056
+ 3
2431
2057
  n
2432
2058
  p
2433
- 10
2434
- x
2435
- 7
2436
- options
2059
+ 8
2437
2060
  x
2438
2061
  4
2439
2062
  Hash
@@ -2444,9 +2067,6 @@ x
2444
2067
  8
2445
2068
  filename
2446
2069
  x
2447
- 4
2448
- name
2449
- x
2450
2070
  3
2451
2071
  []=
2452
2072
  x
@@ -2459,25 +2079,34 @@ x
2459
2079
  8
2460
2080
  importer
2461
2081
  x
2462
- 5
2463
- merge
2082
+ 6
2083
+ merge!
2464
2084
  p
2465
2085
  5
2466
2086
  I
2467
2087
  -1
2468
2088
  I
2469
- 66
2089
+ 58
2470
2090
  I
2471
2091
  0
2472
2092
  I
2473
- 67
2093
+ 59
2474
2094
  I
2475
- 2a
2095
+ 29
2476
2096
  x
2477
- 60
2478
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
2097
+ 62
2098
+ /Users/crispee/Projects/compass/lib/compass/sprite_importer.rb
2479
2099
  p
2480
- 0
2100
+ 3
2101
+ x
2102
+ 3
2103
+ uri
2104
+ x
2105
+ 8
2106
+ importer
2107
+ x
2108
+ 7
2109
+ options
2481
2110
  x
2482
2111
  11
2483
2112
  sass_engine
@@ -2489,66 +2118,99 @@ x
2489
2118
  11
2490
2119
  sass_engine
2491
2120
  i
2492
- 45
2121
+ 72
2493
2122
  5
2494
- 47
2495
- 49
2123
+ 20
2496
2124
  0
2125
+ 20
2126
+ 1
2127
+ 20
2128
+ 3
2129
+ 7
2497
2130
  0
2498
- 15
2499
- 45
2131
+ 49
2500
2132
  1
2133
+ 1
2134
+ 47
2135
+ 49
2501
2136
  2
2502
- 43
2503
2137
  3
2138
+ 19
2139
+ 4
2140
+ 15
2141
+ 45
2142
+ 3
2143
+ 4
2144
+ 43
2145
+ 5
2504
2146
  13
2505
2147
  71
2506
- 4
2148
+ 6
2507
2149
  47
2508
2150
  9
2509
- 35
2151
+ 55
2510
2152
  47
2511
2153
  49
2512
- 5
2154
+ 7
2513
2155
  0
2514
2156
  13
2157
+ 20
2158
+ 4
2515
2159
  5
2516
- 48
2517
- 6
2518
- 5
2519
- 48
2520
- 7
2160
+ 20
2161
+ 0
2162
+ 20
2163
+ 2
2164
+ 20
2165
+ 3
2521
2166
  47
2522
2167
  49
2523
2168
  8
2169
+ 3
2170
+ 47
2171
+ 49
2172
+ 9
2524
2173
  2
2525
2174
  15
2526
2175
  8
2527
- 44
2528
- 5
2529
- 48
2530
- 6
2176
+ 71
2177
+ 20
2178
+ 4
2531
2179
  5
2532
- 48
2533
- 7
2180
+ 20
2181
+ 0
2182
+ 20
2183
+ 2
2184
+ 20
2185
+ 3
2186
+ 47
2534
2187
  49
2535
- 4
2188
+ 8
2189
+ 3
2190
+ 49
2191
+ 6
2536
2192
  2
2537
2193
  11
2538
2194
  I
2539
- 4
2195
+ c
2540
2196
  I
2541
- 0
2197
+ 5
2542
2198
  I
2543
- 0
2199
+ 4
2544
2200
  I
2545
- 0
2201
+ 4
2546
2202
  n
2547
2203
  p
2548
- 9
2204
+ 10
2549
2205
  x
2550
- 17
2551
- validate_sprites!
2206
+ 14
2207
+ skip_overrides
2208
+ x
2209
+ 2
2210
+ []
2211
+ x
2212
+ 18
2213
+ content_for_images
2552
2214
  x
2553
2215
  4
2554
2216
  Sass
@@ -2563,9 +2225,6 @@ x
2563
2225
  8
2564
2226
  allocate
2565
2227
  x
2566
- 18
2567
- content_for_images
2568
- x
2569
2228
  12
2570
2229
  sass_options
2571
2230
  x
@@ -2576,99 +2235,37 @@ p
2576
2235
  I
2577
2236
  -1
2578
2237
  I
2579
- 6b
2238
+ 5d
2580
2239
  I
2581
2240
  0
2582
2241
  I
2583
- 6c
2242
+ 5e
2584
2243
  I
2585
- 6
2244
+ 13
2586
2245
  I
2587
- 6d
2246
+ 5f
2588
2247
  I
2589
- 2d
2590
- x
2591
- 60
2592
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
2593
- p
2594
- 0
2595
- x
2596
- 21
2597
- ensure_path_and_name!
2598
- M
2599
- 1
2600
- n
2601
- n
2602
- x
2603
- 21
2604
- ensure_path_and_name!
2605
- i
2606
- 22
2607
- 5
2608
- 49
2609
- 0
2610
- 0
2611
- 5
2612
2248
  48
2613
- 1
2614
- 49
2615
- 2
2616
- 1
2617
- 97
2618
- 37
2619
- 38
2620
- 3
2621
- 15
2622
- 37
2623
- 38
2624
- 4
2625
- 15
2626
- 15
2627
- 2
2628
- 11
2629
- I
2630
- 2
2631
- I
2632
- 0
2633
- I
2634
- 0
2635
- I
2636
- 0
2637
- n
2638
- p
2639
- 5
2640
2249
  x
2250
+ 62
2251
+ /Users/crispee/Projects/compass/lib/compass/sprite_importer.rb
2252
+ p
2641
2253
  5
2642
- class
2643
2254
  x
2644
2255
  3
2645
2256
  uri
2646
2257
  x
2647
- 13
2648
- path_and_name
2258
+ 4
2259
+ name
2649
2260
  x
2650
- 5
2651
- @path
2261
+ 8
2262
+ importer
2652
2263
  x
2653
- 5
2654
- @name
2655
- p
2656
- 5
2657
- I
2658
- -1
2659
- I
2660
- 70
2661
- I
2662
- 0
2663
- I
2664
- 71
2665
- I
2666
- 16
2264
+ 7
2265
+ options
2667
2266
  x
2668
- 60
2669
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
2670
- p
2671
- 0
2267
+ 7
2268
+ content
2672
2269
  x
2673
2270
  18
2674
2271
  content_for_images
@@ -2680,286 +2277,279 @@ x
2680
2277
  18
2681
2278
  content_for_images
2682
2279
  i
2683
- 293
2280
+ 286
2684
2281
  23
2685
- 0
2282
+ 2
2686
2283
  10
2687
2284
  8
2688
2285
  3
2689
2286
  19
2690
- 0
2287
+ 2
2691
2288
  15
2692
2289
  7
2693
2290
  0
2694
- 5
2695
- 48
2291
+ 20
2696
2292
  1
2697
2293
  47
2698
2294
  101
2295
+ 1
2296
+ 7
2699
2297
  2
2298
+ 20
2299
+ 1
2300
+ 47
2301
+ 101
2302
+ 1
2700
2303
  7
2701
2304
  3
2702
- 5
2703
- 48
2305
+ 20
2704
2306
  1
2705
2307
  47
2706
2308
  101
2707
- 2
2309
+ 1
2708
2310
  7
2709
2311
  4
2710
- 5
2711
- 48
2312
+ 20
2712
2313
  1
2713
2314
  47
2714
2315
  101
2715
- 2
2316
+ 1
2716
2317
  7
2717
2318
  5
2718
- 5
2719
- 48
2319
+ 20
2720
2320
  1
2721
2321
  47
2722
2322
  101
2723
- 2
2323
+ 1
2724
2324
  7
2725
2325
  6
2726
- 5
2727
- 48
2326
+ 20
2728
2327
  1
2729
2328
  47
2730
2329
  101
2731
- 2
2330
+ 1
2732
2331
  7
2733
2332
  7
2734
- 5
2735
- 48
2333
+ 20
2736
2334
  1
2737
2335
  47
2738
2336
  101
2739
- 2
2337
+ 1
2740
2338
  7
2741
2339
  8
2742
- 5
2743
- 48
2340
+ 20
2744
2341
  1
2745
2342
  47
2746
2343
  101
2747
- 2
2344
+ 1
2748
2345
  7
2749
2346
  9
2750
- 5
2751
- 48
2347
+ 20
2752
2348
  1
2753
2349
  47
2754
2350
  101
2755
- 2
2351
+ 1
2756
2352
  7
2757
2353
  10
2758
2354
  20
2759
- 0
2355
+ 2
2760
2356
  9
2761
- 108
2357
+ 111
2762
2358
  7
2763
2359
  11
2764
- 5
2765
- 48
2360
+ 20
2766
2361
  1
2767
2362
  47
2768
2363
  101
2769
- 2
2364
+ 1
2770
2365
  7
2771
2366
  12
2772
- 5
2773
- 48
2367
+ 20
2368
+ 0
2369
+ 47
2370
+ 101
2371
+ 1
2372
+ 7
2774
2373
  13
2374
+ 20
2375
+ 1
2775
2376
  47
2776
2377
  101
2777
- 2
2378
+ 1
2778
2379
  7
2779
2380
  14
2780
- 5
2781
- 48
2381
+ 20
2782
2382
  1
2783
2383
  47
2784
2384
  101
2785
- 2
2385
+ 1
2786
2386
  7
2787
2387
  15
2788
2388
  63
2789
- 7
2389
+ 9
2790
2390
  8
2791
- 111
2391
+ 120
2792
2392
  5
2793
- 48
2393
+ 20
2394
+ 0
2395
+ 20
2396
+ 1
2397
+ 47
2398
+ 49
2794
2399
  16
2400
+ 2
2795
2401
  47
2796
2402
  101
2797
- 2
2403
+ 1
2798
2404
  7
2799
2405
  17
2800
- 5
2801
- 48
2406
+ 20
2802
2407
  1
2803
2408
  47
2804
2409
  101
2805
- 2
2410
+ 1
2806
2411
  7
2807
2412
  18
2808
- 5
2809
- 48
2413
+ 20
2810
2414
  1
2811
2415
  47
2812
2416
  101
2813
- 2
2417
+ 1
2814
2418
  7
2815
2419
  19
2816
- 5
2817
- 48
2420
+ 20
2818
2421
  1
2819
2422
  47
2820
2423
  101
2821
- 2
2424
+ 1
2822
2425
  7
2823
2426
  20
2824
- 5
2825
- 48
2427
+ 20
2826
2428
  1
2827
2429
  47
2828
2430
  101
2829
- 2
2431
+ 1
2830
2432
  7
2831
2433
  21
2832
- 5
2833
- 48
2434
+ 20
2834
2435
  1
2835
2436
  47
2836
2437
  101
2837
- 2
2438
+ 1
2838
2439
  7
2839
2440
  22
2840
- 5
2841
- 48
2441
+ 20
2842
2442
  1
2843
2443
  47
2844
2444
  101
2845
- 2
2445
+ 1
2846
2446
  7
2847
2447
  23
2848
- 5
2849
- 48
2448
+ 20
2850
2449
  1
2851
2450
  47
2852
2451
  101
2853
- 2
2452
+ 1
2854
2453
  7
2855
2454
  24
2856
- 5
2857
- 48
2455
+ 20
2858
2456
  1
2859
2457
  47
2860
2458
  101
2861
- 2
2459
+ 1
2862
2460
  7
2863
2461
  25
2864
- 5
2865
- 48
2462
+ 20
2866
2463
  1
2867
2464
  47
2868
2465
  101
2869
- 2
2466
+ 1
2870
2467
  7
2871
2468
  26
2872
- 5
2873
- 48
2469
+ 20
2874
2470
  1
2875
2471
  47
2876
2472
  101
2877
- 2
2473
+ 1
2878
2474
  7
2879
2475
  27
2880
- 5
2881
- 48
2476
+ 20
2882
2477
  1
2883
2478
  47
2884
2479
  101
2885
- 2
2480
+ 1
2886
2481
  7
2887
2482
  28
2888
- 5
2889
- 48
2483
+ 20
2890
2484
  1
2891
2485
  47
2892
2486
  101
2893
- 2
2487
+ 1
2894
2488
  7
2895
2489
  29
2896
- 5
2897
- 48
2490
+ 20
2898
2491
  1
2899
2492
  47
2900
2493
  101
2901
- 2
2494
+ 1
2902
2495
  7
2903
2496
  30
2904
- 5
2905
- 48
2497
+ 20
2906
2498
  1
2907
2499
  47
2908
2500
  101
2909
- 2
2501
+ 1
2910
2502
  7
2911
2503
  31
2912
- 5
2913
- 48
2504
+ 20
2914
2505
  1
2915
2506
  47
2916
2507
  101
2917
- 2
2508
+ 1
2918
2509
  7
2919
2510
  32
2920
- 5
2921
- 48
2511
+ 20
2922
2512
  1
2923
2513
  47
2924
2514
  101
2925
- 2
2515
+ 1
2926
2516
  7
2927
2517
  33
2928
- 5
2929
- 48
2518
+ 20
2930
2519
  1
2931
2520
  47
2932
2521
  101
2933
- 2
2522
+ 1
2934
2523
  7
2935
2524
  34
2936
- 5
2937
- 48
2525
+ 20
2938
2526
  1
2939
2527
  47
2940
2528
  101
2941
- 2
2529
+ 1
2942
2530
  7
2943
2531
  30
2944
- 5
2945
- 48
2532
+ 20
2946
2533
  1
2947
2534
  47
2948
2535
  101
2949
- 2
2536
+ 1
2950
2537
  7
2951
2538
  35
2952
- 5
2953
- 48
2539
+ 20
2954
2540
  1
2955
2541
  47
2956
2542
  101
2957
- 2
2543
+ 1
2958
2544
  7
2959
2545
  36
2960
2546
  5
2961
- 48
2547
+ 20
2548
+ 0
2549
+ 47
2550
+ 49
2962
2551
  37
2552
+ 1
2963
2553
  7
2964
2554
  38
2965
2555
  64
@@ -2968,20 +2558,20 @@ i
2968
2558
  1
2969
2559
  47
2970
2560
  101
2971
- 2
2561
+ 1
2972
2562
  7
2973
2563
  40
2974
2564
  63
2975
- 61
2565
+ 63
2976
2566
  11
2977
2567
  I
2978
- 3e
2568
+ 42
2979
2569
  I
2980
- 1
2570
+ 3
2981
2571
  I
2982
- 0
2572
+ 2
2983
2573
  I
2984
- 1
2574
+ 3
2985
2575
  n
2986
2576
  p
2987
2577
  41
@@ -2994,9 +2584,6 @@ s
2994
2584
  $
2995
2585
  x
2996
2586
  4
2997
- name
2998
- x
2999
- 4
3000
2587
  to_s
3001
2588
  s
3002
2589
  22
@@ -3028,6 +2615,10 @@ $
3028
2615
  s
3029
2616
  27
3030
2617
  -clean-up: true !default;
2618
+ $
2619
+ s
2620
+ 29
2621
+ -layout: vertical !default;
3031
2622
 
3032
2623
 
3033
2624
  s
@@ -3036,12 +2627,12 @@ $
3036
2627
  s
3037
2628
  22
3038
2629
  -sprites: sprite-map("
3039
- x
3040
- 3
3041
- uri
3042
2630
  s
3043
- 14
3044
- ", $cleanup: $
2631
+ 13
2632
+ ", $layout: $
2633
+ s
2634
+ 20
2635
+ -layout, $cleanup: $
3045
2636
  s
3046
2637
  11
3047
2638
  -clean-up);
@@ -3117,15 +2708,15 @@ s
3117
2708
  46
3118
2709
  -sprite-dimensions, $prefix: sprite-map-name($
3119
2710
  s
3120
- 33
3121
- -sprites)) {
2711
+ 61
2712
+ -sprites), $offset-x: 0, $offset-y: 0) {
3122
2713
  @include sprites($
3123
2714
  s
3124
2715
  26
3125
2716
  -sprites, $sprite-names, $
3126
2717
  s
3127
- 101
3128
- -sprite-base-class, $dimensions, $prefix)
2718
+ 123
2719
+ -sprite-base-class, $dimensions, $prefix, $offset-x, $offset-y)
3129
2720
  }
3130
2721
 
3131
2722
  // Generates a class for each sprited image.
@@ -3134,8 +2725,8 @@ s
3134
2725
  23
3135
2726
  -sprites($dimensions: $
3136
2727
  s
3137
- 24
3138
- -sprites)) {
2728
+ 52
2729
+ -sprites), $offset-x: 0, $offset-y: 0) {
3139
2730
  @include
3140
2731
  s
3141
2732
  9
@@ -3150,111 +2741,125 @@ x
3150
2741
  4
3151
2742
  join
3152
2743
  s
3153
- 27
3154
- , $dimensions, $prefix);
2744
+ 49
2745
+ , $dimensions, $prefix, $offset-x, $offset-y);
3155
2746
  }
3156
2747
 
3157
2748
  p
3158
- 47
2749
+ 51
3159
2750
  I
3160
2751
  -1
3161
2752
  I
3162
- 75
2753
+ 63
3163
2754
  I
3164
2755
  8
3165
2756
  I
3166
- 7b
2757
+ 69
3167
2758
  I
3168
- 1a
2759
+ 18
3169
2760
  I
3170
- 7c
2761
+ 6a
3171
2762
  I
3172
- 22
2763
+ 1f
3173
2764
  I
3174
- 7d
2765
+ 6b
3175
2766
  I
3176
- 2a
2767
+ 26
3177
2768
  I
3178
- 7e
2769
+ 6c
3179
2770
  I
3180
- 32
2771
+ 2d
3181
2772
  I
3182
- 7f
2773
+ 6d
3183
2774
  I
3184
- 3a
2775
+ 34
3185
2776
  I
3186
- 80
2777
+ 6e
2778
+ I
2779
+ 3b
2780
+ I
2781
+ 6f
3187
2782
  I
3188
2783
  42
3189
2784
  I
3190
- 81
2785
+ 70
3191
2786
  I
3192
- 4a
2787
+ 49
3193
2788
  I
3194
- 83
2789
+ 72
3195
2790
  I
3196
- 74
2791
+ 78
3197
2792
  I
3198
- 86
2793
+ 0
3199
2794
  I
3200
- 7c
2795
+ 7d
3201
2796
  I
3202
- 87
2797
+ 75
3203
2798
  I
3204
2799
  84
3205
2800
  I
3206
- 88
2801
+ 76
3207
2802
  I
3208
- 8c
2803
+ 8b
3209
2804
  I
3210
- 8d
2805
+ 77
3211
2806
  I
3212
- 94
2807
+ 92
3213
2808
  I
3214
- 8e
2809
+ 7c
3215
2810
  I
3216
- 9c
2811
+ 99
3217
2812
  I
3218
- 92
2813
+ 7d
3219
2814
  I
3220
- a4
2815
+ a0
3221
2816
  I
3222
- 93
2817
+ 81
3223
2818
  I
3224
- ac
2819
+ a7
3225
2820
  I
3226
- 98
2821
+ 82
2822
+ I
2823
+ ae
2824
+ I
2825
+ 87
3227
2826
  I
3228
2827
  bc
3229
2828
  I
3230
- 99
2829
+ 88
3231
2830
  I
3232
- c4
2831
+ c3
3233
2832
  I
3234
- 9a
2833
+ 89
3235
2834
  I
3236
- cc
2835
+ ca
3237
2836
  I
3238
- 9d
2837
+ 8c
3239
2838
  I
3240
- e4
2839
+ df
3241
2840
  I
3242
- 9e
2841
+ 8d
3243
2842
  I
3244
- f4
2843
+ ed
3245
2844
  I
3246
- a2
2845
+ 91
3247
2846
  I
3248
- 10c
2847
+ 102
3249
2848
  I
3250
- a3
2849
+ 92
3251
2850
  I
3252
- 125
2851
+ 11e
3253
2852
  x
3254
- 60
3255
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
2853
+ 62
2854
+ /Users/crispee/Projects/compass/lib/compass/sprite_importer.rb
3256
2855
  p
3257
- 1
2856
+ 3
2857
+ x
2858
+ 3
2859
+ uri
2860
+ x
2861
+ 4
2862
+ name
3258
2863
  x
3259
2864
  14
3260
2865
  skip_overrides
@@ -3269,16 +2874,25 @@ x
3269
2874
  18
3270
2875
  generate_overrides
3271
2876
  i
3272
- 84
3273
- 7
2877
+ 96
2878
+ 5
2879
+ 20
3274
2880
  0
3275
- 64
3276
- 19
2881
+ 47
2882
+ 49
3277
2883
  0
2884
+ 1
2885
+ 19
2886
+ 2
3278
2887
  15
3279
- 5
3280
- 48
2888
+ 7
3281
2889
  1
2890
+ 64
2891
+ 19
2892
+ 3
2893
+ 15
2894
+ 20
2895
+ 2
3282
2896
  56
3283
2897
  2
3284
2898
  50
@@ -3289,90 +2903,93 @@ i
3289
2903
  0
3290
2904
  15
3291
2905
  20
3292
- 0
2906
+ 3
3293
2907
  7
3294
2908
  5
3295
- 5
3296
- 48
3297
- 6
2909
+ 20
2910
+ 1
3298
2911
  47
3299
2912
  101
2913
+ 6
3300
2914
  7
3301
2915
  7
3302
- 8
3303
- 5
3304
- 48
3305
- 9
2916
+ 20
2917
+ 0
3306
2918
  47
3307
2919
  101
3308
- 7
3309
- 7
3310
- 10
3311
- 5
3312
- 48
3313
2920
  6
2921
+ 7
2922
+ 8
2923
+ 20
2924
+ 1
3314
2925
  47
3315
2926
  101
2927
+ 6
3316
2928
  7
2929
+ 9
2930
+ 20
2931
+ 1
2932
+ 47
2933
+ 101
2934
+ 6
3317
2935
  7
3318
- 11
2936
+ 10
3319
2937
  63
3320
- 7
2938
+ 9
3321
2939
  81
3322
- 12
2940
+ 11
3323
2941
  19
3324
- 0
2942
+ 3
3325
2943
  15
3326
2944
  20
3327
- 0
3328
- 5
3329
- 48
3330
- 1
2945
+ 3
2946
+ 20
2947
+ 2
3331
2948
  56
3332
- 13
2949
+ 12
3333
2950
  50
3334
2951
  3
3335
2952
  0
3336
2953
  7
3337
- 14
2954
+ 13
3338
2955
  64
3339
2956
  49
3340
2957
  4
3341
2958
  1
3342
2959
  81
3343
- 12
2960
+ 11
3344
2961
  19
3345
- 0
2962
+ 3
3346
2963
  15
3347
2964
  20
3348
- 0
2965
+ 3
3349
2966
  7
3350
- 15
2967
+ 14
3351
2968
  64
3352
2969
  81
3353
- 12
2970
+ 11
3354
2971
  19
3355
- 0
2972
+ 3
3356
2973
  11
3357
2974
  I
3358
- 9
2975
+ e
3359
2976
  I
3360
- 1
2977
+ 4
3361
2978
  I
3362
- 0
2979
+ 2
3363
2980
  I
3364
- 0
2981
+ 2
3365
2982
  n
3366
2983
  p
3367
- 16
2984
+ 15
2985
+ x
2986
+ 12
2987
+ sprite_names
3368
2988
  s
3369
2989
  121
3370
2990
  // These variables control the generated sprite output
3371
2991
  // You can override them selectively before you import this file.
3372
2992
 
3373
- x
3374
- 12
3375
- sprite_names
3376
2993
  M
3377
2994
  1
3378
2995
  p
@@ -3393,85 +3010,85 @@ i
3393
3010
  15
3394
3011
  21
3395
3012
  1
3396
- 0
3013
+ 3
3397
3014
  7
3398
3015
  0
3399
- 5
3400
- 48
3016
+ 21
3017
+ 1
3401
3018
  1
3402
3019
  47
3403
3020
  101
3404
- 2
3021
+ 1
3405
3022
  7
3406
- 3
3023
+ 2
3407
3024
  20
3408
3025
  0
3409
3026
  47
3410
3027
  101
3411
- 2
3028
+ 1
3412
3029
  7
3413
- 4
3414
- 5
3415
- 48
3030
+ 3
3031
+ 21
3032
+ 1
3416
3033
  1
3417
3034
  47
3418
3035
  101
3419
- 2
3036
+ 1
3420
3037
  7
3421
- 5
3422
- 5
3423
- 48
3038
+ 4
3039
+ 21
3040
+ 1
3424
3041
  1
3425
3042
  47
3426
3043
  101
3427
- 2
3044
+ 1
3428
3045
  7
3429
- 3
3046
+ 2
3430
3047
  20
3431
3048
  0
3432
3049
  47
3433
3050
  101
3434
- 2
3051
+ 1
3435
3052
  7
3436
- 6
3437
3053
  5
3438
- 48
3054
+ 21
3055
+ 1
3439
3056
  1
3440
3057
  47
3441
3058
  101
3442
- 2
3443
- 7
3059
+ 1
3444
3060
  7
3445
- 5
3446
- 48
3061
+ 6
3062
+ 21
3063
+ 1
3447
3064
  1
3448
3065
  47
3449
3066
  101
3450
- 2
3067
+ 1
3451
3068
  7
3452
- 3
3069
+ 2
3453
3070
  20
3454
3071
  0
3455
3072
  47
3456
3073
  101
3457
- 2
3074
+ 1
3458
3075
  7
3459
- 8
3460
- 5
3461
- 48
3076
+ 7
3077
+ 21
3078
+ 1
3462
3079
  1
3463
3080
  47
3464
3081
  101
3465
- 2
3082
+ 1
3466
3083
  7
3467
- 9
3084
+ 8
3468
3085
  63
3469
3086
  19
3470
3087
  81
3471
- 10
3088
+ 9
3472
3089
  22
3473
3090
  1
3474
- 0
3091
+ 3
3475
3092
  11
3476
3093
  I
3477
3094
  16
@@ -3483,15 +3100,12 @@ I
3483
3100
  1
3484
3101
  n
3485
3102
  p
3486
- 11
3103
+ 10
3487
3104
  s
3488
3105
  1
3489
3106
  $
3490
3107
  x
3491
3108
  4
3492
- name
3493
- x
3494
- 4
3495
3109
  to_s
3496
3110
  s
3497
3111
  1
@@ -3525,32 +3139,32 @@ p
3525
3139
  I
3526
3140
  0
3527
3141
  I
3528
- b1
3142
+ a1
3529
3143
  I
3530
3144
  4
3531
3145
  I
3532
- b2
3146
+ a2
3533
3147
  I
3534
3148
  7
3535
3149
  I
3536
- b3
3150
+ a3
3537
3151
  I
3538
3152
  20
3539
3153
  I
3540
- b4
3154
+ a4
3541
3155
  I
3542
3156
  37
3543
3157
  I
3544
- b5
3158
+ a5
3545
3159
  I
3546
3160
  52
3547
3161
  I
3548
- b2
3162
+ a2
3549
3163
  I
3550
3164
  56
3551
3165
  x
3552
- 60
3553
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
3166
+ 62
3167
+ /Users/crispee/Projects/compass/lib/compass/sprite_importer.rb
3554
3168
  p
3555
3169
  1
3556
3170
  x
@@ -3568,20 +3182,18 @@ s
3568
3182
  $
3569
3183
  x
3570
3184
  4
3571
- name
3572
- x
3573
- 4
3574
3185
  to_s
3575
3186
  s
3576
3187
  22
3577
3188
  -sprites: sprite-map("
3578
- x
3579
- 3
3580
- uri
3581
3189
  s
3582
- 15
3190
+ 16
3583
3191
  ",
3584
- $cleanup: $
3192
+ $layout: $
3193
+ s
3194
+ 23
3195
+ -layout,
3196
+ $cleanup: $
3585
3197
  s
3586
3198
  11
3587
3199
  -clean-up,
@@ -3602,84 +3214,108 @@ x
3602
3214
  18
3603
3215
  generate_overrides
3604
3216
  i
3605
- 75
3217
+ 99
3606
3218
  57
3607
3219
  19
3608
3220
  0
3609
3221
  15
3610
3222
  7
3611
3223
  0
3224
+ 21
3225
+ 1
3226
+ 1
3227
+ 47
3228
+ 101
3229
+ 1
3230
+ 7
3231
+ 2
3612
3232
  20
3613
3233
  0
3614
3234
  47
3615
3235
  101
3616
3236
  1
3617
3237
  7
3618
- 2
3619
- 5
3620
- 48
3621
3238
  3
3239
+ 21
3240
+ 1
3241
+ 1
3622
3242
  47
3623
3243
  101
3624
3244
  1
3625
3245
  7
3626
- 4
3246
+ 2
3627
3247
  20
3628
3248
  0
3629
3249
  47
3630
3250
  101
3631
3251
  1
3632
3252
  7
3633
- 5
3253
+ 4
3254
+ 21
3255
+ 1
3256
+ 1
3257
+ 47
3258
+ 101
3259
+ 1
3260
+ 7
3261
+ 2
3634
3262
  20
3635
3263
  0
3636
3264
  47
3637
3265
  101
3638
3266
  1
3639
3267
  7
3640
- 6
3641
3268
  5
3642
- 48
3643
- 3
3269
+ 21
3270
+ 1
3271
+ 1
3644
3272
  47
3645
3273
  101
3646
3274
  1
3647
3275
  7
3648
- 4
3276
+ 2
3649
3277
  20
3650
3278
  0
3651
3279
  47
3652
3280
  101
3653
3281
  1
3654
3282
  7
3283
+ 6
3284
+ 21
3285
+ 1
3286
+ 1
3287
+ 47
3288
+ 101
3289
+ 1
3655
3290
  7
3291
+ 2
3656
3292
  20
3657
3293
  0
3658
3294
  47
3659
3295
  101
3660
3296
  1
3661
3297
  7
3662
- 8
3663
- 5
3664
- 48
3665
- 3
3298
+ 7
3299
+ 21
3300
+ 1
3301
+ 1
3666
3302
  47
3667
3303
  101
3668
3304
  1
3669
3305
  7
3670
- 4
3306
+ 2
3671
3307
  20
3672
3308
  0
3673
3309
  47
3674
3310
  101
3675
3311
  1
3676
3312
  7
3677
- 9
3313
+ 8
3678
3314
  63
3679
- 19
3315
+ 25
3680
3316
  11
3681
3317
  I
3682
- 15
3318
+ 1b
3683
3319
  I
3684
3320
  1
3685
3321
  I
@@ -3688,7 +3324,7 @@ I
3688
3324
  1
3689
3325
  n
3690
3326
  p
3691
- 10
3327
+ 9
3692
3328
  s
3693
3329
  3
3694
3330
  $
@@ -3696,15 +3332,12 @@ x
3696
3332
  4
3697
3333
  to_s
3698
3334
  s
3699
- 12
3700
- -position: $
3701
- x
3702
- 4
3703
- name
3704
- s
3705
3335
  1
3706
3336
  -
3707
3337
  s
3338
+ 12
3339
+ -position: $
3340
+ s
3708
3341
  14
3709
3342
  -position,
3710
3343
  $
@@ -3726,24 +3359,24 @@ p
3726
3359
  I
3727
3360
  0
3728
3361
  I
3729
- ba
3362
+ aa
3730
3363
  I
3731
3364
  4
3732
3365
  I
3733
- bb
3366
+ ab
3734
3367
  I
3735
- 1c
3368
+ 24
3736
3369
  I
3737
- bc
3370
+ ac
3738
3371
  I
3739
- 32
3372
+ 42
3740
3373
  I
3741
- bd
3374
+ ad
3742
3375
  I
3743
- 4b
3376
+ 63
3744
3377
  x
3745
- 60
3746
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
3378
+ 62
3379
+ /Users/crispee/Projects/compass/lib/compass/sprite_importer.rb
3747
3380
  p
3748
3381
  1
3749
3382
  x
@@ -3757,156 +3390,153 @@ s
3757
3390
  2
3758
3391
  );
3759
3392
  p
3760
- 19
3393
+ 21
3761
3394
  I
3762
3395
  -1
3763
3396
  I
3764
- ac
3397
+ 9b
3765
3398
  I
3766
3399
  0
3767
3400
  I
3768
- ad
3401
+ 9c
3769
3402
  I
3770
- 6
3403
+ a
3771
3404
  I
3772
- b1
3405
+ 9d
3773
3406
  I
3774
- 12
3407
+ 10
3775
3408
  I
3776
- b9
3409
+ a1
3777
3410
  I
3778
- 35
3411
+ 1b
3779
3412
  I
3780
- be
3413
+ a9
3781
3414
  I
3782
- 37
3415
+ 42
3783
3416
  I
3784
- ba
3417
+ ae
3785
3418
  I
3786
- 3f
3419
+ 44
3787
3420
  I
3788
- be
3421
+ aa
3789
3422
  I
3790
- 42
3423
+ 4b
3424
+ I
3425
+ ae
3791
3426
  I
3792
- ba
3427
+ 4e
3793
3428
  I
3794
- 4a
3429
+ aa
3795
3430
  I
3796
- bf
3431
+ 56
3432
+ I
3433
+ af
3797
3434
  I
3798
- 54
3799
- x
3800
3435
  60
3801
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
3436
+ x
3437
+ 62
3438
+ /Users/crispee/Projects/compass/lib/compass/sprite_importer.rb
3802
3439
  p
3803
- 1
3440
+ 4
3441
+ x
3442
+ 3
3443
+ uri
3444
+ x
3445
+ 4
3446
+ name
3447
+ x
3448
+ 7
3449
+ sprites
3804
3450
  x
3805
3451
  7
3806
3452
  content
3807
3453
  p
3808
- 49
3454
+ 41
3809
3455
  I
3810
3456
  2
3811
3457
  I
3812
3458
  3
3813
3459
  I
3814
- c
3460
+ 22
3815
3461
  I
3816
3462
  4
3817
3463
  I
3818
- 2c
3464
+ 3b
3819
3465
  I
3820
3466
  5
3821
3467
  I
3822
- 45
3823
- I
3824
- 6
3825
- I
3826
- 51
3468
+ 47
3827
3469
  I
3828
3470
  8
3829
3471
  I
3830
- 5c
3472
+ 52
3831
3473
  I
3832
3474
  e
3833
3475
  I
3834
- 6a
3476
+ 60
3835
3477
  I
3836
3478
  15
3837
3479
  I
3838
- 78
3480
+ 6e
3839
3481
  I
3840
- 1c
3482
+ 19
3841
3483
  I
3842
- 86
3484
+ 7c
3843
3485
  I
3844
- 21
3486
+ 1d
3845
3487
  I
3846
- 94
3488
+ 8a
3847
3489
  I
3848
- 25
3490
+ 21
3849
3491
  I
3850
- a2
3492
+ 98
3851
3493
  I
3852
- 29
3494
+ 25
3853
3495
  I
3854
- b0
3496
+ a6
3855
3497
  I
3856
- 2d
3498
+ 2b
3857
3499
  I
3858
- be
3500
+ b4
3859
3501
  I
3860
- 34
3502
+ 2f
3861
3503
  I
3862
- cc
3504
+ bf
3863
3505
  I
3864
- 39
3506
+ 38
3865
3507
  I
3866
- d7
3508
+ ca
3867
3509
  I
3868
- 42
3510
+ 3e
3869
3511
  I
3870
- e5
3512
+ d5
3871
3513
  I
3872
- 48
3514
+ 44
3873
3515
  I
3874
- f3
3516
+ e0
3875
3517
  I
3876
- 4e
3518
+ 4d
3877
3519
  I
3878
- 101
3520
+ eb
3879
3521
  I
3880
- 53
3522
+ 58
3881
3523
  I
3882
- 10f
3524
+ f6
3883
3525
  I
3884
3526
  5d
3885
3527
  I
3886
- 11d
3887
- I
3888
- 66
3889
- I
3890
- 12b
3891
- I
3892
- 6b
3893
- I
3894
- 139
3895
- I
3896
- 70
3897
- I
3898
- 147
3528
+ 101
3899
3529
  I
3900
- 75
3530
+ 63
3901
3531
  I
3902
- 155
3532
+ 10c
3903
3533
  I
3904
- ac
3534
+ 9b
3905
3535
  I
3906
- 163
3536
+ 117
3907
3537
  x
3908
- 60
3909
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
3538
+ 62
3539
+ /Users/crispee/Projects/compass/lib/compass/sprite_importer.rb
3910
3540
  p
3911
3541
  0
3912
3542
  x
@@ -3921,8 +3551,8 @@ I
3921
3551
  I
3922
3552
  23
3923
3553
  x
3924
- 60
3925
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
3554
+ 62
3555
+ /Users/crispee/Projects/compass/lib/compass/sprite_importer.rb
3926
3556
  p
3927
3557
  0
3928
3558
  x
@@ -3937,7 +3567,7 @@ I
3937
3567
  I
3938
3568
  1c
3939
3569
  x
3940
- 60
3941
- /Users/chris/Projects/compass/lib/compass/sprite_importer.rb
3570
+ 62
3571
+ /Users/crispee/Projects/compass/lib/compass/sprite_importer.rb
3942
3572
  p
3943
3573
  0