Class: AppProfiler::Viewer::SpeedscopeViewer

Inherits:
BaseViewer
  • Object
show all
Defined in:
lib/app_profiler/viewer/speedscope_viewer.rb

Defined Under Namespace

Classes: YarnError

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(profile) ⇒ SpeedscopeViewer

Returns a new instance of SpeedscopeViewer.



16
17
18
19
# File 'lib/app_profiler/viewer/speedscope_viewer.rb', line 16

def initialize(profile)
  super()
  @profile = profile
end

Class Method Details

.view(profile) ⇒ Object



11
12
13
# File 'lib/app_profiler/viewer/speedscope_viewer.rb', line 11

def view(profile)
  new(profile).view
end

Instance Method Details

#viewObject



21
22
23
# File 'lib/app_profiler/viewer/speedscope_viewer.rb', line 21

def view
  yarn("run speedscope \"#{@profile.file}\"")
end