Sha256: 45a3391aaa228799101bcc68c066685ff9d92f6e0fd14d812bbcb655449c75cc

Contents?: true

Size: 213 Bytes

Versions: 9

Compression:

Stored size: 213 Bytes

Contents

module Routes
  class Healthz < App

    route do |r|

      # GET /healthz
      r.root do
        response['Content-Type'] = 'text/plain; charset=utf-8'
        'alive and kicking'
      end

    end

  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
rodbot-0.4.5 lib/templates/new/app/routes/healthz.rb
rodbot-0.4.4 lib/templates/new/app/routes/healthz.rb
rodbot-0.4.3 lib/templates/new/app/routes/healthz.rb
rodbot-0.4.2 lib/templates/new/app/routes/healthz.rb
rodbot-0.4.1 lib/templates/new/app/routes/healthz.rb
rodbot-0.4.0 lib/templates/new/app/routes/healthz.rb
rodbot-0.3.4 lib/templates/new/app/routes/healthz.rb
rodbot-0.3.3 lib/templates/new/app/routes/healthz.rb
rodbot-0.3.2 lib/templates/new/app/routes/healthz.rb