Module: StaticFiles
- Defined in:
- lib/static_files.rb
Instance Method Summary collapse
Instance Method Details
#receive_data(data) ⇒ Object
6 7 8 9 10 11 12 |
# File 'lib/static_files.rb', line 6 def receive_data(data) file = asset_file(data) or return super send_data "HTTP/1.1 200 OK\r\n\r\n" # win: send/stream_file_data do not work on windows send_data file.read close_connection_after_writing end |