jiraSOAP 0.8.3 → 0.8.4
Sign up to get free protection for your applications and to get access to all the features.
- data/docs/GettingStarted.markdown +5 -5
- data/lib/jiraSOAP/version.rb +1 -1
- metadata +2 -2
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
`jiraSOAP` should run on Ruby 1.9.2+ and MacRuby 0.8+. It is available through rubygems or you can build from source:
|
4
4
|
|
5
|
-
|
5
|
+
# Using rubygems
|
6
6
|
gem install jiraSOAP
|
7
7
|
|
8
8
|
# Building from source
|
@@ -11,15 +11,15 @@
|
|
11
11
|
|
12
12
|
Once installed, you can run a quick demo (making appropriate substitutions):
|
13
13
|
|
14
|
-
|
14
|
+
require 'jiraSOAP'
|
15
15
|
|
16
16
|
The first thing that you need to do is create a JIRAService object:
|
17
17
|
|
18
|
-
|
18
|
+
db = JIRA::JIRAService.new 'http://jira.yourSite.com:8080'
|
19
19
|
|
20
20
|
Then you need to log in (a failed login will raise an exception):
|
21
21
|
|
22
|
-
|
22
|
+
db.login 'mrada', 'secret'
|
23
23
|
|
24
24
|
Once you are logged in, you can start querying the server for information:
|
25
25
|
|
@@ -31,7 +31,7 @@ Once you are logged in, you can start querying the server for information:
|
|
31
31
|
|
32
32
|
Don't forget to log out when you are done:
|
33
33
|
|
34
|
-
|
34
|
+
db.logout
|
35
35
|
|
36
36
|
See {file:docs/Examples.markdown} for more examples.
|
37
37
|
|
data/lib/jiraSOAP/version.rb
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: jiraSOAP
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.8.
|
5
|
+
version: 0.8.4
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Mark Rada
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2011-06-
|
13
|
+
date: 2011-06-14 00:00:00 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: nokogiri
|