rally_rest_api 0.7.1 → 0.7.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.
@@ -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
@@ -2,7 +2,7 @@ module RallyRestVersion #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 7
5
- TINY = 1
5
+ TINY = 2
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
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.1
7
- date: 2007-06-14 00:00:00 -06:00
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