-
Notifications
You must be signed in to change notification settings - Fork 1
/
fgi.gemspec
27 lines (23 loc) · 1002 Bytes
/
fgi.gemspec
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
26
27
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = 'fgi'
spec.version = '1.1.7'
spec.authors = ['Julien Philibin', 'Matthieu Gourvénec']
spec.email = %w[[email protected] [email protected]]
spec.summary = 'Process and workflow simplifier for git projects.'
spec.description = 'Fast Git Issues.'
spec.homepage = 'https://www.modulotech.fr'
spec.files = Dir[
'Rakefile',
'{bin,lib,man,test,spec}/**/*',
'README*',
'LICENSE*'
] & `git ls-files -z`.split("\0")
spec.bindir = 'bin'
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_path = 'lib'
spec.add_development_dependency 'bundler', '~> 1.13'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3.0'
end