rally_rest_api 0.7.1 → 0.7.2
Sign up to get free protection for your applications and to get access to all the features.
@@ -191,7 +191,7 @@ class RestBuilder # :nodoc:
|
|
191
191
|
end
|
192
192
|
|
193
193
|
|
194
|
-
COLLECTION_TYPES = [:dependents, :dependencies, :defects, :duplicates]
|
194
|
+
COLLECTION_TYPES = [:dependents, :dependencies, :defects, :duplicates, :children, :predecessors]
|
195
195
|
def collection_type?(type)
|
196
196
|
COLLECTION_TYPES.include?(type)
|
197
197
|
end
|
@@ -2,7 +2,7 @@ class TimeoutCatchingRestBuilder < RestBuilder # :nodoc all
|
|
2
2
|
def send_request(url, req, username, password)
|
3
3
|
begin
|
4
4
|
super
|
5
|
-
rescue Timeout::Error => e
|
5
|
+
rescue Timeout::Error, Errno::ETIMEDOUT => e
|
6
6
|
@logger.warn "Caught Timeout Exception. Trying again..."
|
7
7
|
retry
|
8
8
|
end
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.2
|
|
3
3
|
specification_version: 1
|
4
4
|
name: rally_rest_api
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.7.
|
7
|
-
date: 2007-
|
6
|
+
version: 0.7.2
|
7
|
+
date: 2007-08-20 00:00:00 -06:00
|
8
8
|
summary: A ruby-ized interface to Rally's REST webservices API
|
9
9
|
require_paths:
|
10
10
|
- lib
|