forked from Marketcircle/jiraSOAP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjiraSOAP.gemspec
32 lines (27 loc) · 1.16 KB
/
jiraSOAP.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
32
$LOAD_PATH.unshift File.join( File.dirname(__FILE__), 'lib')
require 'jiraSOAP/version'
Gem::Specification.new do |s|
s.name = 'jiraSOAP'
s.version = JIRA::VERSION
s.summary = 'A Ruby client for the JIRA SOAP API'
s.description = 'Written to run fast and work on Ruby 1.9 as well as MacRuby'
s.authors = ['Mark Rada']
s.email = ['[email protected]']
s.homepage = 'http://github.com/Marketcircle/jiraSOAP'
s.license = 'MIT'
s.files = Dir.glob('lib/**/*.rb') + ['.yardopts', 'Rakefile']
s.test_files = Dir.glob('test/**/*')
s.extra_rdoc_files = [
'README.markdown',
'ChangeLog',
'LICENSE.txt',
'docs/GettingStarted.markdown',
'docs/Examples.markdown'
]
s.add_runtime_dependency 'nokogiri', '~> 1.5'
s.add_runtime_dependency 'handsoap', '~> 1.2'
# s.add_runtime_dependency 'httpclient', '~> 2.2.1'
s.add_development_dependency 'yard', '~> 0.7.2'
s.add_development_dependency 'redcarpet', '~> 1.17'
s.add_development_dependency 'minitest', '>= 2.5'
end