Sha256: 32df3600c12464c0da00f13e0f89b329f3cf6c2b667517fee92d731cca7bba80

Contents?: true

Size: 222 Bytes

Versions: 6

Compression:

Stored size: 222 Bytes

Contents


module Redcar
  class HtmlTab < Tab
    attr_reader :html_view
  
    def initialize(*args)
      super
      create_html_view
    end
    
    def create_html_view
      @html_view = HtmlView.new(self)
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
redcar-0.3.4.3 plugins/html_view/lib/html_view/html_tab.rb
redcar-0.3.4.2 plugins/html_view/lib/html_view/html_tab.rb
redcar-0.3.4.1 plugins/html_view/lib/html_view/html_tab.rb
redcar-0.3.4 plugins/html_view/lib/html_view/html_tab.rb
redcar-0.3.3 plugins/html_view/lib/html_view/html_tab.rb
redcar-0.3.2dev plugins/html_view/lib/html_view/html_tab.rb