Sha256: 4abdc9c58a993b505b89b673a01824d0de35b927d5a048fe871d7823b1f75db8

Contents?: true

Size: 1.21 KB

Versions: 7

Compression:

Stored size: 1.21 KB

Contents

# frozen_string_literal: true
require 'erb'
require 'pathname'
require 'rubycritic/generators/html/view_helpers'

module RubyCritic
  module Generator
    module Html
      class Base
        def self.erb_template(template_path)
          ERB.new(File.read(File.join(TEMPLATES_DIR, template_path)))
        end

        TEMPLATES_DIR = File.expand_path('../templates', __FILE__)
        LAYOUT_TEMPLATE = erb_template(File.join('layouts', 'application.html.erb'))

        include ViewHelpers

        def file_href
          "file://#{file_pathname}"
        end

        def file_pathname
          File.join(file_directory, file_name)
        end

        def file_directory
          @file_directory ||= root_directory
        end

        def file_name
          raise NotImplementedError,
                "The #{self.class} class must implement the #{__method__} method."
        end

        def render
          raise NotImplementedError,
                "The #{self.class} class must implement the #{__method__} method."
        end

        private

        def root_directory
          @root_directory ||= Pathname.new(Config.root)
        end

        def get_binding
          binding
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rubycritic-3.2.0 lib/rubycritic/generators/html/base.rb
rubycritic-3.1.3 lib/rubycritic/generators/html/base.rb
rubycritic-3.1.2 lib/rubycritic/generators/html/base.rb
rubycritic-3.1.1 lib/rubycritic/generators/html/base.rb
rubycritic-3.1.0 lib/rubycritic/generators/html/base.rb
rubycritic-3.0.0 lib/rubycritic/generators/html/base.rb
rubycritic-2.9.4 lib/rubycritic/generators/html/base.rb