ApiBootstraper/Api-documentation

View on GitHub
app/helpers/application_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ApplicationHelper

  # Overide markdown
  def markdown string
    string = string.gsub(/\{api_hostname\}/i, ApiBootstraper.config.api_hostname)
    super string
  end

end