-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpug.gemspec
More file actions
25 lines (20 loc) · 828 Bytes
/
Copy pathpug.gemspec
File metadata and controls
25 lines (20 loc) · 828 Bytes
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
# coding: utf-8
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require "pugversion"
# building: gem build .\pug.gemspec
# gem install .\pug-1.gem
Gem::Specification.new do |spec|
spec.name = 'pug'
spec.version = Pug::VERSION
spec.licenses = []
spec.authors = ["2hdddg", "wallymathieu"]
spec.email = ["2hdddg@gmail.com"]
spec.homepage = "https://github.com/2hdddg/pug"
spec.summary = %q{Light-weight issue tracker}
spec.description = %q{Pug is a simple light-weight distributed issue tracker, main purpose is to automatically create release reports.}
spec.required_ruby_version = '>= 1.9.2'
spec.files = Dir.glob('lib/**/*.rb') + Dir.glob('bin\\*.rb')
spec.executables = ["pug", "pugdiff"]
spec.require_paths = ["lib"]
end