Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/string_serve.rb
Instance Method Summary collapse
Instance Method Details
#serve ⇒ Object
6 7 8 9 10 |
# File 'lib/string_serve.rb', line 6 def serve Rack::Handler::WEBrick.run(->(env) { [200, {'Content-Type' => content_type}, [self]] }) end |