diff options
author | Gibheer <gibheer@gmail.com> | 2013-01-09 20:08:26 +0100 |
---|---|---|
committer | Gibheer <gibheer@gmail.com> | 2013-01-09 20:08:26 +0100 |
commit | ae0b32a58f01a111505198dd282b314e914c531a (patch) | |
tree | 00ea5f5ad5e4415c364f19aeda6df6ac93f54737 /lib | |
parent | d10862ce510f62bfb43222c861eb27676ca5f535 (diff) |
take strings for body
This makes the assignment for bodies easier when using plain Strings.
They get wrapped in an array as per rack definition.
For every other type, they have to implement each and get directly set
as body or have to be rendered to Strings first.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/zero/response.rb | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/lib/zero/response.rb b/lib/zero/response.rb index 15fb8c7..264c9ae 100644 --- a/lib/zero/response.rb +++ b/lib/zero/response.rb @@ -4,7 +4,8 @@ module Zero # class Response attr_reader :status - attr_accessor :header, :body + attr_reader :body + attr_accessor :header # Constructor # Sets default status code to 200. @@ -24,6 +25,23 @@ module Zero @status = status.to_i end + # set the body to a new value + # + # Use this function to set the body to a new value. It can either be an + # Object responding to `#each` per rack convention or a kind of string. + # + # @param content [#each, String] the content of the body + def body=(content) + content = [content] if content.kind_of?(String) + + unless content.respond_to?(:each) then + raise ArgumentError.new( + "invalid body! Should be kind of String or respond to #each!") + end + + @body = content + end + # Returns the data of the response as an array: # [status, header, body] # to be usable by any webserver. |