confluence-soap 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/confluence-soap.gemspec +4 -5
- data/lib/confluence-soap.rb +2 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 69c70a9833f7aa57fa636ef35557cac026f35b98
|
4
|
+
data.tar.gz: f4ff292c2bb73668555fe00569d0d4fd6cc0d782
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fc77609b9558fa7239f55c01941b89c41f243ae0e8b8085a1d797e506912a52381fdb3ce02fec9064bffb5f203c06ba50d9f840400a0089069c396923681fad8
|
7
|
+
data.tar.gz: 1c24c6eb42d207f04133ab6565038c61a0512ae73b78a92111dc0e10aae99e0a440e537c72353726246cd58cbd24b4b811c3dc5531caf5d9fbb0a7a79395a366
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.4
|
data/confluence-soap.gemspec
CHANGED
@@ -5,16 +5,16 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "confluence-soap"
|
8
|
-
s.version = "0.0.
|
8
|
+
s.version = "0.0.4"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Ping Yu", "Eric Himmelreich"]
|
12
|
-
s.date = "2014-01-
|
12
|
+
s.date = "2014-01-28"
|
13
13
|
s.description = ""
|
14
14
|
s.email = ["ping@intridea.com", "eric@intridea.com"]
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"LICENSE.txt",
|
17
|
-
"README.
|
17
|
+
"README.md"
|
18
18
|
]
|
19
19
|
s.files = [
|
20
20
|
".document",
|
@@ -23,11 +23,10 @@ Gem::Specification.new do |s|
|
|
23
23
|
"Gemfile",
|
24
24
|
"Gemfile.lock",
|
25
25
|
"LICENSE.txt",
|
26
|
-
"README.
|
26
|
+
"README.md",
|
27
27
|
"Rakefile",
|
28
28
|
"VERSION",
|
29
29
|
"confluence-soap.gemspec",
|
30
|
-
"lib/.DS_Store",
|
31
30
|
"lib/confluence-soap.rb",
|
32
31
|
"spec/confluence-soap_spec.rb",
|
33
32
|
"spec/spec_helper.rb"
|
data/lib/confluence-soap.rb
CHANGED
@@ -89,12 +89,13 @@ class ConfluenceSoap
|
|
89
89
|
end
|
90
90
|
|
91
91
|
private
|
92
|
+
|
92
93
|
def reconnect
|
93
94
|
login(@user, @password)
|
94
95
|
end
|
95
96
|
|
96
97
|
def parse_array_response method, response
|
97
|
-
parse_response(method, response)["#{method}_return".to_sym]
|
98
|
+
parse_response(method, response)["#{method}_return".to_sym] || []
|
98
99
|
end
|
99
100
|
|
100
101
|
def parse_response method, response
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: confluence-soap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ping Yu
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-01-
|
12
|
+
date: 2014-01-28 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: savon
|
@@ -110,7 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
110
110
|
version: '0'
|
111
111
|
requirements: []
|
112
112
|
rubyforge_project:
|
113
|
-
rubygems_version: 2.
|
113
|
+
rubygems_version: 2.0.14
|
114
114
|
signing_key:
|
115
115
|
specification_version: 4
|
116
116
|
summary: ruby client for confluence soap API
|