forked from jdigger/git-process
-
Notifications
You must be signed in to change notification settings - Fork 0
/
git-sync.gemspec
20 lines (17 loc) · 982 Bytes
/
git-sync.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require File.expand_path('../lib/git-process/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Jim Moore"]
gem.email = %w([email protected])
gem.description = %q{Fetches the latest repository from the server, rebases/merges the current branch against the changes in the integration branch, then pushes the result up to a branch on the server of the same name. (Unless told not to.)}
gem.summary = %q{Gets the latest changes that have happened on the integration branch, then pushes your changes to a feature branch on the server.}
gem.homepage = "http://jdigger.github.com/git-process/"
gem.license = 'ASL2'
gem.add_dependency "git-process-lib", GitProc::Version::STRING
gem.files = %w(README.md LICENSE CHANGELOG.md bin/git-sync)
gem.files << 'man/git-sync.1'
gem.executables = ['git-sync']
gem.name = "git-sync"
gem.version = GitProc::Version::STRING
gem.platform = Gem::Platform::RUBY
gem.required_ruby_version = '>= 1.8.7'
end