rforce 0.4 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,10 @@
1
1
  == 0.4 2010-01-21
2
2
 
3
+ * 1 minor enhancement:
4
+ * Fixed bug in search for XML libraries
5
+
6
+ == 0.4 2010-01-21
7
+
3
8
  * 1 minor enhancement:
4
9
  * Moved RubyGems dependencies into the gemspec where they belong
5
10
 
@@ -6,7 +6,7 @@ require 'rforce/soap_response_rexml'
6
6
  module RForce
7
7
  # Use the fastest XML parser available.
8
8
  SoapResponse =
9
- RForce::const_get(:SoapResponseExpat) ||
10
- RForce::const_get(:SoapResponseHpricot) ||
9
+ (RForce::const_get(:SoapResponseExpat) rescue nil) ||
10
+ (RForce::const_get(:SoapResponseHpricot) rescue nil) ||
11
11
  SoapResponseRexml
12
12
  end
@@ -1,3 +1,3 @@
1
1
  module RForce
2
- VERSION = '0.4'
2
+ VERSION = '0.4.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rforce
3
3
  version: !ruby/object:Gem::Version
4
- version: "0.4"
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ian Dees
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-01-21 00:00:00 -08:00
12
+ date: 2010-03-12 00:00:00 -08:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency