forked from jdigger/git-process
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit-process.gemspec
More file actions
27 lines (24 loc) · 1.25 KB
/
git-process.gemspec
File metadata and controls
27 lines (24 loc) · 1.25 KB
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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/git-process/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Jim Moore"]
gem.email = ["moore.jim@gmail.com"]
gem.description = %q{A set of scripts to make working with git easier and more consistent}
gem.summary = %q{A set of scripts for a good git process}
gem.homepage = "http://jdigger.github.com/git-process/"
gem.license = 'ASL2'
gem.add_dependency "octokit", "~> 1.4.0" # GitHub API
gem.add_dependency "json", "~> 1.7.3"
gem.add_dependency "trollop", "~> 1.16.2" # CLI options parser
gem.add_dependency "highline", "~> 1.6.12" # user CLI interaction
gem.add_dependency "termios", "~> 0.9.4" # used by highline to make things a little nicer
gem.add_dependency "system_timer", "~> 1.2.4" # Needed by faraday via octokit
gem.files = `git ls-files`.split($\).delete_if{|f| f =~ /^\./}
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "git-process"
gem.require_paths = ["lib"]
gem.version = GitProc::Version::STRING
gem.platform = Gem::Platform::RUBY
gem.required_ruby_version = '>= 1.8.7'
end