-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathop5util.gemspec
More file actions
27 lines (27 loc) · 1.14 KB
/
Copy pathop5util.gemspec
File metadata and controls
27 lines (27 loc) · 1.14 KB
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
# rubocop:disable UselessAssignment
require File.join([File.dirname(__FILE__), 'lib', 'op5util', 'version.rb'])
spec = Gem::Specification.new do |s|
s.name = 'op5util'
s.version = Op5util::VERSION
s.author = 'Niklas Paulsson'
s.email = 'niklasp@gmail.com'
s.platform = Gem::Platform::RUBY
s.licenses = ['MIT']
s.homepage = 'https://github.com/np422/Op5util'
s.summary = 'A utility to do common Op5 administration from the commandline'
s.files = %w[bin/op5util lib/op5util.rb LICENSE op5util.gemspec] +
%w[op5util.rdoc README.rdoc Readme.md] + Dir.glob('lib/op5util/*')
s.require_paths << 'lib'
s.has_rdoc = true
s.extra_rdoc_files = ['README.rdoc', 'op5util.rdoc']
s.rdoc_options << '--title' << 'op5util' << '--main' << 'README.rdoc'
s.bindir = 'bin'
s.executables << 'op5util'
s.add_development_dependency 'rake', '~> 13'
s.add_development_dependency 'rdoc', '~> 0'
s.add_development_dependency 'test-unit', '~> 0'
s.add_runtime_dependency('colorize', '0.8.1')
s.add_runtime_dependency('gli', '2.16.1')
s.add_runtime_dependency('httparty', '0.15.5')
s.add_runtime_dependency('terminal-table', '1.8.0')
end