-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpivotal_cli.gemspec
More file actions
22 lines (22 loc) · 900 Bytes
/
pivotal_cli.gemspec
File metadata and controls
22 lines (22 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Ensure we require the local version and not one we might have installed already
require File.join([File.dirname(__FILE__),'lib','pivotal_cli','version.rb'])
spec = Gem::Specification.new do |s|
s.name = 'pivotal-cli'
s.version = PivotalCli::VERSION
s.author = 'Omar Skalli'
s.email = 'chetane@gmail.com'
s.platform = Gem::Platform::RUBY
s.summary = 'Simple command line tool for working with Pivotal Stories'
s.homepage = 'https://github.com/chetane/pivotal-cli'
s.license = 'MIT'
s.files = `git ls-files`.split($/)
s.require_paths << 'lib'
s.bindir = 'bin'
s.executables << 'pivotal'
s.add_runtime_dependency('gli','2.11.0')
s.add_runtime_dependency('rainbow', '2.0.0')
s.add_runtime_dependency('launchy', '2.4.2')
s.add_runtime_dependency('highline','1.6.21')
s.add_runtime_dependency('pivotal-tracker', '0.5.12')
s.add_runtime_dependency('git', '1.2.8')
end