class Gollum::Filter::PlantUML::Configuration

Configuration class used to change the behaviour of the PlatnUML filter.

url: PlantUML server URL (e.g. http://localhost:8080)
test: Set to true when running tests to skip the server check.

Attributes

test[RW]
url[RW]
verify_ssl[RW]

Public Class Methods

new() click to toggle source
# File lib/gollum-lib/filter/plantuml.rb, line 50
def initialize
  @url = DEFAULT_URL
  @verify_ssl = true
  @test = false
end