Sha256: d235ec7cf505699a7124dc6b5516774c380c5fb4aaf4fc106742a64abcdf2fdc

Contents?: true

Size: 1.39 KB

Versions: 24

Compression:

Stored size: 1.39 KB

Contents

# frozen_string_literal: true

#  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

24 entries across 24 versions & 1 rubygems

Version Path
couchbase-3.5.6 lib/couchbase/railtie.rb
couchbase-3.5.6-x86_64-linux-musl lib/couchbase/railtie.rb
couchbase-3.5.6-x86_64-linux lib/couchbase/railtie.rb
couchbase-3.5.6-x86_64-darwin lib/couchbase/railtie.rb
couchbase-3.5.6-arm64-darwin lib/couchbase/railtie.rb
couchbase-3.5.5 lib/couchbase/railtie.rb
couchbase-3.5.5-arm64-darwin lib/couchbase/railtie.rb
couchbase-3.5.5-x86_64-darwin lib/couchbase/railtie.rb
couchbase-3.5.5-x86_64-linux lib/couchbase/railtie.rb
couchbase-3.5.5-x86_64-linux-musl lib/couchbase/railtie.rb
couchbase-3.5.4 lib/couchbase/railtie.rb
couchbase-3.5.4-arm64-darwin lib/couchbase/railtie.rb
couchbase-3.5.4-x86_64-darwin lib/couchbase/railtie.rb
couchbase-3.5.4-x86_64-linux lib/couchbase/railtie.rb
couchbase-3.5.4-x86_64-linux-musl lib/couchbase/railtie.rb
couchbase-3.5.3-x86_64-linux-musl lib/couchbase/railtie.rb
couchbase-3.5.3 lib/couchbase/railtie.rb
couchbase-3.5.3-arm64-darwin lib/couchbase/railtie.rb
couchbase-3.5.3-x86_64-darwin lib/couchbase/railtie.rb
couchbase-3.5.3-x86_64-linux lib/couchbase/railtie.rb