File: request.rb

package info (click to toggle)
ruby-gon 6.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 504 kB
  • sloc: ruby: 1,383; makefile: 9
file content (16 lines) | stat: -rw-r--r-- 207 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class Gon
  class Request
    attr_reader :env, :gon
    attr_accessor :id

    def initialize(environment)
      @env = environment
      @gon = {}
    end

    def clear
      @gon = {}
    end

  end
end