Module: DocumentationSupport

Extended by:
ActiveSupport::Concern
Defined in:
app/controllers/concerns/documentation_support.rb

Constant Summary collapse

BULLET_TRAIN_BASE_PATH =
Gem::Specification.find_by_name("bullet_train").gem_dir

Instance Method Summary collapse

Instance Method Details

#docsObject



6
7
8
9
10
11
12
# File 'app/controllers/concerns/documentation_support.rb', line 6

def docs
  target = params[:page].presence || "index"

  @path = "#{BULLET_TRAIN_BASE_PATH}/docs/#{target}.md"

  render :docs, layout: "docs"
end