-
Notifications
You must be signed in to change notification settings - Fork 10
/
ruby-bugzilla.gemspec
32 lines (26 loc) · 1.1 KB
/
ruby-bugzilla.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('lib/', File.dirname(__FILE__))
$:.unshift lib unless $:.include?(lib)
require 'bugzilla/version'
Gem::Specification.new do |s|
s.name = "ruby-bugzilla"
s.version = Bugzilla::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Akira TAGOH"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/tagoh/ruby-bugzilla"
s.summary = %Q{Ruby binding for Bugzilla WebService APIs}
s.description = %Q{This aims to provide similar features to access to Bugzilla through WebService APIs in Ruby.}
s.required_rubygems_version = ">= 1.3.6"
s.add_development_dependency "rspec", "~> 2.0"
s.add_runtime_dependency "gruff"
s.add_runtime_dependency "highline"
# sems like gruff is missing this one
s.add_runtime_dependency "rmagick"
s.add_development_dependency("bundler", [">= 1.0"])
bindir = 'bin'
s.executables = Dir.glob('bin/*').reject {|x| x =~ /~\Z/}.map {|x| File.basename x}
s.default_executable = 'bzconsole'
s.files = Dir.glob("lib/**/*") + %w(README.rdoc COPYING)
s.require_path = 'lib'
end