Sha256: d40550f8b8c2afa9a7700ae2ce79f025fe63a13f1ea45d327149a84142af9df4
Contents?: true
Size: 218 Bytes
Versions: 6
Compression:
Stored size: 218 Bytes
Contents
module Thumbs class Server def call(env) if env['PATH_INFO'] =~ env['thumbs.url_pattern'] [200, {}, ["Found"]] else [404, {}, ["Not found"]] end end end end
Version data entries
6 entries across 6 versions & 1 rubygems