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-06-01 21:33:03 +02:00
s . add_runtime_dependency ( " tilt " , [ " ~> 1.3.1 " ] )
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 " ] )
2011-04-27 08:03:25 +02:00
s . add_runtime_dependency ( " uglifier " , [ " ~> 0.5.0 " ] )
2011-06-02 19:48:56 +02:00
s . add_runtime_dependency ( " slim " , [ " ~> 0.9.4 " ] )
2011-04-25 05:13:07 +02:00
s . add_runtime_dependency ( " haml " , [ " ~> 3.1.0 " ] )
2011-05-22 17:27:39 +02:00
s . add_runtime_dependency ( " coffee-filter " , [ " ~> 0.1.0 " ] )
2011-04-25 05:13:07 +02:00
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-05-19 00:22:19 +02:00
s . add_runtime_dependency ( " coffee-script " , [ " ~> 2.2.0 " ] )
2011-04-29 20:58:07 +02:00
s . add_runtime_dependency ( " httparty " , [ " ~> 0.7.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