forked from blindsey/git_pivotal_tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit_pivotal_tracker.gemspec
28 lines (23 loc) · 1.05 KB
/
git_pivotal_tracker.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 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'git_pivotal_tracker/version'
Gem::Specification.new do |s|
s.name = "git_pivotal_tracker"
s.version = GitPivotalTracker::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Ben Lindsey"]
s.email = ["ben@carbonfive.com"]
s.homepage = "https://github.com/blindsey/git_pivotal_tracker"
s.summary = "A git workflow integrated with Pivotal Tracker"
s.description = "provides a set of git workflow tools to start and finish Pivotal Tracker stories in topic branches"
s.required_rubygems_version = ">= 1.3.6"
s.add_development_dependency "rspec"
s.add_development_dependency "webmock"
s.add_runtime_dependency "grit"
s.add_runtime_dependency "pivotal-tracker"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ['lib']
end