-
-
Notifications
You must be signed in to change notification settings - Fork 501
/
slim.gemspec
33 lines (28 loc) · 1.46 KB
/
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
25
26
27
28
29
30
31
32
33
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 = 'https://slim-template.github.io/'
s.license = 'MIT'
s.metadata = {
"bug_tracker_uri" => "https://github.com/slim-template/slim/issues",
"changelog_uri" => "https://github.com/slim-template/slim/blob/main/CHANGES",
"documentation_uri" => "https://rubydoc.info/gems/slim/frames",
"homepage_uri" => "https://slim-template.github.io/",
"source_code_uri" => "https://github.com/slim-template/slim",
"wiki_uri" => "https://github.com/slim-template/slim/wiki",
"funding_uri" => "https://github.com/sponsors/slim-template"
}
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