Sha256: 97c12ff5a7fc3df5d2bfe7657f32d98cec2ceddb24b440ed501cf585db4926a4
Contents?: true
Size: 1.36 KB
Versions: 30
Compression:
Stored size: 1.36 KB
Contents
# Copyright 2020-2021 Couchbase, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. require "rails" require "couchbase/configuration" module Rails module Couchbase class Railtie < ::Rails::Railtie def self.rescue_responses { "Couchbase::Error::DocumentNotFound" => :not_found, } end config.action_dispatch.rescue_responses&.merge!(rescue_responses) config.couchbase = ::Couchbase::Configuration.new initializer "couchbase.load-config" do config_path = Rails.root.join("config", "couchbase.yml") if config_path.file? begin config.couchbase.load!(config_path) rescue ::Couchbase::Error::CouchbaseError => e puts "There is a configuration error with the current couchbase.yml" puts e.message end end end end end end
Version data entries
30 entries across 30 versions & 1 rubygems