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

Version Path
couchbase-3.5.1 lib/couchbase/railtie.rb
couchbase-3.5.1-x86_64-linux lib/couchbase/railtie.rb
couchbase-3.5.1-x86_64-darwin-20 lib/couchbase/railtie.rb
couchbase-3.5.1-arm64-darwin-22 lib/couchbase/railtie.rb
couchbase-3.5.1-x86_64-linux-musl lib/couchbase/railtie.rb
couchbase-3.5.0-arm64-darwin-23 lib/couchbase/railtie.rb
couchbase-3.5.0 lib/couchbase/railtie.rb
couchbase-3.5.0-x86_64-darwin-20 lib/couchbase/railtie.rb
couchbase-3.5.0-arm64-darwin-22 lib/couchbase/railtie.rb
couchbase-3.5.0-x86_64-linux-musl lib/couchbase/railtie.rb
couchbase-3.5.0-x86_64-linux lib/couchbase/railtie.rb
couchbase-3.4.5 lib/couchbase/railtie.rb
couchbase-3.4.5-arm64-darwin-20 lib/couchbase/railtie.rb
couchbase-3.4.4 lib/couchbase/railtie.rb
couchbase-3.4.4-arm64-darwin-20 lib/couchbase/railtie.rb
couchbase-3.4.3 lib/couchbase/railtie.rb
couchbase-3.4.3-arm64-darwin-20 lib/couchbase/railtie.rb
couchbase-3.4.2 lib/couchbase/railtie.rb
couchbase-3.4.2-arm64-darwin-20 lib/couchbase/railtie.rb
couchbase-3.4.1 lib/couchbase/railtie.rb