compass 0.11.2 → 0.11.3

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