Class: Rack::MiniProfiler::TimerStruct
- Inherits:
-
Object
- Object
- Rack::MiniProfiler::TimerStruct
show all
- Defined in:
- lib/mini_profiler/timer_struct.rb
Overview
A base class for timing structures
Instance Method Summary
collapse
Constructor Details
#initialize(attrs = {}) ⇒ TimerStruct
Returns a new instance of TimerStruct.
7
8
9
|
# File 'lib/mini_profiler/timer_struct.rb', line 7
def initialize(attrs={})
@attributes = attrs
end
|
Instance Method Details
#[](name) ⇒ Object
15
16
17
|
# File 'lib/mini_profiler/timer_struct.rb', line 15
def [](name)
attributes[name]
end
|
#[]=(name, val) ⇒ Object
19
20
21
22
|
# File 'lib/mini_profiler/timer_struct.rb', line 19
def []=(name, val)
attributes[name] = val
self
end
|
#attributes ⇒ Object
11
12
13
|
# File 'lib/mini_profiler/timer_struct.rb', line 11
def attributes
@attributes ||= {}
end
|
#to_json(*a) ⇒ Object
24
25
26
|
# File 'lib/mini_profiler/timer_struct.rb', line 24
def to_json(*a)
::JSON.generate(@attributes, a[0])
end
|