Sha256: 626fbbaf8cdf7b59d430da39ed50daa70b54ab4d54ee8b7aa468cdaca775896c

Contents?: true

Size: 253 Bytes

Versions: 5

Compression:

Stored size: 253 Bytes

Contents

require 'rack'

use Rack::Static, urls: %w(/assets /data)

run lambda { |env|
  [
      200,
      {
          'Content-Type' => 'text/html',
          'Cache-Control' => 'public, max-age=86400'
      },
      File.open('index.html', File::RDONLY)
  ]
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
help_desk_dashboard-0.0.8 lib/help_desk_dashboard/lib/web/config.ru
help_desk_dashboard-0.0.7 lib/help_desk_dashboard/lib/web/config.ru
help_desk_dashboard-0.0.6 lib/help_desk_dashboard/lib/web/config.ru
help_desk_dashboard-0.0.5 lib/help_desk_dashboard/lib/web/config.ru
help_desk_dashboard-0.0.3 lib/help-desk-dashboard/web/config.ru