-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathxtpl.gemspec
More file actions
21 lines (15 loc) · 907 Bytes
/
xtpl.gemspec
File metadata and controls
21 lines (15 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Gem::Specification.new do |s|
s.name = 'xtpl'
s.summary = 'xtpl is a templating mechnism in the spirit of unix. It was developed to help with document preparation, but could also be used in other circumstances, where text needs to be enriched with output from other utilities.
xtpl takes a template text and substitutes special expressions with the output from external tools. It also allows to filter parts of the document through an external filter.'
s.description = 'xtpl is a templating mechnism in the spirit of unix'
s.version = '0.1'
s.platform = Gem::Platform::RUBY
s.files = ['bin/xtpl']
s.bindir = 'bin'
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.author = 'Felix Leipold'
s.email = ''
s.homepage = 'https://github.com/fleipold/xtpl'
end