mort666-jira4r 1.0.2
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/LICENSE +14 -0
- data/NOTICE +3 -0
- data/README.rdoc +11 -0
- data/Rakefile +57 -0
- data/VERSION.yml +4 -0
- data/examples/addComment.rb +18 -0
- data/examples/getGroup-https.rb +17 -0
- data/examples/getGroup.rb +18 -0
- data/examples/getNotificationScheme.rb +14 -0
- data/examples/getProject.rb +14 -0
- data/examples/getProjects.rb +16 -0
- data/examples/subtract-members +54 -0
- data/lib/jira4r.rb +27 -0
- data/lib/jira4r/jira4r.rb +1 -0
- data/lib/jira4r/jira_tool.rb +213 -0
- data/lib/jira4r/v2/JiraSoapServiceDriver.rb +981 -0
- data/lib/jira4r/v2/jiraService.rb +817 -0
- data/lib/jira4r/v2/jiraServiceMappingRegistry.rb +976 -0
- data/lib/jiraService.rb +21 -0
- data/lib/jiraServiceMappingRegistry.rb +21 -0
- metadata +89 -0
data/lib/jiraService.rb
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
################################################################################
|
2
|
+
# Copyright 2007 Codehaus Foundation #
|
3
|
+
# #
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
5
|
+
# you may not use this file except in compliance with the License. #
|
6
|
+
# You may obtain a copy of the License at #
|
7
|
+
# #
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0 #
|
9
|
+
# #
|
10
|
+
# Unless required by applicable law or agreed to in writing, software #
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS, #
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
|
13
|
+
# See the License for the specific language governing permissions and #
|
14
|
+
# limitations under the License. #
|
15
|
+
################################################################################
|
16
|
+
|
17
|
+
# This is a pointless file to get around the inflexibility of the WSDL2RUBY code.
|
18
|
+
#
|
19
|
+
# It appears to be impossible to get it to generate files into a useful directory structure
|
20
|
+
#
|
21
|
+
# Oh well...
|
@@ -0,0 +1,21 @@
|
|
1
|
+
################################################################################
|
2
|
+
# Copyright 2007 Codehaus Foundation #
|
3
|
+
# #
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
5
|
+
# you may not use this file except in compliance with the License. #
|
6
|
+
# You may obtain a copy of the License at #
|
7
|
+
# #
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0 #
|
9
|
+
# #
|
10
|
+
# Unless required by applicable law or agreed to in writing, software #
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS, #
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
|
13
|
+
# See the License for the specific language governing permissions and #
|
14
|
+
# limitations under the License. #
|
15
|
+
################################################################################
|
16
|
+
|
17
|
+
# This is a pointless file to get around the inflexibility of the WSDL2RUBY code.
|
18
|
+
#
|
19
|
+
# It appears to be impossible to get it to generate files into a useful directory structure
|
20
|
+
#
|
21
|
+
# Oh well...
|
metadata
ADDED
@@ -0,0 +1,89 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mort666-jira4r
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 19
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
- 2
|
10
|
+
version: 1.0.2
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- bwalding
|
14
|
+
- remi
|
15
|
+
- mort666
|
16
|
+
autorequire:
|
17
|
+
bindir: bin
|
18
|
+
cert_chain: []
|
19
|
+
|
20
|
+
date: 2011-02-11 00:00:00 +00:00
|
21
|
+
default_executable:
|
22
|
+
dependencies: []
|
23
|
+
|
24
|
+
description: Ruby library for controlling JIRA
|
25
|
+
email: mort666@virus.org
|
26
|
+
executables: []
|
27
|
+
|
28
|
+
extensions: []
|
29
|
+
|
30
|
+
extra_rdoc_files: []
|
31
|
+
|
32
|
+
files:
|
33
|
+
- NOTICE
|
34
|
+
- Rakefile
|
35
|
+
- VERSION.yml
|
36
|
+
- README.rdoc
|
37
|
+
- LICENSE
|
38
|
+
- lib/jira4r/jira4r.rb
|
39
|
+
- lib/jira4r/jira_tool.rb
|
40
|
+
- lib/jira4r/v2/jiraServiceMappingRegistry.rb
|
41
|
+
- lib/jira4r/v2/JiraSoapServiceDriver.rb
|
42
|
+
- lib/jira4r/v2/jiraService.rb
|
43
|
+
- lib/jiraServiceMappingRegistry.rb
|
44
|
+
- lib/jira4r.rb
|
45
|
+
- lib/jiraService.rb
|
46
|
+
- examples/getProject.rb
|
47
|
+
- examples/addComment.rb
|
48
|
+
- examples/getGroup-https.rb
|
49
|
+
- examples/subtract-members
|
50
|
+
- examples/getProjects.rb
|
51
|
+
- examples/getGroup.rb
|
52
|
+
- examples/getNotificationScheme.rb
|
53
|
+
has_rdoc: true
|
54
|
+
homepage: http://github.com/mort666/jira4r
|
55
|
+
licenses: []
|
56
|
+
|
57
|
+
post_install_message:
|
58
|
+
rdoc_options:
|
59
|
+
- --inline-source
|
60
|
+
- --charset=UTF-8
|
61
|
+
require_paths:
|
62
|
+
- lib
|
63
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
64
|
+
none: false
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
hash: 3
|
69
|
+
segments:
|
70
|
+
- 0
|
71
|
+
version: "0"
|
72
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ">="
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
hash: 3
|
78
|
+
segments:
|
79
|
+
- 0
|
80
|
+
version: "0"
|
81
|
+
requirements: []
|
82
|
+
|
83
|
+
rubyforge_project:
|
84
|
+
rubygems_version: 1.6.2
|
85
|
+
signing_key:
|
86
|
+
specification_version: 2
|
87
|
+
summary: Ruby library for controlling JIRA
|
88
|
+
test_files: []
|
89
|
+
|