-
Notifications
You must be signed in to change notification settings - Fork 3
/
hellgrid.gemspec
25 lines (21 loc) · 1.04 KB
/
hellgrid.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
project_root = File.dirname(__FILE__)
lib = File.join(project_root, 'lib')
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'hellgrid/version'
Gem::Specification.new do |s|
s.name = 'hellgrid'
s.version = Hellgrid::VERSION
s.summary = 'Gem version dependency matrix'
s.description = 'Display gem versions used across your projects in a table'
s.authors = ['Deyan Dobrinov', 'Aleksandar Ivanov']
s.email = ['engineering+hellgrid@fundingcircle.com']
s.files = Dir.chdir(project_root) { Dir['lib/**/*.rb'] + Dir['bin/*'] + Dir['exe/*'] + Dir['spec/**/*.rb'] + %w(Gemfile Gemfile.lock README.md hellgrid.gemspec) }
s.bindir = 'exe'
s.executables = s.files.grep(/^exe\//) { |f| File.basename(f) }
s.test_files = s.files.grep(/^spec\//)
s.require_paths = ['lib']
s.homepage = 'https://github.com/FundingCircle/hellgrid'
s.license = 'BSD-3-Clause'
s.add_runtime_dependency 'bundler', '>= 1.11.0', '< 3'
s.add_development_dependency 'rspec', '~> 3.8.0'
end