2011-12-29 18:09:51 -05:00
# -*- encoding: utf-8 -*-
$: . push File . expand_path ( " ../lib " , __FILE__ )
require " middleman-core/version "
Gem :: Specification . new do | s |
s . name = " middleman-core "
2011-12-29 22:04:39 -05:00
s . version = Middleman :: VERSION
2011-12-29 18:09:51 -05:00
s . platform = Gem :: Platform :: RUBY
s . license = " MIT "
s . authors = [ " Thomas Reynolds " ]
s . email = [ " me@tdreyno.com " ]
s . homepage = " http://middlemanapp.com "
s . summary = " Hand-crafted frontend development "
s . description = " A static site generator based on Sinatra. Providing dozens of templating languages (Haml, Sass, Compass, Slim, CoffeeScript, and more). Makes minification, compression, cache busting, Yaml data (and more) an easy part of your development cycle. "
2012-01-02 17:33:28 -05:00
s . files = ` git ls-files ` . split ( " \n " ) + %w( bin/fsevent_watch_guard )
s . test_files = ` git ls-files -- {fixtures,features}/* ` . split ( " \n " )
s . executable = " middleman "
s . require_path = " lib "
2011-12-29 22:04:39 -05:00
2011-12-29 18:09:51 -05:00
# Core
s . add_dependency ( " rack " , [ " ~> 1.3.5 " ] )
s . add_dependency ( " tilt " , [ " ~> 1.3.1 " ] )
2011-12-29 22:04:39 -05:00
# Builder
s . add_dependency ( " rack-test " , [ " ~> 0.6.1 " ] )
2011-12-29 18:09:51 -05:00
# CLI
s . add_dependency ( " thor " , [ " ~> 0.14.0 " ] )
# Helpers
s . add_dependency ( " activesupport " , [ " ~> 3.1.0 " ] )
# Watcher
2012-01-05 23:22:24 -05:00
s . add_dependency ( " fssm " , [ " ~> 0.2.8 " ] )
2011-12-29 18:09:51 -05:00
end