aboutsummaryrefslogtreecommitdiff
path: root/ruby/luigi-template.gemspec
blob: 0bc63e55419a08e768a0bbee16d99b9b11e23cd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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.homepage    = 'https://github.com/pablotron/luigi-template'
  s.license     = 'MIT'
  s.files       = %w{
    README.mkd
    Rakefile
    test/test_template.rb
    lib/luigi-template.rb
  }
end