Sha256: 0809bebeb86674e48a8dd9d6b9cb93cd59b070f92a64aecff39898d6015090fa

Contents?: true

Size: 427 Bytes

Versions: 6

Compression:

Stored size: 427 Bytes

Contents

module BuilderApm
  class Configuration
    attr_accessor :redis_url
    attr_accessor :enable_controller_profiler
    attr_accessor :enable_active_record_profiler
    attr_accessor :enable_methods_profiler

    def initialize
      @redis_url = 'redis://localhost:6379/0'
      @enable_controller_profiler = true
      @enable_active_record_profiler = true
      @enable_methods_profiler = true
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
builder_apm-0.2.5 lib/builder_apm/configuration.rb
builder_apm-0.2.4 lib/builder_apm/configuration.rb
builder_apm-0.2.3 lib/builder_apm/configuration.rb
builder_apm-0.2.2 lib/builder_apm/configuration.rb
builder_apm-0.2.1 lib/builder_apm/configuration.rb
builder_apm-0.2.0 lib/builder_apm/configuration.rb