Skip to content

Instantly share code, notes, and snippets.

@yasaichi
Created April 5, 2015 09:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yasaichi/32bc9d7a6e86f0b62817 to your computer and use it in GitHub Desktop.
Save yasaichi/32bc9d7a6e86f0b62817 to your computer and use it in GitHub Desktop.
パーフェクト Ruby on Rails 10章
require './basic_auth'
App = lambda do |env|
[200, { "Content-Type" => "text/html" }, ["Hello, Rack world!"]]
end
use BasicAuth, user_name: 'test:user', password: 'pass'
run App
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment