forked from slim-template/slim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
slim.gemspec
24 lines (20 loc) · 998 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
24
# -*- encoding: utf-8 -*-
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.email = ['mail@daniel-mendler.de', 'andy@stonean.com', 'ifredwu@gmail.com']
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://slim-lang.com/'
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.0.0'
s.add_runtime_dependency('temple', ['>= 0.7.6', '< 0.9'])
s.add_runtime_dependency('tilt', ['>= 1.3.3', '< 2.1'])
end