mirror of
https://github.com/tomgi/git_stats.git
synced 2024-10-31 17:41:01 +01:00
30 lines
1.0 KiB
Ruby
30 lines
1.0 KiB
Ruby
# -*- encoding: utf-8 -*-
|
|
lib = File.expand_path('../lib', __FILE__)
|
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
require 'git_stats/version'
|
|
|
|
Gem::Specification.new do |gem|
|
|
gem.name = "git_stats"
|
|
gem.version = GitStats::VERSION
|
|
gem.authors = ["Tomasz Gieniusz"]
|
|
gem.email = ["tomasz.gieniusz@gmail.com"]
|
|
gem.description = %q{Git history statistics generator}
|
|
gem.summary = %q{HTML statistics generator from git repository}
|
|
gem.homepage = "https://github.com/tomgi/git_stats"
|
|
|
|
gem.files = `git ls-files`.split($/)
|
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
gem.require_paths = ["lib"]
|
|
|
|
gem.add_dependency('activesupport')
|
|
gem.add_dependency('actionpack')
|
|
gem.add_dependency('tilt')
|
|
gem.add_dependency('haml')
|
|
gem.add_dependency('launchy')
|
|
gem.add_dependency('lazy_high_charts')
|
|
|
|
gem.add_development_dependency('rake')
|
|
gem.add_development_dependency('pry')
|
|
end
|