forked from ka1han/nexpose_ticketing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnexpose_ticketing.gemspec
27 lines (26 loc) · 1.35 KB
/
nexpose_ticketing.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
# encoding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'nexpose_ticketing/version'
Gem::Specification.new do |s|
s.name = 'nexpose_ticketing'
s.version = NexposeTicketing::VERSION
s.homepage = 'https://github.com/rapid7/nexpose_ticketing'
s.summary = 'Ruby Nexpose Ticketing Engine.'
s.description = 'This gem provides a Ruby implementation of different integrations with ticketing services for Nexpose.'
s.license = 'BSD'
s.authors = ['Damian Finol'], ['JJ Cassidy'], ['David Valente'], ['Adam Robinson']
s.email = ['[email protected]']
s.files = Dir['[A-Z]*'] + Dir['lib/**/*'] + Dir['tests/**']
s.files.reject! { |fn| fn.include? ".gem" }
s.require_paths = ['lib']
s.extra_rdoc_files = ['README.md']
s.required_ruby_version = '>= 2.1.5'
s.platform = 'ruby'
s.executables = ['nexpose_ticketing']
s.add_runtime_dependency 'nexpose', '~> 3.1', '>= 3.1.0'
s.add_runtime_dependency 'savon', '~> 2.1'
s.add_runtime_dependency 'nokogiri', '~> 1.6'
s.add_development_dependency 'rspec', '~> 3.2', '>= 3.2.0'
s.add_development_dependency 'rspec-mocks', '~> 3.2', '>= 3.2.0'
end