jimson 0.2.0 → 0.2.1

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.
Files changed (4) hide show
  1. data/CHANGELOG.rdoc +6 -0
  2. data/VERSION +1 -1
  3. data/lib/jimson/client.rb +2 -2
  4. metadata +2 -2
data/CHANGELOG.rdoc CHANGED
@@ -1,3 +1,9 @@
1
+ == 0.2.1 / 2011-07-27
2
+
3
+ * Bug fixes
4
+
5
+ * Fix error in client handling some errors caused by errant 'new' keyword
6
+
1
7
  == 0.2.0 / 2011-07-20
2
8
 
3
9
  * Major enhancements
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.0
1
+ 0.2.1
data/lib/jimson/client.rb CHANGED
@@ -45,7 +45,7 @@ module Jimson
45
45
  return resp.body
46
46
 
47
47
  rescue Exception, StandardError
48
- raise new Jimson::ClientError::InternalError.new($!)
48
+ raise Jimson::ClientError::InternalError.new($!)
49
49
  end
50
50
 
51
51
  def send_batch_request(batch)
@@ -81,7 +81,7 @@ module Jimson
81
81
  return data['result']
82
82
 
83
83
  rescue Exception, StandardError
84
- raise new Jimson::ClientError::InternalError.new
84
+ raise Jimson::ClientError::InternalError.new
85
85
  end
86
86
 
87
87
  def valid_response?(data)
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: jimson
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.2.0
5
+ version: 0.2.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - Chris Kite
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-07-20 00:00:00 -05:00
13
+ date: 2011-07-27 00:00:00 -05:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency