forked from arifb/pivotal-epic-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpivotal-epic-tracker.gemspec
24 lines (21 loc) · 1.03 KB
/
pivotal-epic-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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "pivotal-epic-tracker/version"
Gem::Specification.new do |s|
s.name = "pivotal-epic-tracker"
s.version = PivotalEpicTracker::VERSION
s.authors = ["Arif Bandali"]
s.email = ["[email protected]"]
s.homepage = ""
s.summary = %q{A tool used to give high-level visibility into features that are being built, and where in the dev cycle they are. Utilizes the pivotal-tracker gem.}
s.description = %q{An epic is one of the following states:
1. Specced: if there is a needs-design label on associated ticket.
2. Designed: if there is a ready-to-code label on associated ticket.
3. Tested: if all tickets are accepted.}
s.rubyforge_project = "pivotal-epic-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"]
s.add_dependency "pivotal-tracker"
end