luna_api 0.0.5 → 0.1.0

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.
data/lib/luna_api/todo.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  module LunaApi
2
+ class TodoError < StandardError; end
2
3
  class Todo
3
4
  def self.get
4
5
  response = Typhoeus::Request.get("http://todo.lunasandals.com/")
@@ -7,17 +8,27 @@ module LunaApi
7
8
 
8
9
  def self.create(attrs)
9
10
  response = Typhoeus::Request.post("http://todo.lunasandals.com/todo", :params => {:todo => attrs})
10
- response.success?
11
+ handle_response(response)
11
12
  end
12
13
 
13
14
  def self.complete(id)
14
15
  response = Typhoeus::Request.put("http://todo.lunasandals.com/todo/#{id}/complete")
15
- response.success?
16
+ handle_response(response)
16
17
  end
17
18
 
18
19
  def self.tags
19
20
  response = Typhoeus::Request.get("http://todo.lunasandals.com/tags")
20
21
  response.body
21
22
  end
23
+
24
+ private
25
+
26
+ def self.handle_response(response)
27
+ if response.success?
28
+ response.body
29
+ else
30
+ raise TodoError, response.body
31
+ end
32
+ end
22
33
  end
23
34
  end
@@ -1,3 +1,3 @@
1
1
  module LunaApi
2
- VERSION = "0.0.5"
2
+ VERSION = "0.1.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: luna_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.1.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-10-07 00:00:00.000000000 Z
12
+ date: 2012-10-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: typhoeus