lib/alephant/broker/models/response_factory.rb in alephant-broker-0.1.1 vs lib/alephant/broker/models/response_factory.rb in alephant-broker-0.1.2
- old
+ new
@@ -23,18 +23,17 @@
when :error
response(500)
end
end
+ def response(status)
+ Response.new(status)
+ end
+
private
def config
@config
end
-
- def response(status)
- Response.new(status)
- end
-
end
end
end