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
22 lines (19 loc) · 879 Bytes
/
git-process.gemspec
File metadata and controls
22 lines (19 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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{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 "git-sync", GitProc::Version::STRING
gem.add_dependency "git-new-fb", GitProc::Version::STRING
gem.add_dependency "git-to-master", GitProc::Version::STRING
gem.add_dependency "git-pull-req", GitProc::Version::STRING
gem.files = %w(README.md LICENSE CHANGELOG.md)
gem.files << 'man/git-process.1'
gem.name = "git-process"
gem.version = GitProc::Version::STRING
gem.platform = Gem::Platform::RUBY
gem.required_ruby_version = '>= 1.8.7'
end