ruby-bugzilla 0.1 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +1 -0
- data/lib/bugzilla.rb +1 -1
- metadata +17 -2
data/Rakefile
CHANGED
|
@@ -13,6 +13,7 @@ begin
|
|
|
13
13
|
gem.authors = ["Akira TAGOH"]
|
|
14
14
|
#gem.rubyforge_project = "ruby-bugzilla"
|
|
15
15
|
gem.add_development_dependency "rspec", ">= 1.2.9"
|
|
16
|
+
gem.add_development_dependency "gruff"
|
|
16
17
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
|
17
18
|
gem.version = Bugzilla::VERSION
|
|
18
19
|
gem.files = FileList['bin/*', 'lib/**/*.rb', '[A-Z]*', 'test/**/*'].to_a.reject{|x| x =~ /~\Z|#\Z|swp\Z/}
|
data/lib/bugzilla.rb
CHANGED
metadata
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-bugzilla
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.1.1
|
|
10
11
|
platform: ruby
|
|
11
12
|
authors:
|
|
12
13
|
- Akira TAGOH
|
|
@@ -33,6 +34,20 @@ dependencies:
|
|
|
33
34
|
version: 1.2.9
|
|
34
35
|
type: :development
|
|
35
36
|
version_requirements: *id001
|
|
37
|
+
- !ruby/object:Gem::Dependency
|
|
38
|
+
name: gruff
|
|
39
|
+
prerelease: false
|
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
42
|
+
requirements:
|
|
43
|
+
- - ">="
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
hash: 3
|
|
46
|
+
segments:
|
|
47
|
+
- 0
|
|
48
|
+
version: "0"
|
|
49
|
+
type: :development
|
|
50
|
+
version_requirements: *id002
|
|
36
51
|
description: This aims to provide similar features to access to Bugzilla through WebService APIs in Ruby.
|
|
37
52
|
email: akira@tagoh.org
|
|
38
53
|
executables:
|