class RuboCop::Formatter::ViewerFormatter::ERBContext

This class provides helper methods used in the ERB template.

Attributes

app_js[R]
json_data[R]

Public Class Methods

new(json_data, app_js) click to toggle source
# File lib/rubocop/formatter/viewer_formatter.rb, line 60
def initialize(json_data, app_js)
  @json_data = json_data
  @app_js    = app_js
end

Public Instance Methods

binding() click to toggle source

rubocop:disable Lint/UselessMethodDefinition

Calls superclass method
# File lib/rubocop/formatter/viewer_formatter.rb, line 66
def binding
  super
end