-
Notifications
You must be signed in to change notification settings - Fork 3
/
git_statistics.gemspec
25 lines (22 loc) · 1.02 KB
/
git_statistics.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
# -*- encoding: utf-8 -*-
$:.unshift File.expand_path('../lib', __FILE__)
require 'git_statistics/version'
Gem::Specification.new do |gem|
gem.homepage = 'https://github.com/kevinjalbert/git_statistics'
gem.authors = ['Kevin Jalbert']
gem.email = ['[email protected]']
gem.name = 'git_statistics'
gem.version = GitStatistics::VERSION
gem.summary = 'Gem that provides the ability to gather detailed git statistics'
gem.description = 'git_statistics is a gem that provides detailed git statistics'
gem.require_paths = ['lib']
gem.files = Dir['lib/**/*']
gem.test_files = Dir['spec/**/*_spec.rb']
gem.executables = %w(git_statistics git-statistics)
gem.required_ruby_version = '>= 1.9.3'
gem.add_development_dependency 'bundler', '>= 1.6.0'
gem.add_development_dependency 'rake', '~> 10.0'
gem.add_runtime_dependency 'json', '~> 1.8.3'
gem.add_runtime_dependency 'rugged', '~> 0.23.3'
gem.add_runtime_dependency 'language_sniffer', '~> 1.0.2'
end