mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
23 lines
1 KiB
Ruby
23 lines
1 KiB
Ruby
# -*- encoding: utf-8 -*-
|
|
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
|
|
require File.expand_path('../../middleman-core/lib/middleman-core/version', __FILE__)
|
|
|
|
Gem::Specification.new do |s|
|
|
s.name = 'middleman-cli'
|
|
s.version = Middleman::VERSION
|
|
s.platform = Gem::Platform::RUBY
|
|
s.license = 'MIT'
|
|
s.authors = ['Thomas Reynolds', 'Ben Hollis']
|
|
s.email = ['me@tdreyno.com', 'ben@benhollis.net']
|
|
s.homepage = 'https://middlemanapp.com'
|
|
s.summary = 'Hand-crafted frontend development'
|
|
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.'
|
|
|
|
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(fixtures|features|spec)/}) }
|
|
s.executable = 'middleman'
|
|
s.require_path = 'lib'
|
|
s.required_ruby_version = '>= 3.1.0'
|
|
|
|
# CLI
|
|
s.add_dependency('thor', ['>= 0.17.0', '< 2.0'])
|
|
end
|