Sha256: 235f1688f216fef95847ae51019128b1bd636f16ae50c98324bf24c45dacd26e

Contents?: true

Size: 1.23 KB

Versions: 3

Compression:

Stored size: 1.23 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ruby_bugzilla/version'

Gem::Specification.new do |spec|
  authors_hash = {
    "Joe VLcek"  => "jvlcek@redhat.com",
    "Jason Frey" => "jfrey@redhat.com",
  }

  spec.name          = "ruby_bugzilla"
  spec.version       = RubyBugzilla::VERSION
  spec.authors       = authors_hash.keys
  spec.email         = authors_hash.values
  spec.description   = %q{RubyBugzilla is a Ruby wrapper around the python-bugzilla CLI for easy access to the Bugzilla API.}
  spec.summary       = %q{RubyBugzilla is a Ruby wrapper around the python-bugzilla CLI for easy access to the Bugzilla API.}
  spec.homepage      = "http://github.com/ManageIQ/ruby_bugzilla"
  spec.license       = "MIT"

  spec.files         = `git ls-files`.split($/)
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.3"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "rspec"
  spec.add_development_dependency "coveralls"

  spec.add_dependency "linux_admin", "~> 0.5.7"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ruby_bugzilla-0.5.2 ruby_bugzilla.gemspec
ruby_bugzilla-0.5.1 ruby_bugzilla.gemspec
ruby_bugzilla-0.4.2 ruby_bugzilla.gemspec