summaryrefslogtreecommitdiffstats
path: root/integration-tests/req-set-header.rb
blob: 986f128a7f8ef8d4903dfa99939c48db0a70dba0 (plain)
1
2
3
4
5
6
7
class App
  def on_req(env)
    env.req.set_header "User-Agent", "mruby"
  end
end

App.new