diff options
author | Paul Duncan <pabs@pablotron.org> | 2018-09-05 00:53:51 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2018-09-05 00:53:51 -0400 |
commit | 7fd6c6611252dbe1aae0ae61afab78f936b47c1f (patch) | |
tree | f4643a9b1465b329e0c7c570fcca19fe35b1de7a /ruby/luigi-template.gemspec | |
parent | 4f92438ba4cbc04016e2b06996bb7d7e99e01952 (diff) | |
download | luigi-template-7fd6c6611252dbe1aae0ae61afab78f936b47c1f.tar.bz2 luigi-template-7fd6c6611252dbe1aae0ae61afab78f936b47c1f.zip |
ruby: add gemspec, add Template::run
Diffstat (limited to 'ruby/luigi-template.gemspec')
-rw-r--r-- | ruby/luigi-template.gemspec | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ruby/luigi-template.gemspec b/ruby/luigi-template.gemspec new file mode 100644 index 0000000..87ab75e --- /dev/null +++ b/ruby/luigi-template.gemspec @@ -0,0 +1,14 @@ +require_relative './lib/luigi-template.rb' + +Gem::Specification.new do |s| + s.name = 'luigi-template' + s.version = Luigi::VERSION + s.date = '2018-09-05' + s.summary = 'Simple string templating library.' + s.description = 'Simple string templating library.' + s.authors = ['Paul Duncan'] + s.email = 'pabs@pablotron.org' + s.files = ["lib/luigi-template.rb"] + s.homepage = 'https://github.com/pablotron/luigi-template' + s.license = 'MIT' +end |