-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtilt.gemspec
28 lines (22 loc) · 954 Bytes
/
tilt.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
require './lib/tilt'
Gem::Specification.new do |s|
s.name = 'tilt'
s.version = Tilt::VERSION
s.description = "Generic interface to multiple Ruby template engines"
s.summary = s.description
s.license = "MIT"
s.authors = ["Ryan Tomayko", "Magnus Holm", "Jeremy Evans"]
s.email = "code@jeremyevans.net"
s.files = %w'COPYING bin/tilt' + Dir["lib/**/*.rb"]
s.executables = ['tilt']
s.homepage = "https://github.com/jeremyevans/tilt"
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Tilt", "--main", "Tilt"]
s.require_paths = %w[lib]
s.required_ruby_version = ">= 2.0"
s.metadata = {
'bug_tracker_uri' => 'https://github.com/jeremyevans/tilt/issues',
'changelog_uri' => 'https://github.com/jeremyevans/tilt/blob/master/CHANGELOG.md',
'mailing_list_uri' => 'https://github.com/jeremyevans/tilt/discussions',
'source_code_uri' => 'https://github.com/jeremyevans/tilt',
}
end