minor updates

This commit is contained in:
Thomas Reynolds 2010-09-24 15:56:04 -07:00
parent 0ae1eafcbb
commit e1f8aba315
3 changed files with 10 additions and 6 deletions

View file

@ -6,6 +6,10 @@ The Middleman is ever-vigilant against tag-soup, unreadable CSS and repetition.
Everything you need to know is on the wiki: http://github.com/tdreyno/middleman/wiki
== Mailing List
If you have questions, answers can be found on the mailing list: http://groups.google.com/group/middleman-users
== Copyright
Copyright (c) 2009 Thomas Reynolds. See LICENSE for details.
Copyright (c) 2010 Thomas Reynolds. See LICENSE for details.

View file

@ -7,8 +7,8 @@ module Middleman
autoload :Server, "middleman/server"
module Renderers
autoload :Haml, "middleman/renderers/haml"
autoload :Sass, "middleman/renderers/sass"
autoload :Haml, "middleman/renderers/haml"
autoload :Sass, "middleman/renderers/sass"
end
autoload :Features, "middleman/features"

View file

@ -9,7 +9,7 @@ Gem::Specification.new do |s|
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = ["Thomas Reynolds"]
s.date = %q{2010-09-11}
s.date = %q{2010-09-24}
s.email = %q{tdreyno@gmail.com}
s.executables = ["mm-init", "mm-build", "mm-server"]
s.extra_rdoc_files = [
@ -107,14 +107,14 @@ Gem::Specification.new do |s|
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{middleman}
s.rubygems_version = %q{1.3.7}
s.rubygems_version = %q{1.3.6}
s.summary = %q{A static site generator utilizing Haml, Sass and providing YUI compression and cache busting}
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rack>, ["~> 1.0"])
s.add_runtime_dependency(%q<thin>, ["~> 1.2.0"])
s.add_runtime_dependency(%q<shotgun>, ["~> 0.8.0"])