2011-12-29 18:09:51 -05:00
# -*- encoding: utf-8 -*-
2014-03-25 04:50:28 -04:00
$LOAD_PATH . push File . expand_path ( '../lib' , __FILE__ )
require File . expand_path ( '../lib/middleman-core/version' , __FILE__ )
2011-12-29 18:09:51 -05:00
Gem :: Specification . new do | s |
2014-03-25 04:50:28 -04:00
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
2014-03-25 04:50:28 -04:00
s . license = 'MIT'
s . authors = [ 'Thomas Reynolds' , 'Ben Hollis' ]
s . email = [ 'me@tdreyno.com' , 'ben@benhollis.net' ]
s . homepage = 'http://middlemanapp.com'
s . summary = 'Hand-crafted frontend development'
s . description = 'A static site generator. Provides 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.'
2011-12-29 18:09:51 -05:00
2012-05-02 01:57:56 -04:00
s . files = ` git ls-files -z ` . split ( " \0 " )
s . test_files = ` git ls-files -z -- {fixtures,features}/* ` . split ( " \0 " )
2014-03-25 04:50:28 -04:00
s . require_path = 'lib'
2013-11-18 23:19:49 -05:00
s . required_ruby_version = '>= 1.9.3'
2011-12-29 18:09:51 -05:00
# Core
2014-03-25 04:50:28 -04:00
s . add_dependency ( 'bundler' , [ '~> 1.1' ] )
s . add_dependency ( 'rack' , [ '>= 1.4.5' ] )
s . add_dependency ( 'tilt' , [ '~> 1.4.1' ] )
s . add_dependency ( 'erubis' )
s . add_dependency ( 'hooks' , [ '~> 0.3' ] )
2013-11-18 23:19:49 -05:00
2011-12-29 18:09:51 -05:00
# Helpers
2014-03-25 04:50:28 -04:00
s . add_dependency ( 'activesupport' , [ '~> 4.0.1' ] )
2013-11-18 23:19:49 -05:00
2011-12-29 18:09:51 -05:00
# Watcher
2014-03-25 04:50:28 -04:00
s . add_dependency ( 'listen' , [ '~> 1.3' ] )
2013-05-08 14:37:55 -04:00
# i18n
2014-03-25 04:50:28 -04:00
s . add_dependency ( 'i18n' , [ '~> 0.6.9' ] )
2011-12-29 18:09:51 -05:00
end