ruby_bugzilla 0.5.2 → 0.5.3
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +1 -56
- data/lib/ruby_bugzilla.rb +2 -0
- data/lib/ruby_bugzilla/version.rb +1 -1
- data/ruby_bugzilla.gemspec +9 -3
- metadata +12 -15
data/README.md
CHANGED
@@ -1,58 +1,3 @@
|
|
1
1
|
# RubyBugzilla
|
2
2
|
|
3
|
-
[
|
4
|
-
[![Build Status](https://travis-ci.org/ManageIQ/ruby_bugzilla.png)](https://travis-ci.org/ManageIQ/ruby_bugzilla)
|
5
|
-
[![Code Climate](https://codeclimate.com/github/ManageIQ/ruby_bugzilla.png)](https://codeclimate.com/github/ManageIQ/ruby_bugzilla)
|
6
|
-
[![Coverage Status](https://coveralls.io/repos/ManageIQ/ruby_bugzilla/badge.png?branch=master)](https://coveralls.io/r/ManageIQ/ruby_bugzilla)
|
7
|
-
[![Dependency Status](https://gemnasium.com/ManageIQ/ruby_bugzilla.png)](https://gemnasium.com/ManageIQ/ruby_bugzilla)
|
8
|
-
|
9
|
-
A Ruby wrapper around the python-bugzilla CLI for easy access to the Bugzilla API
|
10
|
-
|
11
|
-
## Prerequisites
|
12
|
-
|
13
|
-
python-bugzilla must be installed.
|
14
|
-
|
15
|
-
* For Fedora/RHEL
|
16
|
-
* sudo yum install python-bugzilla
|
17
|
-
* For Mac
|
18
|
-
* Download python-bugzilla from https://fedorahosted.org/python-bugzilla/
|
19
|
-
* Untar the file
|
20
|
-
* Run sudo setup.py install
|
21
|
-
|
22
|
-
python-bugzilla uses pycurl and expects it to be installed.
|
23
|
-
|
24
|
-
* For Mac
|
25
|
-
* Download pycurl from http://pycurl.sourceforge.net/download/
|
26
|
-
* Untar the file
|
27
|
-
* Run sudo setup.py install
|
28
|
-
|
29
|
-
## Installation
|
30
|
-
|
31
|
-
Add this line to your application's Gemfile:
|
32
|
-
|
33
|
-
gem 'ruby_bugzilla'
|
34
|
-
|
35
|
-
And then execute:
|
36
|
-
|
37
|
-
$ bundle
|
38
|
-
|
39
|
-
Or install it yourself as:
|
40
|
-
|
41
|
-
$ gem install ruby_bugzilla
|
42
|
-
|
43
|
-
## Example Usage
|
44
|
-
|
45
|
-
```ruby
|
46
|
-
bz = RubyBugzilla.new("http://uri.to/bugzilla", "username", "password")
|
47
|
-
bz.login
|
48
|
-
output = bz.query(:bug_status => "NEW")
|
49
|
-
bz.modify([928134, 932439], :status => "RELEASE_PENDING", :comment => "Looks good")
|
50
|
-
```
|
51
|
-
|
52
|
-
## Contributing
|
53
|
-
|
54
|
-
1. Fork it
|
55
|
-
2. Create your feature branch (`git checkout -b my-new-feature`)
|
56
|
-
3. Commit your changes (`git commit -am 'Add some feature'`)
|
57
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
58
|
-
5. Create new Pull Request
|
3
|
+
The RubyBugzilla gem has been renamed to [ActiveBugzilla](https://github.com/ManageIQ/active_bugzilla) and will no longer be supported.
|
data/lib/ruby_bugzilla.rb
CHANGED
data/ruby_bugzilla.gemspec
CHANGED
@@ -13,9 +13,9 @@ Gem::Specification.new do |spec|
|
|
13
13
|
spec.version = RubyBugzilla::VERSION
|
14
14
|
spec.authors = authors_hash.keys
|
15
15
|
spec.email = authors_hash.values
|
16
|
-
spec.description = %q{RubyBugzilla
|
17
|
-
spec.summary = %q{RubyBugzilla
|
18
|
-
spec.homepage = "http://github.com/ManageIQ/
|
16
|
+
spec.description = %q{The RubyBugzilla gem has been renamed to ActiveBugzilla and will no longer be supported. See https://rubygems.org/gems/active_bugzilla}
|
17
|
+
spec.summary = %q{The RubyBugzilla gem has been renamed to ActiveBugzilla and will no longer be supported. See https://rubygems.org/gems/active_bugzilla}
|
18
|
+
spec.homepage = "http://github.com/ManageIQ/active_bugzilla"
|
19
19
|
spec.license = "MIT"
|
20
20
|
|
21
21
|
spec.files = `git ls-files`.split($/)
|
@@ -29,4 +29,10 @@ Gem::Specification.new do |spec|
|
|
29
29
|
spec.add_development_dependency "coveralls"
|
30
30
|
|
31
31
|
spec.add_dependency "linux_admin", "~> 0.5.7"
|
32
|
+
|
33
|
+
spec.post_install_message = <<-MESSAGE
|
34
|
+
! The RubyBugzilla gem has been renamed to ActiveBugzilla and will no longer be supported.
|
35
|
+
! See: https://rubygems.org/gems/active_bugzilla
|
36
|
+
! And: https://github.com/ManageIQ/active_bugzilla
|
37
|
+
MESSAGE
|
32
38
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby_bugzilla
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2014-
|
13
|
+
date: 2014-08-26 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: bundler
|
@@ -92,8 +92,8 @@ dependencies:
|
|
92
92
|
- - ~>
|
93
93
|
- !ruby/object:Gem::Version
|
94
94
|
version: 0.5.7
|
95
|
-
description: RubyBugzilla
|
96
|
-
|
95
|
+
description: The RubyBugzilla gem has been renamed to ActiveBugzilla and will no longer
|
96
|
+
be supported. See https://rubygems.org/gems/active_bugzilla
|
97
97
|
email:
|
98
98
|
- jvlcek@redhat.com
|
99
99
|
- jfrey@redhat.com
|
@@ -113,10 +113,12 @@ files:
|
|
113
113
|
- ruby_bugzilla.gemspec
|
114
114
|
- spec/ruby_bugzilla_spec.rb
|
115
115
|
- spec/spec_helper.rb
|
116
|
-
homepage: http://github.com/ManageIQ/
|
116
|
+
homepage: http://github.com/ManageIQ/active_bugzilla
|
117
117
|
licenses:
|
118
118
|
- MIT
|
119
|
-
post_install_message:
|
119
|
+
post_install_message: ! " ! The RubyBugzilla gem has been renamed to ActiveBugzilla
|
120
|
+
and will no longer be supported.\n ! See: https://rubygems.org/gems/active_bugzilla\n
|
121
|
+
\ ! And: https://github.com/ManageIQ/active_bugzilla\n"
|
120
122
|
rdoc_options: []
|
121
123
|
require_paths:
|
122
124
|
- lib
|
@@ -126,25 +128,20 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
126
128
|
- - ! '>='
|
127
129
|
- !ruby/object:Gem::Version
|
128
130
|
version: '0'
|
129
|
-
segments:
|
130
|
-
- 0
|
131
|
-
hash: 1898081452312934278
|
132
131
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
133
132
|
none: false
|
134
133
|
requirements:
|
135
134
|
- - ! '>='
|
136
135
|
- !ruby/object:Gem::Version
|
137
136
|
version: '0'
|
138
|
-
segments:
|
139
|
-
- 0
|
140
|
-
hash: 1898081452312934278
|
141
137
|
requirements: []
|
142
138
|
rubyforge_project:
|
143
|
-
rubygems_version: 1.8.
|
139
|
+
rubygems_version: 1.8.23.2
|
144
140
|
signing_key:
|
145
141
|
specification_version: 3
|
146
|
-
summary: RubyBugzilla
|
147
|
-
|
142
|
+
summary: The RubyBugzilla gem has been renamed to ActiveBugzilla and will no longer
|
143
|
+
be supported. See https://rubygems.org/gems/active_bugzilla
|
148
144
|
test_files:
|
149
145
|
- spec/ruby_bugzilla_spec.rb
|
150
146
|
- spec/spec_helper.rb
|
147
|
+
has_rdoc:
|