forked from raul/pt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pt.gemspec
22 lines (21 loc) · 926 Bytes
/
pt.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'pt'
Gem::Specification.new do |s|
s.name = "pt"
s.version = PT::VERSION
s.authors = ["Raul Murciano"]
s.email = ["raul@murciano.net"]
s.homepage = "http://github.com/raul/pt"
s.summary = "Client to use Pivotal Tracker from the console."
s.description = "Minimalist, opinionated client to manage your Pivotal Tracker tasks from the command line."
s.executables = ["pt"]
s.files = Dir["{lib}/**/*", "[A-Z]*", "init.rb"] - ["Gemfile.lock"]
s.require_path = 'lib'
s.add_dependency 'pivotal-tracker', '>= 0.3.1'
s.add_dependency 'hirb', '>= 0.4.5'
s.add_dependency 'colored', '>= 1.2'
s.add_dependency 'highline', '>= 1.6.1'
s.rubyforge_project = "pt"
s.platform = Gem::Platform::RUBY
end