forked from klauern/mantisrb
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmantisrb.gemspec
27 lines (23 loc) · 1.15 KB
/
mantisrb.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 -*-
$:.push File.expand_path("../lib", __FILE__)
require "mantisrb/version"
Gem::Specification.new do |s|
s.name = "mantisrb"
s.version = Mantis::VERSION
s.authors = ["Nick Klauer"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/klauern/mantisrb"
s.summary = %q{Mantis BT utility for working with Mantis through the Mantis Connect(http://www.futureware.biz/mantisconnect/) SOAP API. yeah, SOAP...not my call}
s.description = %q{This utility provides a Ruby interface for working with a remote Mantis (http://www.mantisbt.org) issue tracker through the Mantis Connect SOAP API.}
s.rubyforge_project = "mantisrb"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.license = "MIT"
s.add_runtime_dependency "nokogiri", ">= 1.6.0"
s.add_runtime_dependency "bundler"
s.add_runtime_dependency "builder", ">= 2.1.2"
s.add_runtime_dependency "savon", "~> 2.0"
s.add_runtime_dependency "log4r"
end