forked from jdigger/git-process
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit-process-lib.gemspec
More file actions
29 lines (25 loc) · 1.18 KB
/
git-process-lib.gemspec
File metadata and controls
29 lines (25 loc) · 1.18 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
28
29
require File.expand_path('../lib/git-process/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Jim Moore"]
gem.email = %w(moore.jim@gmail.com)
gem.description = %q{The libraries for the git-process suite of tools}
gem.summary = %q{The libraries for the git-process suite of tools}
gem.homepage = "http://jdigger.github.com/git-process/"
gem.license = 'ASL2'
gem.add_dependency "octokit", "~> 1.24.0" # GitHub API
gem.add_dependency "json", "~> 1.8"
gem.add_dependency "multi_json", "~> 1.8"
gem.add_dependency "trollop", "~> 1.16" # CLI options parser
gem.add_dependency "highline", "1.6.13" # user CLI interaction. There is a bug in 1.6.14
gem.add_dependency "addressable", "~> 2.3" # URI processing
gem.add_dependency "gem-man", "~> 0.3" # man page support for Gems
# lock down external dependency
gem.add_dependency "faraday", "0.8.9"
gem.files = `git ls-files`.split($\).delete_if { |f| f =~ /^\./ }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "git-process-lib"
gem.require_paths = %w(lib)
gem.version = GitProc::Version::STRING
gem.platform = Gem::Platform::RUBY
gem.required_ruby_version = '>= 1.8.7'
end