mirror of
				https://github.com/middleman/middleman.git
				synced 2022-11-09 12:20:27 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			24 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    = '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.'
 | 
						|
 | 
						|
  s.files        = `git ls-files -z`.split("\0")
 | 
						|
  s.test_files   = `git ls-files -z -- {fixtures,features}/*`.split("\0")
 | 
						|
  s.executable   = 'middleman'
 | 
						|
  s.require_path = 'lib'
 | 
						|
  s.required_ruby_version = '>= 2.2.0'
 | 
						|
 | 
						|
  # CLI
 | 
						|
  s.add_dependency('thor', ['>= 0.17.0', '< 2.0'])
 | 
						|
end
 |