middleman 0.99.1.pre → 0.99.2.pre

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 (71) hide show
  1. data/Rakefile +9 -17
  2. data/VERSION +1 -1
  3. data/features/builder.feature +16 -0
  4. data/features/coffee-script.feature +7 -0
  5. data/features/helpers_auto_stylesheet_link_tag.feature +17 -0
  6. data/features/helpers_page_classes.feature +17 -0
  7. data/features/less-css.feature +7 -0
  8. data/features/padrino_helpers.feature +10 -0
  9. data/features/scss-support.feature +7 -0
  10. data/features/step_definitions/asset_host_steps.rb +1 -1
  11. data/features/step_definitions/builder_steps.rb +45 -0
  12. data/features/step_definitions/env.rb +1 -1
  13. data/features/step_definitions/generator_steps.rb +9 -3
  14. data/features/step_definitions/middleman_steps.rb +8 -6
  15. data/features/step_definitions/page_layout_steps.rb +2 -2
  16. data/features/{asset_host.feature → w_asset_host.feature} +0 -0
  17. data/features/{automatic_image_sizes.feature → x_automatic_image_sizes.feature} +0 -0
  18. data/features/{cache_buster.feature → y_cache_buster.feature} +0 -0
  19. data/features/{relative_assets.feature → z_relative_assets.feature} +0 -0
  20. data/{spec/fixtures/sample → fixtures/test-app}/config.rb +0 -0
  21. data/{spec/fixtures/sample → fixtures/test-app}/public/images/blank.gif +0 -0
  22. data/{spec/fixtures/sample → fixtures/test-app}/public/static.html +0 -0
  23. data/{spec/fixtures/sample → fixtures/test-app}/public/stylesheets/auto-css.css +0 -0
  24. data/{spec/fixtures/sample → fixtures/test-app}/public/stylesheets/static.css +0 -0
  25. data/{spec/fixtures/sample → fixtures/test-app}/public/stylesheets/sub1/auto-css.css +0 -0
  26. data/{spec/fixtures/sample → fixtures/test-app}/public/stylesheets/sub1/sub2/auto-css.css +0 -0
  27. data/{spec/fixtures/sample → fixtures/test-app}/views/_partial.haml +0 -0
  28. data/{spec/fixtures/sample → fixtures/test-app}/views/asset_host.html.haml +0 -0
  29. data/{spec/fixtures/sample → fixtures/test-app}/views/auto-css.html.haml +0 -0
  30. data/{spec/fixtures/sample → fixtures/test-app}/views/auto-image-sizes.html.haml +0 -0
  31. data/{spec/fixtures/sample → fixtures/test-app}/views/cache-buster.html.haml +0 -0
  32. data/{spec/fixtures/sample → fixtures/test-app}/views/custom-layout.html.haml +0 -0
  33. data/{spec/fixtures/sample → fixtures/test-app}/views/index.html.haml +0 -0
  34. data/{spec/fixtures/sample → fixtures/test-app}/views/inline-css.html.haml +0 -0
  35. data/{spec/fixtures/sample → fixtures/test-app}/views/inline-js.html.haml +0 -0
  36. data/fixtures/test-app/views/javascripts/coffee_test.js.coffee +3 -0
  37. data/{spec/fixtures/sample → fixtures/test-app}/views/layout.haml +0 -0
  38. data/{spec/fixtures/sample/views → fixtures/test-app/views/layouts}/custom.haml +0 -0
  39. data/fixtures/test-app/views/padrino_test.html.haml +5 -0
  40. data/{spec/fixtures/sample → fixtures/test-app}/views/page-classes.html.haml +0 -0
  41. data/{spec/fixtures/sample → fixtures/test-app}/views/services/index.html.haml +0 -0
  42. data/{spec/fixtures/sample → fixtures/test-app}/views/stylesheets/asset_host.css.sass +0 -0
  43. data/{spec/fixtures/sample → fixtures/test-app}/views/stylesheets/relative_assets.css.sass +0 -0
  44. data/{spec/fixtures/sample → fixtures/test-app}/views/stylesheets/site.css.sass +0 -0
  45. data/{spec/fixtures/sample → fixtures/test-app}/views/stylesheets/site_scss.css.scss +0 -0
  46. data/{spec/fixtures/sample → fixtures/test-app}/views/stylesheets/test_less.css.less +0 -0
  47. data/lib/middleman.rb +9 -1
  48. data/lib/middleman/features.rb +29 -36
  49. data/lib/middleman/features/asset_host.rb +16 -15
  50. data/lib/middleman/features/automatic_image_sizes.rb +26 -24
  51. data/lib/middleman/features/cache_buster.rb +34 -33
  52. data/lib/middleman/features/default_helpers.rb +26 -33
  53. data/lib/middleman/features/livereload.rb +1 -1
  54. data/lib/middleman/features/minify_css.rb +8 -7
  55. data/lib/middleman/features/minify_javascript.rb +11 -10
  56. data/lib/middleman/features/relative_assets.rb +30 -29
  57. data/lib/middleman/features/slickmap.rb +43 -42
  58. data/lib/middleman/features/smush_pngs.rb +29 -29
  59. data/lib/middleman/features/ugly_haml.rb +7 -6
  60. data/lib/middleman/renderers/{coffee.rb → coffee_script.rb} +11 -8
  61. data/lib/middleman/renderers/haml.rb +28 -33
  62. data/lib/middleman/renderers/sass.rb +30 -28
  63. data/lib/middleman/server.rb +44 -49
  64. data/lib/middleman/template/config.rbt +6 -6
  65. data/middleman.gemspec +49 -50
  66. metadata +79 -75
  67. data/lib/middleman/renderers.rb +0 -26
  68. data/spec/builder_spec.rb +0 -62
  69. data/spec/fixtures/sample/views/maruku.html.maruku +0 -1
  70. data/spec/helpers_spec.rb +0 -43
  71. data/spec/spec_helper.rb +0 -8
data/middleman.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{middleman}
8
- s.version = "0.99.1.pre"
8
+ s.version = "0.99.2.pre"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Thomas Reynolds"]
12
- s.date = %q{2010-09-05}
12
+ s.date = %q{2010-09-06}
13
13
  s.email = %q{tdreyno@gmail.com}
14
14
  s.executables = ["mm-init", "mm-build", "mm-server"]
15
15
  s.extra_rdoc_files = [
@@ -26,19 +26,54 @@ Gem::Specification.new do |s|
26
26
  "bin/mm-build",
27
27
  "bin/mm-init",
28
28
  "bin/mm-server",
29
- "features/asset_host.feature",
30
- "features/automatic_image_sizes.feature",
31
- "features/cache_buster.feature",
29
+ "features/builder.feature",
30
+ "features/coffee-script.feature",
32
31
  "features/generator.feature",
32
+ "features/helpers_auto_stylesheet_link_tag.feature",
33
+ "features/helpers_page_classes.feature",
34
+ "features/less-css.feature",
33
35
  "features/minify_css.feature",
34
36
  "features/minify_javascript.feature",
37
+ "features/padrino_helpers.feature",
35
38
  "features/page_alias_and_layouts.feature",
36
- "features/relative_assets.feature",
39
+ "features/scss-support.feature",
37
40
  "features/step_definitions/asset_host_steps.rb",
41
+ "features/step_definitions/builder_steps.rb",
38
42
  "features/step_definitions/env.rb",
39
43
  "features/step_definitions/generator_steps.rb",
40
44
  "features/step_definitions/middleman_steps.rb",
41
45
  "features/step_definitions/page_layout_steps.rb",
46
+ "features/w_asset_host.feature",
47
+ "features/x_automatic_image_sizes.feature",
48
+ "features/y_cache_buster.feature",
49
+ "features/z_relative_assets.feature",
50
+ "fixtures/test-app/config.rb",
51
+ "fixtures/test-app/public/images/blank.gif",
52
+ "fixtures/test-app/public/static.html",
53
+ "fixtures/test-app/public/stylesheets/auto-css.css",
54
+ "fixtures/test-app/public/stylesheets/static.css",
55
+ "fixtures/test-app/public/stylesheets/sub1/auto-css.css",
56
+ "fixtures/test-app/public/stylesheets/sub1/sub2/auto-css.css",
57
+ "fixtures/test-app/views/_partial.haml",
58
+ "fixtures/test-app/views/asset_host.html.haml",
59
+ "fixtures/test-app/views/auto-css.html.haml",
60
+ "fixtures/test-app/views/auto-image-sizes.html.haml",
61
+ "fixtures/test-app/views/cache-buster.html.haml",
62
+ "fixtures/test-app/views/custom-layout.html.haml",
63
+ "fixtures/test-app/views/index.html.haml",
64
+ "fixtures/test-app/views/inline-css.html.haml",
65
+ "fixtures/test-app/views/inline-js.html.haml",
66
+ "fixtures/test-app/views/javascripts/coffee_test.js.coffee",
67
+ "fixtures/test-app/views/layout.haml",
68
+ "fixtures/test-app/views/layouts/custom.haml",
69
+ "fixtures/test-app/views/padrino_test.html.haml",
70
+ "fixtures/test-app/views/page-classes.html.haml",
71
+ "fixtures/test-app/views/services/index.html.haml",
72
+ "fixtures/test-app/views/stylesheets/asset_host.css.sass",
73
+ "fixtures/test-app/views/stylesheets/relative_assets.css.sass",
74
+ "fixtures/test-app/views/stylesheets/site.css.sass",
75
+ "fixtures/test-app/views/stylesheets/site_scss.css.scss",
76
+ "fixtures/test-app/views/stylesheets/test_less.css.less",
42
77
  "lib/middleman.rb",
43
78
  "lib/middleman/assets.rb",
44
79
  "lib/middleman/builder.rb",
@@ -58,8 +93,7 @@ Gem::Specification.new do |s|
58
93
  "lib/middleman/features/slickmap/template.html.haml",
59
94
  "lib/middleman/features/smush_pngs.rb",
60
95
  "lib/middleman/features/ugly_haml.rb",
61
- "lib/middleman/renderers.rb",
62
- "lib/middleman/renderers/coffee.rb",
96
+ "lib/middleman/renderers/coffee_script.rb",
63
97
  "lib/middleman/renderers/haml.rb",
64
98
  "lib/middleman/renderers/sass.rb",
65
99
  "lib/middleman/server.rb",
@@ -68,36 +102,7 @@ Gem::Specification.new do |s|
68
102
  "lib/middleman/template/views/layout.haml",
69
103
  "lib/middleman/template/views/stylesheets/site.css.sass",
70
104
  "lib/middleman/templater+dynamic_renderer.rb",
71
- "middleman.gemspec",
72
- "spec/builder_spec.rb",
73
- "spec/fixtures/sample/config.rb",
74
- "spec/fixtures/sample/public/images/blank.gif",
75
- "spec/fixtures/sample/public/static.html",
76
- "spec/fixtures/sample/public/stylesheets/auto-css.css",
77
- "spec/fixtures/sample/public/stylesheets/static.css",
78
- "spec/fixtures/sample/public/stylesheets/sub1/auto-css.css",
79
- "spec/fixtures/sample/public/stylesheets/sub1/sub2/auto-css.css",
80
- "spec/fixtures/sample/views/_partial.haml",
81
- "spec/fixtures/sample/views/asset_host.html.haml",
82
- "spec/fixtures/sample/views/auto-css.html.haml",
83
- "spec/fixtures/sample/views/auto-image-sizes.html.haml",
84
- "spec/fixtures/sample/views/cache-buster.html.haml",
85
- "spec/fixtures/sample/views/custom-layout.html.haml",
86
- "spec/fixtures/sample/views/custom.haml",
87
- "spec/fixtures/sample/views/index.html.haml",
88
- "spec/fixtures/sample/views/inline-css.html.haml",
89
- "spec/fixtures/sample/views/inline-js.html.haml",
90
- "spec/fixtures/sample/views/layout.haml",
91
- "spec/fixtures/sample/views/maruku.html.maruku",
92
- "spec/fixtures/sample/views/page-classes.html.haml",
93
- "spec/fixtures/sample/views/services/index.html.haml",
94
- "spec/fixtures/sample/views/stylesheets/asset_host.css.sass",
95
- "spec/fixtures/sample/views/stylesheets/relative_assets.css.sass",
96
- "spec/fixtures/sample/views/stylesheets/site.css.sass",
97
- "spec/fixtures/sample/views/stylesheets/site_scss.css.scss",
98
- "spec/fixtures/sample/views/stylesheets/test_less.css.less",
99
- "spec/helpers_spec.rb",
100
- "spec/spec_helper.rb"
105
+ "middleman.gemspec"
101
106
  ]
102
107
  s.homepage = %q{http://wiki.github.com/tdreyno/middleman}
103
108
  s.rdoc_options = ["--charset=UTF-8"]
@@ -105,12 +110,6 @@ Gem::Specification.new do |s|
105
110
  s.rubyforge_project = %q{middleman}
106
111
  s.rubygems_version = %q{1.3.7}
107
112
  s.summary = %q{A static site generator utilizing Haml, Sass and providing YUI compression and cache busting}
108
- s.test_files = [
109
- "spec/builder_spec.rb",
110
- "spec/fixtures/sample/config.rb",
111
- "spec/helpers_spec.rb",
112
- "spec/spec_helper.rb"
113
- ]
114
113
 
115
114
  if s.respond_to? :specification_version then
116
115
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
@@ -122,7 +121,8 @@ Gem::Specification.new do |s|
122
121
  s.add_runtime_dependency(%q<shotgun>, ["~> 0.8.0"])
123
122
  s.add_runtime_dependency(%q<templater>, ["~> 1.0.0"])
124
123
  s.add_runtime_dependency(%q<sinatra>, ["~> 1.0"])
125
- s.add_runtime_dependency(%q<sinatra-content-for>, ["~> 0.2.0"])
124
+ s.add_runtime_dependency(%q<padrino-core>, ["~> 0.9.0"])
125
+ s.add_runtime_dependency(%q<padrino-helpers>, ["~> 0.9.0"])
126
126
  s.add_runtime_dependency(%q<rack-test>, ["~> 0.5.0"])
127
127
  s.add_runtime_dependency(%q<yui-compressor>, ["~> 0.9.0"])
128
128
  s.add_runtime_dependency(%q<haml>, ["~> 3.0"])
@@ -130,7 +130,6 @@ Gem::Specification.new do |s|
130
130
  s.add_runtime_dependency(%q<json_pure>, ["~> 1.4.0"])
131
131
  s.add_runtime_dependency(%q<smusher>, ["~> 0.4.5"])
132
132
  s.add_runtime_dependency(%q<compass-slickmap>, ["~> 0.4.0"])
133
- s.add_development_dependency(%q<rspec>, [">= 0"])
134
133
  s.add_development_dependency(%q<cucumber>, [">= 0"])
135
134
  s.add_development_dependency(%q<jeweler>, [">= 0"])
136
135
  else
@@ -139,7 +138,8 @@ Gem::Specification.new do |s|
139
138
  s.add_dependency(%q<shotgun>, ["~> 0.8.0"])
140
139
  s.add_dependency(%q<templater>, ["~> 1.0.0"])
141
140
  s.add_dependency(%q<sinatra>, ["~> 1.0"])
142
- s.add_dependency(%q<sinatra-content-for>, ["~> 0.2.0"])
141
+ s.add_dependency(%q<padrino-core>, ["~> 0.9.0"])
142
+ s.add_dependency(%q<padrino-helpers>, ["~> 0.9.0"])
143
143
  s.add_dependency(%q<rack-test>, ["~> 0.5.0"])
144
144
  s.add_dependency(%q<yui-compressor>, ["~> 0.9.0"])
145
145
  s.add_dependency(%q<haml>, ["~> 3.0"])
@@ -147,7 +147,6 @@ Gem::Specification.new do |s|
147
147
  s.add_dependency(%q<json_pure>, ["~> 1.4.0"])
148
148
  s.add_dependency(%q<smusher>, ["~> 0.4.5"])
149
149
  s.add_dependency(%q<compass-slickmap>, ["~> 0.4.0"])
150
- s.add_dependency(%q<rspec>, [">= 0"])
151
150
  s.add_dependency(%q<cucumber>, [">= 0"])
152
151
  s.add_dependency(%q<jeweler>, [">= 0"])
153
152
  end
@@ -157,7 +156,8 @@ Gem::Specification.new do |s|
157
156
  s.add_dependency(%q<shotgun>, ["~> 0.8.0"])
158
157
  s.add_dependency(%q<templater>, ["~> 1.0.0"])
159
158
  s.add_dependency(%q<sinatra>, ["~> 1.0"])
160
- s.add_dependency(%q<sinatra-content-for>, ["~> 0.2.0"])
159
+ s.add_dependency(%q<padrino-core>, ["~> 0.9.0"])
160
+ s.add_dependency(%q<padrino-helpers>, ["~> 0.9.0"])
161
161
  s.add_dependency(%q<rack-test>, ["~> 0.5.0"])
162
162
  s.add_dependency(%q<yui-compressor>, ["~> 0.9.0"])
163
163
  s.add_dependency(%q<haml>, ["~> 3.0"])
@@ -165,7 +165,6 @@ Gem::Specification.new do |s|
165
165
  s.add_dependency(%q<json_pure>, ["~> 1.4.0"])
166
166
  s.add_dependency(%q<smusher>, ["~> 0.4.5"])
167
167
  s.add_dependency(%q<compass-slickmap>, ["~> 0.4.0"])
168
- s.add_dependency(%q<rspec>, [">= 0"])
169
168
  s.add_dependency(%q<cucumber>, [">= 0"])
170
169
  s.add_dependency(%q<jeweler>, [">= 0"])
171
170
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: middleman
3
3
  version: !ruby/object:Gem::Version
4
- hash: 961916760
4
+ hash: 961916756
5
5
  prerelease: true
6
6
  segments:
7
7
  - 0
8
8
  - 99
9
- - 1
9
+ - 2
10
10
  - pre
11
- version: 0.99.1.pre
11
+ version: 0.99.2.pre
12
12
  platform: ruby
13
13
  authors:
14
14
  - Thomas Reynolds
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2010-09-05 00:00:00 -07:00
19
+ date: 2010-09-06 00:00:00 -07:00
20
20
  default_executable:
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
@@ -98,25 +98,41 @@ dependencies:
98
98
  type: :runtime
99
99
  version_requirements: *id005
100
100
  - !ruby/object:Gem::Dependency
101
- name: sinatra-content-for
101
+ name: padrino-core
102
102
  prerelease: false
103
103
  requirement: &id006 !ruby/object:Gem::Requirement
104
104
  none: false
105
105
  requirements:
106
106
  - - ~>
107
107
  - !ruby/object:Gem::Version
108
- hash: 23
108
+ hash: 59
109
109
  segments:
110
110
  - 0
111
- - 2
111
+ - 9
112
112
  - 0
113
- version: 0.2.0
113
+ version: 0.9.0
114
114
  type: :runtime
115
115
  version_requirements: *id006
116
116
  - !ruby/object:Gem::Dependency
117
- name: rack-test
117
+ name: padrino-helpers
118
118
  prerelease: false
119
119
  requirement: &id007 !ruby/object:Gem::Requirement
120
+ none: false
121
+ requirements:
122
+ - - ~>
123
+ - !ruby/object:Gem::Version
124
+ hash: 59
125
+ segments:
126
+ - 0
127
+ - 9
128
+ - 0
129
+ version: 0.9.0
130
+ type: :runtime
131
+ version_requirements: *id007
132
+ - !ruby/object:Gem::Dependency
133
+ name: rack-test
134
+ prerelease: false
135
+ requirement: &id008 !ruby/object:Gem::Requirement
120
136
  none: false
121
137
  requirements:
122
138
  - - ~>
@@ -128,11 +144,11 @@ dependencies:
128
144
  - 0
129
145
  version: 0.5.0
130
146
  type: :runtime
131
- version_requirements: *id007
147
+ version_requirements: *id008
132
148
  - !ruby/object:Gem::Dependency
133
149
  name: yui-compressor
134
150
  prerelease: false
135
- requirement: &id008 !ruby/object:Gem::Requirement
151
+ requirement: &id009 !ruby/object:Gem::Requirement
136
152
  none: false
137
153
  requirements:
138
154
  - - ~>
@@ -144,11 +160,11 @@ dependencies:
144
160
  - 0
145
161
  version: 0.9.0
146
162
  type: :runtime
147
- version_requirements: *id008
163
+ version_requirements: *id009
148
164
  - !ruby/object:Gem::Dependency
149
165
  name: haml
150
166
  prerelease: false
151
- requirement: &id009 !ruby/object:Gem::Requirement
167
+ requirement: &id010 !ruby/object:Gem::Requirement
152
168
  none: false
153
169
  requirements:
154
170
  - - ~>
@@ -159,11 +175,11 @@ dependencies:
159
175
  - 0
160
176
  version: "3.0"
161
177
  type: :runtime
162
- version_requirements: *id009
178
+ version_requirements: *id010
163
179
  - !ruby/object:Gem::Dependency
164
180
  name: compass
165
181
  prerelease: false
166
- requirement: &id010 !ruby/object:Gem::Requirement
182
+ requirement: &id011 !ruby/object:Gem::Requirement
167
183
  none: false
168
184
  requirements:
169
185
  - - ~>
@@ -175,11 +191,11 @@ dependencies:
175
191
  - 0
176
192
  version: 0.10.0
177
193
  type: :runtime
178
- version_requirements: *id010
194
+ version_requirements: *id011
179
195
  - !ruby/object:Gem::Dependency
180
196
  name: json_pure
181
197
  prerelease: false
182
- requirement: &id011 !ruby/object:Gem::Requirement
198
+ requirement: &id012 !ruby/object:Gem::Requirement
183
199
  none: false
184
200
  requirements:
185
201
  - - ~>
@@ -191,11 +207,11 @@ dependencies:
191
207
  - 0
192
208
  version: 1.4.0
193
209
  type: :runtime
194
- version_requirements: *id011
210
+ version_requirements: *id012
195
211
  - !ruby/object:Gem::Dependency
196
212
  name: smusher
197
213
  prerelease: false
198
- requirement: &id012 !ruby/object:Gem::Requirement
214
+ requirement: &id013 !ruby/object:Gem::Requirement
199
215
  none: false
200
216
  requirements:
201
217
  - - ~>
@@ -207,11 +223,11 @@ dependencies:
207
223
  - 5
208
224
  version: 0.4.5
209
225
  type: :runtime
210
- version_requirements: *id012
226
+ version_requirements: *id013
211
227
  - !ruby/object:Gem::Dependency
212
228
  name: compass-slickmap
213
229
  prerelease: false
214
- requirement: &id013 !ruby/object:Gem::Requirement
230
+ requirement: &id014 !ruby/object:Gem::Requirement
215
231
  none: false
216
232
  requirements:
217
233
  - - ~>
@@ -223,20 +239,6 @@ dependencies:
223
239
  - 0
224
240
  version: 0.4.0
225
241
  type: :runtime
226
- version_requirements: *id013
227
- - !ruby/object:Gem::Dependency
228
- name: rspec
229
- prerelease: false
230
- requirement: &id014 !ruby/object:Gem::Requirement
231
- none: false
232
- requirements:
233
- - - ">="
234
- - !ruby/object:Gem::Version
235
- hash: 3
236
- segments:
237
- - 0
238
- version: "0"
239
- type: :development
240
242
  version_requirements: *id014
241
243
  - !ruby/object:Gem::Dependency
242
244
  name: cucumber
@@ -287,19 +289,54 @@ files:
287
289
  - bin/mm-build
288
290
  - bin/mm-init
289
291
  - bin/mm-server
290
- - features/asset_host.feature
291
- - features/automatic_image_sizes.feature
292
- - features/cache_buster.feature
292
+ - features/builder.feature
293
+ - features/coffee-script.feature
293
294
  - features/generator.feature
295
+ - features/helpers_auto_stylesheet_link_tag.feature
296
+ - features/helpers_page_classes.feature
297
+ - features/less-css.feature
294
298
  - features/minify_css.feature
295
299
  - features/minify_javascript.feature
300
+ - features/padrino_helpers.feature
296
301
  - features/page_alias_and_layouts.feature
297
- - features/relative_assets.feature
302
+ - features/scss-support.feature
298
303
  - features/step_definitions/asset_host_steps.rb
304
+ - features/step_definitions/builder_steps.rb
299
305
  - features/step_definitions/env.rb
300
306
  - features/step_definitions/generator_steps.rb
301
307
  - features/step_definitions/middleman_steps.rb
302
308
  - features/step_definitions/page_layout_steps.rb
309
+ - features/w_asset_host.feature
310
+ - features/x_automatic_image_sizes.feature
311
+ - features/y_cache_buster.feature
312
+ - features/z_relative_assets.feature
313
+ - fixtures/test-app/config.rb
314
+ - fixtures/test-app/public/images/blank.gif
315
+ - fixtures/test-app/public/static.html
316
+ - fixtures/test-app/public/stylesheets/auto-css.css
317
+ - fixtures/test-app/public/stylesheets/static.css
318
+ - fixtures/test-app/public/stylesheets/sub1/auto-css.css
319
+ - fixtures/test-app/public/stylesheets/sub1/sub2/auto-css.css
320
+ - fixtures/test-app/views/_partial.haml
321
+ - fixtures/test-app/views/asset_host.html.haml
322
+ - fixtures/test-app/views/auto-css.html.haml
323
+ - fixtures/test-app/views/auto-image-sizes.html.haml
324
+ - fixtures/test-app/views/cache-buster.html.haml
325
+ - fixtures/test-app/views/custom-layout.html.haml
326
+ - fixtures/test-app/views/index.html.haml
327
+ - fixtures/test-app/views/inline-css.html.haml
328
+ - fixtures/test-app/views/inline-js.html.haml
329
+ - fixtures/test-app/views/javascripts/coffee_test.js.coffee
330
+ - fixtures/test-app/views/layout.haml
331
+ - fixtures/test-app/views/layouts/custom.haml
332
+ - fixtures/test-app/views/padrino_test.html.haml
333
+ - fixtures/test-app/views/page-classes.html.haml
334
+ - fixtures/test-app/views/services/index.html.haml
335
+ - fixtures/test-app/views/stylesheets/asset_host.css.sass
336
+ - fixtures/test-app/views/stylesheets/relative_assets.css.sass
337
+ - fixtures/test-app/views/stylesheets/site.css.sass
338
+ - fixtures/test-app/views/stylesheets/site_scss.css.scss
339
+ - fixtures/test-app/views/stylesheets/test_less.css.less
303
340
  - lib/middleman.rb
304
341
  - lib/middleman/assets.rb
305
342
  - lib/middleman/builder.rb
@@ -319,8 +356,7 @@ files:
319
356
  - lib/middleman/features/slickmap/template.html.haml
320
357
  - lib/middleman/features/smush_pngs.rb
321
358
  - lib/middleman/features/ugly_haml.rb
322
- - lib/middleman/renderers.rb
323
- - lib/middleman/renderers/coffee.rb
359
+ - lib/middleman/renderers/coffee_script.rb
324
360
  - lib/middleman/renderers/haml.rb
325
361
  - lib/middleman/renderers/sass.rb
326
362
  - lib/middleman/server.rb
@@ -330,35 +366,6 @@ files:
330
366
  - lib/middleman/template/views/stylesheets/site.css.sass
331
367
  - lib/middleman/templater+dynamic_renderer.rb
332
368
  - middleman.gemspec
333
- - spec/builder_spec.rb
334
- - spec/fixtures/sample/config.rb
335
- - spec/fixtures/sample/public/images/blank.gif
336
- - spec/fixtures/sample/public/static.html
337
- - spec/fixtures/sample/public/stylesheets/auto-css.css
338
- - spec/fixtures/sample/public/stylesheets/static.css
339
- - spec/fixtures/sample/public/stylesheets/sub1/auto-css.css
340
- - spec/fixtures/sample/public/stylesheets/sub1/sub2/auto-css.css
341
- - spec/fixtures/sample/views/_partial.haml
342
- - spec/fixtures/sample/views/asset_host.html.haml
343
- - spec/fixtures/sample/views/auto-css.html.haml
344
- - spec/fixtures/sample/views/auto-image-sizes.html.haml
345
- - spec/fixtures/sample/views/cache-buster.html.haml
346
- - spec/fixtures/sample/views/custom-layout.html.haml
347
- - spec/fixtures/sample/views/custom.haml
348
- - spec/fixtures/sample/views/index.html.haml
349
- - spec/fixtures/sample/views/inline-css.html.haml
350
- - spec/fixtures/sample/views/inline-js.html.haml
351
- - spec/fixtures/sample/views/layout.haml
352
- - spec/fixtures/sample/views/maruku.html.maruku
353
- - spec/fixtures/sample/views/page-classes.html.haml
354
- - spec/fixtures/sample/views/services/index.html.haml
355
- - spec/fixtures/sample/views/stylesheets/asset_host.css.sass
356
- - spec/fixtures/sample/views/stylesheets/relative_assets.css.sass
357
- - spec/fixtures/sample/views/stylesheets/site.css.sass
358
- - spec/fixtures/sample/views/stylesheets/site_scss.css.scss
359
- - spec/fixtures/sample/views/stylesheets/test_less.css.less
360
- - spec/helpers_spec.rb
361
- - spec/spec_helper.rb
362
369
  has_rdoc: true
363
370
  homepage: http://wiki.github.com/tdreyno/middleman
364
371
  licenses: []
@@ -395,8 +402,5 @@ rubygems_version: 1.3.7
395
402
  signing_key:
396
403
  specification_version: 3
397
404
  summary: A static site generator utilizing Haml, Sass and providing YUI compression and cache busting
398
- test_files:
399
- - spec/builder_spec.rb
400
- - spec/fixtures/sample/config.rb
401
- - spec/helpers_spec.rb
402
- - spec/spec_helper.rb
405
+ test_files: []
406
+