Sha256: 9dcdc687c5aeed1114f132f7bea4d70ba1d0fd3b30e1d4d86a125cc9bad5247e

Contents?: true

Size: 233 Bytes

Versions: 1

Compression:

Stored size: 233 Bytes

Contents

module ExceptionsApp
  class Config
    attr_accessor :envs, :errors_path, :statics_path

    def initialize
      @envs = ["production"]
      @errors_path = ["/404", "/422", "/500"]
      @statics_path = "public"
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
exceptions_app-0.0.1 lib/exceptions_app/config.rb