-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathslight.gemspec
21 lines (20 loc) · 948 Bytes
/
slight.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8
$:.unshift File.expand_path('../lib', __FILE__)
require 'slight'
Gem::Specification.new do |gem|
gem.authors = ["oliver.yu"]
gem.email = ["[email protected]"]
gem.description = %q{A light and sweet template language}
gem.summary = %q{The goal of this is to use pure ruby syntax to write template.}
gem.homepage = "https://github.com/OliversCat/Slight"
gem.files = `git ls-files`.split($\)
#gem.files = dir('.')
#gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) unless f.end_with? ".rb" }
gem.executables = ["slsh","slight"]
#gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.test_files = ["spec"]
gem.name = "slight-lang"
gem.require_paths = ["lib"]
gem.version = Slight::VERSION
gem.license = "MIT"
end