-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgit_evolution.gemspec
27 lines (23 loc) · 1.07 KB
/
git_evolution.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'git_evolution/version'
Gem::Specification.new do |spec|
spec.name = 'git_evolution'
spec.version = GitEvolution::VERSION
spec.authors = ['Kevin Jalbert']
spec.email = ['[email protected]']
spec.summary = 'Gem that provides the ability to determine the evolution of code within a git repository'
spec.description = 'Gem that provides the ability to determine the evolution of code within a git repository'
spec.homepage = 'https://github.com/kevinjalbert/git_evolution'
spec.license = 'MIT'
spec.files = Dir['**/*']
spec.test_files = Dir['{test,spec,features}/**/*']
spec.executables = Dir['bin/*'].map { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_dependency 'bundler', '>= 2.0'
spec.add_dependency 'rake', '>= 13.0'
spec.add_dependency 'rugged', '>= 0.21.0'
spec.add_dependency 'chronic', '>= 0.10.0'
spec.required_ruby_version = '>= 2.5'
end