awestruct 0.5.4 → 0.5.4.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e5fd572c73f3b019598a5f63b741c5d0df96fcd0
4
- data.tar.gz: 76e36c5b3f687e42c7d819f3a5e21b9ab938a027
3
+ metadata.gz: 66f88d160a376bb1a078f1795dc89ffa8fcf4257
4
+ data.tar.gz: 3736615ca5762046254b07f5863919a6456fddcc
5
5
  SHA512:
6
- metadata.gz: d904e79ab4c23037895cd7b1a916b08c7e2d8b0d21abcf5de54fb2d2981427b2d5a354d26af7cfda9eab520d89ea3f3c60537ed5b8e7717751a68337a787635c
7
- data.tar.gz: 1e3dd26392ccc0179eee5b29573a0a6b358e35eb8e12b758d5ab4cc10eb827c002352bc3934a38b2541d58b399c3024fbb12f2dc19941176397f847d9da0fd58
6
+ metadata.gz: d885b5bb8e255378237ca0cb383fd39d9853dde62bf8c74d4f7e04ae5423aaa8af53c6889cd518e048e54b7e38781e11a4690974f2b4aedbca049514fa00d0d0
7
+ data.tar.gz: aba99bcefb9e7c2880da23d32dd84e70f37e51fc47b7c81e5b80d71956266e17c7c8b3178e60ec17348f722b9955ee42e100f73c3eadf1f639a18987735178f7
@@ -4,7 +4,7 @@ require 'awestruct/version'
4
4
  spec = Gem::Specification.new do |s|
5
5
  s.name = 'awestruct'
6
6
  s.version = Awestruct::VERSION
7
- s.date = '2014-04-07'
7
+ s.date = '2014-04-09'
8
8
 
9
9
  s.authors = ['Bob McWhirter', 'Jason Porter', 'Lance Ball', 'Dan Allen', 'Torsten Curdt', 'other contributors']
10
10
  s.email = ['bob@mcwhirter.org', 'lightguard.jp@gmail.com', 'lball@redhat.com', 'dan.j.allen@gmail.com', 'tcurdt@vafer.org']
@@ -44,9 +44,10 @@ module Awestruct
44
44
  generate_thread = Thread.new {
45
45
  begin
46
46
 
47
+ # TODO: Have to figure something out for extensions and other files without an output path
48
+ # Probably add another method in engin to to do the regen w/o mucking with site.pages and run through things again
47
49
  page = engine.page_by_output_path(path)
48
50
  if ( page )
49
-
50
51
  pages = engine.generate_page_and_dependencies( page )
51
52
 
52
53
  if ( guard )
@@ -1,9 +1,8 @@
1
- require 'compass/configuration/defaults'
1
+ require 'compass'
2
2
 
3
3
  module Awestruct
4
4
  module Compass
5
- class DefaultConfiguration
6
- #include ::Compass::Configuration::Defaults
5
+ class DefaultConfiguration < ::Compass::Configuration::Data
7
6
 
8
7
  attr_reader :site
9
8
 
@@ -11,97 +10,121 @@ module Awestruct
11
10
  @site = site
12
11
  end
13
12
 
14
- #def top_level
15
- #self
16
- #end
17
-
18
- def project_type
13
+ def default_project_type
19
14
  :stand_alone
20
15
  end
21
16
 
22
- def environment
17
+ def default_environment
23
18
  site.profile
24
19
  end
25
20
 
26
- def project_path
21
+ def default_project_path
27
22
  site.config.dir
28
23
  end
29
24
 
30
- def sass_dir
25
+ def default_sass_dir
31
26
  File.join site.config.dir, 'stylesheets'
32
27
  end
33
28
 
34
- def http_path
29
+ def default_http_path
35
30
  site.base_url
36
31
  end
37
32
 
38
- def css_dir
33
+ def default_css_dir
39
34
  site.css_dir
40
35
  end
41
36
 
42
- def javascripts_dir
37
+ def default_javascripts_dir
43
38
  File.join site.config.dir, 'javascripts'
44
39
  end
45
40
 
46
- def http_javascripts_dir
41
+ def default_http_javascripts_dir
47
42
  File.join http_path, 'javascripts'
48
43
  end
49
44
 
50
- def http_stylesheets_dir
45
+ def default_http_stylesheets_dir
51
46
  File.join http_path, 'stylesheets'
52
47
  end
53
48
 
54
- def images_dir
49
+ def default_images_dir
55
50
  File.join site.config.dir, 'images'
56
51
  end
57
52
 
58
- def generated_images_dir
53
+ def default_generated_images_dir
59
54
  File.join site.output_path, 'images'
60
55
  end
61
56
 
62
- def http_generated_images_dir
57
+ def default_http_generated_images_dir
63
58
  File.join http_path, 'images'
64
59
  end
65
60
 
66
- def sprite_load_path
61
+ def default_sprite_load_path
67
62
  [images_path]
68
63
  end
69
64
 
70
- def images_path
65
+ def default_images_path
71
66
  File.join project_path, 'images'
72
67
  end
73
68
 
74
- def http_images_dir
69
+ def default_http_images_dir
75
70
  File.join http_path, 'images'
76
71
  end
77
72
 
78
- def fonts_dir
73
+ def default_fonts_dir
79
74
  File.join site.config.dir, 'fonts'
80
75
  end
81
76
 
82
- def http_fonts_dir
77
+ def default_http_fonts_dir
83
78
  File.join http_path, 'fonts'
84
79
  end
85
80
 
86
81
  def line_comments
87
- site.key?(:compass_line_comments) ? !!site.compass_line_comments : !site.profile.eql?('production')
82
+ if self.inherited_data && self.inherited_data.is_a?(::Compass::Configuration::FileData)
83
+ return self.inherited_data.line_comments
84
+ end
85
+ if site.profile.eql? 'production'
86
+ return false
87
+ else
88
+ if site.key? :compass_line_comments
89
+ return site.compass_line_comments
90
+ end
91
+ if site.key?(:scss) && site.scss.key?(:line_comments)
92
+ return site.scss.line_comments
93
+ end
94
+ if site.key?(:sass) && site.sass.key?(:line_comments)
95
+ return site.sass.line_comments
96
+ end
97
+ true
98
+ end
88
99
  end
89
100
 
90
101
  def output_style
91
- site.key?(:compass_output_style) ? site.compass_output_style.to_sym : site.profile.eql?('production') ? :compressed : :expanded
92
- end
93
-
94
- def relative_assets
102
+ if self.inherited_data && self.inherited_data.is_a?(::Compass::Configuration::FileData)
103
+ return self.inherited_data.output_style
104
+ end
105
+ if site.profile.eql? 'production'
106
+ return :compressed
107
+ else
108
+ if site.key? :compass_output_style
109
+ return site.compass_output_style
110
+ end
111
+ if (site.key? :scss) && (site.scss.key? :style)
112
+ return site.scss.style
113
+ end
114
+ if (site.key? :sass) && (site.sass.key? :style)
115
+ return site.sass.style
116
+ end
117
+ end
118
+ :expanded
119
+ end
120
+
121
+ def default_relative_assets
95
122
  false
96
123
  end
97
124
 
98
- def cache_dir
125
+ def default_cache_dir
99
126
  File.join site.config.dir, '.sass-cache'
100
127
  end
101
-
102
- def inherit_from! data
103
- return
104
- end
105
128
  end
106
129
  end
107
130
  end
@@ -1,6 +1,13 @@
1
1
  encoding: UTF-8
2
2
  interpolate: false
3
3
 
4
+ scss:
5
+ :line_numbers: true
6
+ :style: expanded
7
+ sass:
8
+ :line_numbers: true
9
+ :style: expanded
10
+
4
11
  content_syntax:
5
12
  coffee: coffeescript
6
13
  md: markdown
@@ -40,9 +40,6 @@ module Awestruct
40
40
  def self.pop_page
41
41
  page = @pages.pop
42
42
  $LOG.debug "pop #{page.output_path} #{@pages.empty?}" if $LOG.debug?
43
- if ( @pages.empty? && ! page.nil? )
44
- page.dependencies.persist!
45
- end
46
43
  end
47
44
 
48
45
 
@@ -240,40 +240,20 @@ module Awestruct
240
240
  end
241
241
 
242
242
  def configure_compass
243
- site.images_dir = File.join( site.config.output_dir, 'images' )
244
- site.fonts_dir = File.join( site.config.output_dir, 'fonts' )
245
- site.stylesheets_dir = File.join( site.config.output_dir, 'stylesheets' )
246
- site.javascripts_dir = File.join( site.config.output_dir, 'javascripts' )
243
+ site.images_dir = File.join( site.config.dir, 'images' )
244
+ site.fonts_dir = File.join( site.config.dir, 'fonts' )
245
+ site.stylesheets_dir = File.join( site.config.dir, 'stylesheets' )
246
+ site.javascripts_dir = File.join( site.config.dir, 'javascripts' )
247
247
 
248
+ default_config = Awestruct::Compass::DefaultConfiguration.new(site)
248
249
  compass_config_file = File.join(site.config.config_dir, 'compass.rb')
249
250
  if (File.exists? compass_config_file)
250
- compass_configuration = ::Compass::Configuration::FileData.new_from_file(compass_config_file)
251
- compass_configuration.inherit_from! ::Awestruct::Compass::DefaultConfiguration.new(site)
252
- ::Compass.add_configuration compass_configuration
253
- else
254
- ::Compass.configuration.inherit_from! ::Awestruct::Compass::DefaultConfiguration.new(site)
251
+ default_config.inherit_from! ::Compass::Configuration::FileData.new_from_file(compass_config_file)
255
252
  end
256
253
 
257
- # TODO: Should we add an on_stylesheet_error block?
254
+ ::Compass.add_configuration default_config
258
255
 
259
- # port old style configuration to new Tilt-based configuration
260
- # TODO consider deprecating the old config mechanism and move to default-site.yml
261
- [:scss, :sass].each do |sass_ext|
262
- if !site.key? sass_ext
263
- sass_config = {}
264
- site[sass_ext] = sass_config
265
- else
266
- sass_config = site[sass_ext]
267
- end
268
-
269
- if !sass_config.has_key?(:line_numbers) || site.profile.eql?('production')
270
- sass_config[:line_numbers] = ::Compass.configuration.line_comments
271
- end
272
-
273
- if !sass_config.has_key?(:style) || site.profile.eql?('production')
274
- sass_config[:style] = ::Compass.configuration.output_style
275
- end
276
- end
256
+ # TODO: Should we add an on_stylesheet_error block?
277
257
  end
278
258
 
279
259
  def load_pages
@@ -318,11 +298,13 @@ module Awestruct
318
298
 
319
299
  # path - relative to output dir
320
300
  def page_by_output_path(path)
321
- site.pages.find { |p|
322
- p.source_path.to_s == path
323
- } || site.layouts.find { |p|
324
- p.source_path.to_s == path
325
- }
301
+ if (path.include? '_layout')
302
+ site.layouts.find { |p| p.source_path.to_s == path }
303
+ elsif (path.include? '_partial')
304
+ site.partials.find { |p| p.source_path.to_s == path }
305
+ else
306
+ site.pages.find { |p| p.source_path.to_s == path }
307
+ end
326
308
  end
327
309
 
328
310
  def generate_page_and_dependencies(page)
@@ -331,31 +313,33 @@ module Awestruct
331
313
  return
332
314
  end
333
315
 
334
- if !page.output_path.nil?
316
+ if !page.output_path.nil? && !page.is_partial? && !page.__is_layout
335
317
  generate_page_internal(page)
336
318
  end
337
319
 
338
320
  pages = [ page ]
339
321
 
340
- pages.each do |page|
341
- $LOG.debug "--------------------" if $LOG.debug?
342
- $LOG.debug "Page: #{page.output_path} #{page.relative_source_path} #{page.__is_layout ? 'Layout':''}" if $LOG.debug?
343
- $LOG.debug "Detected change in content (#{page.dependencies.content_hash})" if page.dependencies.has_changed_content if $LOG.debug?
344
- $LOG.debug "!! Detected change in front matter. To fully reflect the change you'll need to restart Awestruct (#{page.dependencies.key_hash})" if page.dependencies.has_changed_keys if $LOG.debug?
345
- $LOG.debug "No changes detected" unless page.dependencies.has_changed_content or page.dependencies.has_changed_keys if $LOG.debug?
346
- $LOG.debug "Dependencies Matrix: (non unique source path)" if $LOG.debug?
347
- $LOG.debug "\t Outgoing dependencies:" if $LOG.debug?
348
- $LOG.debug "\t\t Content -> #{page.dependencies.dependencies.size}" if $LOG.debug?
349
- $LOG.debug "\t\t Key -> #{page.dependencies.key_dependencies.size}" if $LOG.debug?
350
- $LOG.debug "\t Incoming dependencies:" if $LOG.debug?
351
- $LOG.debug "\t\t Content <- #{page.dependencies.dependents.size}" if $LOG.debug?
352
- $LOG.debug "\t\t Key <- #{page.dependencies.key_dependents.size}" if $LOG.debug?
353
- $LOG.debug "--------------------" if $LOG.debug?
322
+ pages.each do |p|
323
+ if $LOG.debug?
324
+ $LOG.debug "--------------------"
325
+ $LOG.debug "Page: #{p.output_path} #{p.relative_source_path} #{p.__is_layout ? 'Layout':''}"
326
+ $LOG.debug "Detected change in content (#{p.dependencies.content_hash})" if p.dependencies.has_changed_content
327
+ $LOG.debug "!! Detected change in front matter. To fully reflect the change you'll need to restart Awestruct (#{p.dependencies.key_hash})" if p.dependencies.has_changed_keys
328
+ $LOG.debug "No changes detected" unless p.dependencies.has_changed_content or p.dependencies.has_changed_keys
329
+ $LOG.debug "Dependencies Matrix: (non unique source path)"
330
+ $LOG.debug "\t Outgoing dependencies:"
331
+ $LOG.debug "\t\t Content -> #{p.dependencies.dependencies.size}"
332
+ $LOG.debug "\t\t Key -> #{p.dependencies.key_dependencies.size}"
333
+ $LOG.debug "\t Incoming dependencies:"
334
+ $LOG.debug "\t\t Content <- #{p.dependencies.dependents.size}"
335
+ $LOG.debug "\t\t Key <- #{p.dependencies.key_dependents.size}"
336
+ $LOG.debug "--------------------"
337
+ end
354
338
  end
355
339
 
356
340
  regen_pages = Set.new
357
341
 
358
- if page.dependencies.has_changed_content or page.__is_layout
342
+ if page.dependencies.has_changed_content || page.__is_layout || page.is_partial?
359
343
  regen_pages += page.dependencies.dependents
360
344
  end
361
345
 
@@ -372,7 +356,17 @@ module Awestruct
372
356
 
373
357
  $LOG.debug "Starting regeneration of content dependent pages:" if regen_pages.size > 0 && $LOG.debug?
374
358
 
359
+ old_site_pages = site.pages
360
+ site.pages = regen_pages
361
+
362
+ @pipeline = Pipeline.new
363
+ load_yamls
364
+ load_pipeline
365
+ execute_pipeline
366
+ @site.pages = old_site_pages
367
+
375
368
  regen_pages.each do |p|
369
+ puts "Regenerating page #{p.output_path}"
376
370
  generate_page_internal(p)
377
371
  pages << p
378
372
  end
@@ -11,7 +11,6 @@ module Awestruct
11
11
  end
12
12
 
13
13
  page = site.engine.load_site_page( filename )
14
-
15
14
  return nil if !page
16
15
 
17
16
  params.each do |k,v|
@@ -19,15 +18,31 @@ module Awestruct
19
18
  end if params
20
19
 
21
20
  page.send("output_page=", self[:page])
22
-
23
- begin
24
- page.content
25
- rescue Exception => e
26
- ExceptionHelper.log_error "Error occurred while rendering partial #{filename} contained in #{self[:page].source_path}"
27
- ExceptionHelper.backtrace e
21
+ page.partial = true
22
+
23
+ from_site = site.partials.find {|p| p.source_path == page.source_path}
24
+
25
+ # Setup dependency tracking
26
+ if from_site
27
+ from_site.dependencies.add_dependent self[:page]
28
+ self[:page].dependencies.add_dependency from_site
29
+ Awestruct::Dependencies.track_dependency(from_site)
30
+ else
31
+ page.dependencies.add_dependent self[:page]
32
+ self[:page].dependencies.add_dependency page
33
+ Awestruct::Dependencies.track_dependency(page)
34
+ site.partials << page
35
+
36
+ begin
37
+ page.content
38
+ rescue Exception => e
39
+ ExceptionHelper.log_error "Error occurred while rendering partial #{filename} contained in #{self[:page].source_path}"
40
+ ExceptionHelper.backtrace e
41
+ end
28
42
  end
29
- end
30
43
 
44
+ end
31
45
  end
32
46
  end
33
47
  end
48
+
@@ -134,13 +134,19 @@ module Awestruct
134
134
  }
135
135
  return template.render(context)
136
136
  rescue LoadError => e
137
- ExceptionHelper.log_message "Could not load template library required for rendering #{File.join site.dir, relative_source_path}."
138
- ExceptionHelper.log_message "Please see #{File.join site.dir, output_path} for more information"
139
- return ExceptionHelper.html_error_report e, relative_source_path
137
+ error_page = context[:page]
138
+ ExceptionHelper.log_message "Could not load template library required for rendering #{File.join site.dir, error_page.source_path}."
139
+ ExceptionHelper.log_message "Please see #{File.join site.dir, error_page.output_path} for more information"
140
+ return ExceptionHelper.html_error_report e, error_page.source_path
140
141
  rescue Exception => e
141
- ExceptionHelper.log_message "An error during rendering #{File.join site.dir, relative_source_path} occurred."
142
- ExceptionHelper.log_message "Please see #{File.join site.dir, output_path} for more information"
143
- return ExceptionHelper.html_error_report e, relative_source_path
142
+ error_page = context[:page]
143
+ if error_page[:__is_layout] == true
144
+ ExceptionHelper.log_message "An error during rendering layout file #{File.join site.dir, error_page.source_path} occurred."
145
+ else
146
+ ExceptionHelper.log_message "An error during rendering #{File.join site.dir, error_page.source_path} occurred."
147
+ end
148
+ ExceptionHelper.log_message "Please see #{File.join site.dir, error_page.output_path} for more information"
149
+ return ExceptionHelper.html_error_report e, error_page.source_path
144
150
  end
145
151
  end
146
152
  end
@@ -12,6 +12,7 @@ module Awestruct
12
12
  attr_accessor :site
13
13
  attr_accessor :handler
14
14
  attr_reader :dependencies
15
+ attr_writer :partial
15
16
 
16
17
  def initialize(site, handler=nil)
17
18
  @site = site
@@ -92,6 +93,8 @@ module Awestruct
92
93
  def stale_output?(output_path)
93
94
  return true if ! File.exist?( output_path )
94
95
  return true if input_mtime > File.mtime( output_path )
96
+ return true if stale?
97
+ # TODO: Add stale callback and execute it
95
98
  false
96
99
  end
97
100
 
@@ -177,5 +180,9 @@ module Awestruct
177
180
  self.object_id == other_page.object_id
178
181
  end
179
182
 
183
+ def is_partial?
184
+ @partial
185
+ end
186
+
180
187
  end
181
188
  end
@@ -10,8 +10,9 @@ module Awestruct
10
10
  attr_reader :tmp_dir
11
11
  attr_reader :timestamp
12
12
 
13
- attr_reader :pages
13
+ attr_accessor :pages
14
14
  attr_reader :layouts
15
+ attr_reader :partials
15
16
 
16
17
  attr_reader :config
17
18
  attr_reader :engine
@@ -20,6 +21,7 @@ module Awestruct
20
21
  @engine = engine
21
22
  @pages = []
22
23
  @layouts = Layouts.new
24
+ @partials = []
23
25
  @config = config
24
26
  self.encoding = false
25
27
  @timestamp = Time.now.to_i
@@ -1,3 +1,3 @@
1
1
  module Awestruct
2
- VERSION = '0.5.4'
2
+ VERSION = '0.5.4.1'
3
3
  end
@@ -44,7 +44,7 @@ describe Awestruct::Handlers::TiltHandler do
44
44
  end
45
45
 
46
46
  def create_context
47
- Hashery::OpenCascade[ { :site=>@site } ]
47
+ Hashery::OpenCascade[ { :site=>@site, page: {:source_path => '', :output_path => ''} } ]
48
48
  end
49
49
 
50
50
  it "should provide default configuration options from site based on output_extension" do
@@ -104,12 +104,7 @@ describe Awestruct::Engine do
104
104
  expect( Compass.configuration.line_comments ).to eq false
105
105
  expect( Compass.configuration.output_style ).to eq :compressed
106
106
  expect( Compass.configuration.http_path ).to be nil
107
- expect( Compass.configuration.relative_assets ).to eq false
108
-
109
- engine.site.sass.line_numbers.should == false
110
- engine.site.sass.style.should == :compressed
111
- engine.site.scss.line_numbers.should == false
112
- engine.site.scss.style.should == :compressed
107
+ expect( Compass.configuration.relative_assets ).to eq false
113
108
  end
114
109
 
115
110
  it "should include line comments in compass by default in development mode" do
@@ -120,10 +115,8 @@ describe Awestruct::Engine do
120
115
  engine.load_user_site_yaml( 'development' )
121
116
  engine.configure_compass
122
117
 
123
- engine.site.sass.line_numbers.should == true
124
- engine.site.sass.style.should == :expanded
125
- engine.site.scss.line_numbers.should == true
126
- engine.site.scss.style.should == :expanded
118
+ expect( Compass.configuration.line_comments ).to eq true
119
+ expect( Compass.configuration.output_style ).to eq :expanded
127
120
  end
128
121
 
129
122
  it "wip should accept site.compass_line_comments and site.compass_output_style to configure behavior" do
@@ -134,10 +127,21 @@ describe Awestruct::Engine do
134
127
  engine.load_user_site_yaml( 'staging' )
135
128
  engine.configure_compass
136
129
 
137
- engine.site.sass.line_numbers.should == false
138
- engine.site.sass.style.should == :compact
139
- engine.site.scss.line_numbers.should == false
140
- engine.site.scss.style.should == :compact
130
+ expect( Compass.configuration.line_comments ).to eq false
131
+ expect( Compass.configuration.output_style ).to eq :compact
132
+ end
133
+
134
+ it "with a _config/compass.rb file, it should override defaults" do
135
+ opts = Awestruct::CLI::Options.new
136
+ opts.source_dir = test_data_dir 'engine-compass'
137
+ config = Awestruct::Config.new( opts )
138
+ engine = Awestruct::Engine.new(config)
139
+ engine.configure_compass
140
+
141
+ expect( Compass.configuration.line_comments ).to eq false
142
+ expect( Compass.configuration.output_style ).to eq :compressed
143
+ expect( Compass.configuration.disable_warnings ).to eq true
144
+ expect( Compass.configuration.fonts_dir ).to eq 'my-fonts'
141
145
  end
142
146
 
143
147
  end
@@ -0,0 +1,4 @@
1
+ disable_warnings = true
2
+ line_comments = false
3
+ output_style = :compressed
4
+ fonts_dir = 'my-fonts'
@@ -0,0 +1 @@
1
+ tags: [ 'a', 'b', 'c' ]
@@ -0,0 +1,26 @@
1
+ profiles:
2
+ development:
3
+ show_drafts: false
4
+ cook: microwave
5
+ base_url: http://localhost:4242
6
+ production:
7
+ show_drafts: true
8
+ cook: oven
9
+ asciidoctor:
10
+ :eruby: erb
11
+ :attributes:
12
+ imagesdir: /img
13
+ staging:
14
+ compass_line_comments: off
15
+ compass_output_style: :compact
16
+ base_url: http://stage.example.com
17
+
18
+ title: Awestruction!
19
+ intl_name: Internéšnl
20
+
21
+ asciidoctor:
22
+ :safe: 0
23
+ :eruby: erubis
24
+ :attributes:
25
+ imagesdir: /assets/images
26
+ idprefix: ''
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: awestruct
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.4
4
+ version: 0.5.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bob McWhirter
@@ -13,7 +13,7 @@ authors:
13
13
  autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
- date: 2014-04-07 00:00:00.000000000 Z
16
+ date: 2014-04-09 00:00:00.000000000 Z
17
17
  dependencies:
18
18
  - !ruby/object:Gem::Dependency
19
19
  name: haml
@@ -412,8 +412,11 @@ files:
412
412
  - spec/support/shared_handler_example.rb
413
413
  - spec/support/test-config/_config/site.yml
414
414
  - spec/support/test-data/.awestruct_ignore
415
+ - spec/support/test-data/engine-compass/_config/arbitrary.yml
416
+ - spec/support/test-data/engine-compass/_config/compass.rb
417
+ - spec/support/test-data/engine-compass/_config/other.yml
418
+ - spec/support/test-data/engine-compass/_config/site.yml
415
419
  - spec/support/test-data/engine/_config/arbitrary.yml
416
- - spec/support/test-data/engine/_config/compass.rb
417
420
  - spec/support/test-data/engine/_config/other.yml
418
421
  - spec/support/test-data/engine/_config/site.yml
419
422
  - spec/support/test-data/front-matter-empty.txt