2009-10-22 20:25:15 -04:00
# -*- encoding: utf-8 -*-
2010-12-23 20:18:15 -05:00
$: . push File . expand_path ( " ../lib " , __FILE__ )
require " middleman/version "
2009-10-22 20:25:15 -04:00
Gem :: Specification . new do | s |
2010-12-23 20:18:15 -05:00
s . name = " middleman "
s . version = Middleman :: VERSION
s . platform = Gem :: Platform :: RUBY
s . authors = [ " Thomas Reynolds " ]
s . email = [ " tdreyno@gmail.com " ]
2011-07-10 16:55:40 -04:00
s . homepage = " http://middlemanapp.com "
s . summary = " A static site generator based on Sinatra. Providing Haml, Sass, Compass, CoffeeScript and including minification, compression and cache busting. "
2011-02-21 10:19:18 -05:00
2010-12-23 20:18:15 -05:00
s . rubyforge_project = " middleman "
2011-02-21 10:19:18 -05:00
2010-12-23 20:18:15 -05:00
s . files = ` git ls-files ` . split ( " \n " )
s . test_files = ` git ls-files -- {fixtures,features}/* ` . split ( " \n " )
s . executables = ` git ls-files -- bin/* ` . split ( " \n " ) . map { | f | File . basename ( f ) }
2009-10-22 20:25:15 -04:00
s . require_paths = [ " lib " ]
2011-02-21 10:19:18 -05:00
2011-07-16 18:38:15 -04:00
s . add_runtime_dependency ( " rack " , [ " ~> 1.3.0 " ] )
2011-07-26 19:23:09 -04:00
s . add_runtime_dependency ( " thin " , [ " ~> 1.2.11 " ] )
2011-01-30 17:18:49 -05:00
s . add_runtime_dependency ( " thor " , [ " ~> 0.14.0 " ] )
2011-06-01 15:33:03 -04:00
s . add_runtime_dependency ( " tilt " , [ " ~> 1.3.1 " ] )
2011-06-08 23:53:46 -04:00
s . add_runtime_dependency ( " rdiscount " , [ " ~> 1.6.8 " ] )
2011-03-16 15:20:45 -04:00
s . add_runtime_dependency ( " sinatra " , [ " ~> 1.2.0 " ] )
s . add_runtime_dependency ( " padrino-core " , [ " ~> 0.9.23 " ] )
s . add_runtime_dependency ( " padrino-helpers " , [ " ~> 0.9.23 " ] )
2010-12-23 20:18:15 -05:00
s . add_runtime_dependency ( " rack-test " , [ " ~> 0.5.0 " ] )
2011-04-27 02:03:25 -04:00
s . add_runtime_dependency ( " uglifier " , [ " ~> 0.5.0 " ] )
2011-07-25 19:20:38 -04:00
s . add_runtime_dependency ( " slim " , [ " ~> 1.0.0 " ] )
2011-04-24 23:13:07 -04:00
s . add_runtime_dependency ( " haml " , [ " ~> 3.1.0 " ] )
2011-07-25 19:20:38 -04:00
s . add_runtime_dependency ( " sass " , [ " ~> 3.1.5 " ] )
2011-07-13 03:38:04 -04:00
s . add_runtime_dependency ( " coffee-script " , [ " ~> 2.2.0 " ] )
2011-06-24 15:06:28 -04:00
s . add_runtime_dependency ( " compass " , [ " ~> 0.11.3 " ] )
2011-07-10 18:10:49 -04:00
s . add_runtime_dependency ( " sprockets " , [ " 2.0.0.beta.10 " ] )
2011-04-29 14:58:07 -04:00
s . add_runtime_dependency ( " httparty " , [ " ~> 0.7.0 " ] )
2011-07-26 14:49:06 -04:00
s . add_runtime_dependency ( " guard " , [ " ~> 0.5.1 " ] )
s . add_runtime_dependency ( " guard-livereload " , [ " ~> 0.2.0 " ] )
2011-07-13 03:38:04 -04:00
s . add_development_dependency ( " coffee-filter " , [ " ~> 0.1.1 " ] )
2011-02-05 13:32:04 -05:00
s . add_development_dependency ( " cucumber " , [ " ~> 0.10.0 " ] )
2011-06-24 14:04:26 -04:00
s . add_development_dependency ( " rake " , [ " 0.8.7 " ] )
2011-07-26 14:49:06 -04:00
s . add_development_dependency ( " rspec " , [ " ~> 2.6.0 " ] )
s . add_development_dependency ( " rocco " , [ " ~> 0.8.1 " ] ) unless defined? ( JRUBY_VERSION )
2009-10-22 20:25:15 -04:00
end
2010-08-03 23:58:05 -04:00