2009-10-23 02:25:15 +02:00
# -*- encoding: utf-8 -*-
2010-12-24 02:18:15 +01:00
$: . push File . expand_path ( " ../lib " , __FILE__ )
require " middleman/version "
2009-10-23 02:25:15 +02:00
Gem :: Specification . new do | s |
2010-12-24 02:18:15 +01:00
s . name = " middleman "
s . version = Middleman :: VERSION
s . platform = Gem :: Platform :: RUBY
s . authors = [ " Thomas Reynolds " ]
s . email = [ " tdreyno@gmail.com " ]
s . homepage = " http://wiki.github.com/tdreyno/middleman "
2011-04-26 21:10:27 +02:00
s . summary = " A static site generator based on Sinatra. Providing Haml, Sass, Compass, Less, Coffee Script and including minification, compression and cache busting. "
2011-02-21 16:19:18 +01:00
2010-12-24 02:18:15 +01:00
s . rubyforge_project = " middleman "
2011-02-21 16:19:18 +01:00
2010-12-24 02:18:15 +01: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-23 02:25:15 +02:00
s . require_paths = [ " lib " ]
2011-02-21 16:19:18 +01:00
2010-12-24 02:18:15 +01:00
s . add_runtime_dependency ( " rack " , [ " ~> 1.0 " ] )
2011-02-21 16:19:18 +01:00
s . add_runtime_dependency ( " thin " , [ " ~> 1.2.0 " ] ) unless defined? ( JRUBY_VERSION )
s . add_runtime_dependency ( " kirk " , [ " ~> 0.1.8 " ] ) if defined? ( JRUBY_VERSION )
2010-12-24 02:18:15 +01:00
s . add_runtime_dependency ( " shotgun " , [ " ~> 0.8.0 " ] )
2011-01-30 23:18:49 +01:00
s . add_runtime_dependency ( " thor " , [ " ~> 0.14.0 " ] )
2011-02-05 19:32:04 +01:00
s . add_runtime_dependency ( " tilt " , [ " ~> 1.2.0 " ] )
2011-03-16 20:20:45 +01: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-24 02:18:15 +01:00
s . add_runtime_dependency ( " rack-test " , [ " ~> 0.5.0 " ] )
s . add_runtime_dependency ( " yui-compressor " , [ " ~> 0.9.0 " ] )
2011-04-25 05:13:07 +02:00
s . add_runtime_dependency ( " haml " , [ " ~> 3.1.0 " ] )
s . add_runtime_dependency ( " sass " , [ " ~> 3.1.0 " ] )
2011-04-26 21:10:27 +02:00
s . add_runtime_dependency ( " compass " , [ " ~> 0.11.1 " ] )
2011-04-08 20:55:50 +02:00
s . add_runtime_dependency ( " chunky_png " , [ " ~> 1.1.0 " ] )
s . add_runtime_dependency ( " oily_png " , [ " ~> 1.0 " ] ) unless defined? ( JRUBY_VERSION )
2010-12-24 02:23:49 +01:00
s . add_runtime_dependency ( " coffee-script " , [ " ~> 2.1.0 " ] )
s . add_runtime_dependency ( " less " , [ " ~> 1.2.0 " ] )
2011-04-15 00:35:41 +02:00
# s.add_runtime_dependency("fssm", ["~> 0.2.0"])
2011-02-05 19:32:04 +01:00
s . add_development_dependency ( " cucumber " , [ " ~> 0.10.0 " ] )
2010-12-24 02:18:15 +01:00
s . add_development_dependency ( " rspec " , [ " >= 0 " ] )
2011-02-21 16:19:18 +01:00
s . add_development_dependency ( " rocco " , [ " >= 0 " ] ) unless defined? ( JRUBY_VERSION )
2009-10-23 02:25:15 +02:00
end
2010-08-04 05:58:05 +02:00