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 " ]
s . homepage = " http://wiki.github.com/tdreyno/middleman "
2011-04-26 15:10:27 -04: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 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
2010-12-23 20:18:15 -05:00
s . add_runtime_dependency ( " rack " , [ " ~> 1.0 " ] )
2011-02-21 10:19:18 -05: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-23 20:18:15 -05:00
s . add_runtime_dependency ( " shotgun " , [ " ~> 0.8.0 " ] )
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-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-06-02 13:48:56 -04:00
s . add_runtime_dependency ( " slim " , [ " ~> 0.9.4 " ] )
2011-04-24 23:13:07 -04:00
s . add_runtime_dependency ( " haml " , [ " ~> 3.1.0 " ] )
2011-05-22 11:27:39 -04:00
s . add_runtime_dependency ( " coffee-filter " , [ " ~> 0.1.0 " ] )
2011-04-24 23:13:07 -04:00
s . add_runtime_dependency ( " sass " , [ " ~> 3.1.0 " ] )
2011-04-26 15:10:27 -04:00
s . add_runtime_dependency ( " compass " , [ " ~> 0.11.1 " ] )
2011-05-18 18:22:19 -04:00
s . add_runtime_dependency ( " coffee-script " , [ " ~> 2.2.0 " ] )
2011-04-29 14:58:07 -04:00
s . add_runtime_dependency ( " httparty " , [ " ~> 0.7.0 " ] )
2011-04-14 18:35:41 -04:00
# s.add_runtime_dependency("fssm", ["~> 0.2.0"])
2011-02-05 13:32:04 -05:00
s . add_development_dependency ( " cucumber " , [ " ~> 0.10.0 " ] )
2010-12-23 20:18:15 -05:00
s . add_development_dependency ( " rspec " , [ " >= 0 " ] )
2011-02-21 10:19:18 -05:00
s . add_development_dependency ( " rocco " , [ " >= 0 " ] ) unless defined? ( JRUBY_VERSION )
2009-10-22 20:25:15 -04:00
end
2010-08-03 23:58:05 -04:00