-
Notifications
You must be signed in to change notification settings - Fork 2
/
hs.gemspec
31 lines (25 loc) · 1013 Bytes
/
hs.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
29
30
31
# Ensure we require the local version and not one we might have installed already
require File.join([File.dirname(__FILE__),'lib','hs','version.rb'])
spec = Gem::Specification.new do |s|
s.name = 'hs'
s.version = HS::VERSION
s.authors = ['Zach Allaun']
s.email = ['[email protected]']
s.homepage = 'https://github.com/hackerschool/hs-cli'
s.platform = Gem::Platform::RUBY
s.summary = 'Hacker School command line tool'
s.add_development_dependency('rake')
s.add_development_dependency('rspec')
s.add_development_dependency('webmock')
s.add_development_dependency('vcr')
s.add_development_dependency('pry')
s.add_runtime_dependency('gli', '~> 2.5.3')
s.add_runtime_dependency('netrc', '~> 0.7.7')
s.add_runtime_dependency('git', '~> 1.2.5')
s.add_runtime_dependency('octokit', '~> 1.22.0')
s.require_paths = ['lib']
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.bindir = 'bin'
s.executables = 'hs'
end