forked from slim-template/slim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslim.gemspec
23 lines (19 loc) · 972 Bytes
/
slim.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require File.dirname(__FILE__) + '/lib/slim/version'
require 'date'
Gem::Specification.new do |s|
s.name = 'slim'
s.version = Slim::VERSION
s.date = Date.today.to_s
s.authors = ['Daniel Mendler', 'Andrew Stone', 'Fred Wu']
s.summary = 'Slim is a template language.'
s.description = 'Slim is a template language whose goal is reduce the syntax to the essential parts without becoming cryptic.'
s.homepage = 'http://github.com/slim-template/slim/'
s.license = 'MIT'
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = %w(lib)
s.required_ruby_version = '>= 2.5.0'
s.add_runtime_dependency('temple', ['~> 0.10.0'])
s.add_runtime_dependency('tilt', ['>= 2.1.0'])
end