forked from webmat/git_remote_branch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit_remote_branch.gemspec
28 lines (25 loc) · 1.19 KB
/
git_remote_branch.gemspec
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'version'
Gem::Specification.new do |s|
s.name = GitRemoteBranch::NAME
s.version = GitRemoteBranch::VERSION::STRING
s.license = 'MIT'
s.platform = Gem::Platform::RUBY
s.authors = ["Mathieu Martin", "Carl Mercier"]
s.email = "[email protected]"
s.homepage = "http://github.com/webmat/git_remote_branch"
s.summary = %Q{git_remote_branch eases the interaction with remote branches}
s.description = %Q{git_remote_branch is a learning tool to ease the interaction with remote branches in simple situations.}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- test/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency "rake", "~> 10.0.3"
s.add_development_dependency "rdoc", "~> 3.12.1"
s.add_development_dependency 'test-unit', "~> 2.5.4"
s.add_development_dependency 'shoulda', "~> 3.3.2"
s.add_development_dependency 'mocha', "~> 0.10.5"
s.add_development_dependency 'pry', "~> 0.9.12"
s.add_development_dependency 'pry-nav', "~> 0.2.3"
end