1
0
Fork 0
mirror of https://github.com/middleman/middleman.git synced 2022-11-09 12:20:27 -05:00
middleman--middleman/middleman/middleman.gemspec
Thomas Reynolds efd1ef69d6
2018 cleanup
Upgrade our deps
Drop support for Ruby 2.2 (because some deps have)
Update rubocop and lints
2018-09-11 11:43:07 -07:00

27 lines
1.3 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'
s.version = Middleman::VERSION
s.platform = Gem::Platform::RUBY
s.license = 'MIT'
s.authors = ['Thomas Reynolds', 'Ben Hollis', 'Karl Freeman']
s.email = ['me@tdreyno.com', 'ben@benhollis.net', 'karlfreeman@gmail.com']
s.homepage = 'http://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("\0")
s.test_files = `git ls-files -z -- {fixtures,features}/*`.split("\0")
s.require_path = 'lib'
s.required_ruby_version = '>= 2.3.0'
s.add_dependency('middleman-core', Middleman::VERSION)
s.add_dependency('middleman-cli', Middleman::VERSION)
s.add_dependency('sass', ['>= 3.4.0', '< 4.0'])
s.add_dependency('haml', ['>= 4.0.5'])
s.add_dependency('coffee-script', ['~> 2.2'])
s.add_dependency('kramdown', ['~> 1.2'])
end