|
1 | 1 | # -*- encoding: utf-8 -*- |
2 | | -$:.unshift File.expand_path("../lib", __FILE__) |
| 2 | +$:.unshift File.expand_path('../lib', __FILE__) |
3 | 3 | require 'git_statistics/version' |
4 | 4 |
|
5 | 5 | Gem::Specification.new do |gem| |
6 | 6 | gem.homepage = 'https://github.com/kevinjalbert/git_statistics' |
7 | | - gem.authors = ["Kevin Jalbert"] |
8 | | - gem.email = ["kevin.j.jalbert@gmail.com"] |
| 7 | + gem.authors = ['Kevin Jalbert'] |
| 8 | + gem.email = ['kevin.j.jalbert@gmail.com'] |
9 | 9 | gem.name = 'git_statistics' |
10 | 10 | gem.version = GitStatistics::VERSION |
11 | | - gem.summary = "Gem that provides the ability to gather detailed git statistics" |
12 | | - gem.description = "git_statistics is a gem that provides detailed git statistics" |
13 | | - gem.require_paths = ["lib"] |
| 11 | + gem.summary = 'Gem that provides the ability to gather detailed git statistics' |
| 12 | + gem.description = 'git_statistics is a gem that provides detailed git statistics' |
| 13 | + gem.require_paths = ['lib'] |
14 | 14 | gem.files = Dir['lib/**/*'] |
15 | 15 | gem.test_files = Dir['spec/**/*_spec.rb'] |
16 | | - gem.executables = %w[ git_statistics git-statistics ] |
| 16 | + gem.executables = %w(git_statistics git-statistics) |
17 | 17 | gem.required_ruby_version = '>= 1.9.3' |
| 18 | + |
| 19 | + gem.add_development_dependency 'bundler', '>= 1.6.0' |
| 20 | + gem.add_development_dependency 'rake', '~> 10.0' |
| 21 | + |
| 22 | + gem.add_runtime_dependency 'json', '~> 1.8.3' |
| 23 | + gem.add_runtime_dependency 'rugged', '~> 0.23.3' |
| 24 | + gem.add_runtime_dependency 'language_sniffer', '~> 1.0.2' |
18 | 25 | end |
0 commit comments