2014-01-02 19:34:08 -05:00
# -*- encoding: utf-8 -*-
2014-03-25 04:50:28 -04:00
$LOAD_PATH . push File . expand_path ( '../lib' , __FILE__ )
2014-03-25 05:07:27 -04:00
require File . expand_path ( '../../middleman-core/lib/middleman-core/version' , __FILE__ )
2014-01-02 19:34:08 -05:00
Gem :: Specification . new do | s |
2014-03-25 04:50:28 -04:00
s . name = 'middleman-cli'
2014-01-02 19:34:08 -05:00
s . version = Middleman :: VERSION
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' ]
2019-05-29 16:48:14 -04:00
s . homepage = 'https://middlemanapp.com'
2014-03-25 04:50:28 -04:00
s . summary = 'Hand-crafted frontend development'
2017-03-25 21:01:49 -04:00
s . description = 'A static site generator. Provides dozens of templating languages (Haml, Sass, Slim, CoffeeScript, and more). Makes minification, compression, cache busting, Yaml data (and more) an easy part of your development cycle.'
2014-01-02 19:34:08 -05:00
2019-05-24 15:48:30 -04:00
s . files = ` git ls-files -z ` . split ( " \x0 " ) . reject { | f | f . match ( %r{ ^(fixtures|features|spec)/ } ) }
2014-03-25 04:50:28 -04:00
s . executable = 'middleman'
s . require_path = 'lib'
2019-05-29 16:48:14 -04:00
s . required_ruby_version = '>= 2.5.0'
2014-01-02 19:34:08 -05:00
# CLI
2014-03-25 04:50:28 -04:00
s . add_dependency ( 'thor' , [ '>= 0.17.0' , '< 2.0' ] )
2014-01-02 19:34:08 -05:00
end