renderedtext/render_async

View on GitHub
lib/render_async/configuration.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module RenderAsync
  class Configuration
    attr_accessor :jquery, :turbolinks, :turbo, :replace_container, :nonces

    def initialize
      @jquery = false
      @turbolinks = false
      @turbo = false
      @replace_container = true
      @nonces = false
    end
  end
end