middleman 0.9.6 → 0.9.7

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.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.9.6
1
+ 0.9.7
@@ -0,0 +1,4 @@
1
+ - content_for :head do
2
+ %title Custom head title
3
+
4
+ %h1 The Middleman is watching.
@@ -0,0 +1,7 @@
1
+ %html
2
+ %head
3
+ %title The Middleman!
4
+ = yield_content :head
5
+
6
+ %body
7
+ = yield
@@ -0,0 +1 @@
1
+ @import compass/reset.sass
data/middleman.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{middleman}
8
- s.version = "0.9.6"
8
+ s.version = "0.9.7"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Thomas Reynolds"]
@@ -45,6 +45,9 @@ Gem::Specification.new do |s|
45
45
  "lib/middleman/features/sprockets.rb",
46
46
  "lib/middleman/helpers.rb",
47
47
  "lib/middleman/template/init.rb",
48
+ "lib/middleman/template/views/index.html.haml",
49
+ "lib/middleman/template/views/layout.html.haml",
50
+ "lib/middleman/template/views/stylesheets/site.css.sass",
48
51
  "middleman.gemspec",
49
52
  "spec/builder_spec.rb",
50
53
  "spec/cache_buster_spec.rb",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: middleman
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.6
4
+ version: 0.9.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Reynolds
@@ -132,6 +132,9 @@ files:
132
132
  - lib/middleman/features/sprockets.rb
133
133
  - lib/middleman/helpers.rb
134
134
  - lib/middleman/template/init.rb
135
+ - lib/middleman/template/views/index.html.haml
136
+ - lib/middleman/template/views/layout.html.haml
137
+ - lib/middleman/template/views/stylesheets/site.css.sass
135
138
  - middleman.gemspec
136
139
  - spec/builder_spec.rb
137
140
  - spec/cache_buster_spec.rb