Sha256: 1956bcf8c0ea9265dc78014bd0adedf49acdc00c29497adc0c97817ce031687c
Contents?: true
Size: 258 Bytes
Versions: 35
Compression:
Stored size: 258 Bytes
Contents
file project_name + ".rb" do %{ module Rack class #{project_name} def initialize(app) @app = app end def call(env) [200, {'Content-Type' => 'text/html', 'Content-Length' => 100}, ['Hello World']] end end end }.strip end
Version data entries
35 entries across 35 versions & 3 rubygems