Sha256: 151e9103882939410c23d0aadbca71ef5d573e8929663c6682fb10bb7513f3cf

Contents?: true

Size: 1.14 KB

Versions: 22

Compression:

Stored size: 1.14 KB

Contents

module Neo4j
  module Shared
    extend ActiveSupport::Concern
    extend ActiveModel::Naming

    include ActiveModel::Conversion
    include ActiveModel::Serializers::Xml
    include ActiveModel::Serializers::JSON

    module ClassMethods
      attr_writer :neo4j_session_name

      def neo4j_session_name(name)
        ActiveSupport::Deprecation.warn 'neo4j_session_name is deprecated and may be removed from future releases, use neo4j_session_name= instead.', caller

        @neo4j_session_name = name
      end

      def neo4j_session
        if @neo4j_session_name
          Neo4j::Session.named(@neo4j_session_name) ||
            fail("#{self.name} is configured to use a neo4j session named #{@neo4j_session_name}, but no such session is registered with Neo4j::Session")
        else
          Neo4j::Session.current!
        end
      end
    end

    included do
      self.include_root_in_json = Neo4j::Config.include_root_in_json
      @_declared_properties ||= Neo4j::Shared::DeclaredProperties.new(self)

      def self.i18n_scope
        :neo4j
      end
    end

    def declared_properties
      self.class.declared_properties
    end
  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
neo4j-6.1.1 lib/neo4j/shared.rb
neo4j-6.1.0 lib/neo4j/shared.rb
neo4j-6.0.5 lib/neo4j/shared.rb
neo4j-6.0.4 lib/neo4j/shared.rb
neo4j-6.0.3 lib/neo4j/shared.rb
neo4j-6.0.2 lib/neo4j/shared.rb
neo4j-6.0.1 lib/neo4j/shared.rb
neo4j-6.0.0 lib/neo4j/shared.rb
neo4j-6.0.0.rc.4 lib/neo4j/shared.rb
neo4j-6.0.0.rc.3 lib/neo4j/shared.rb
neo4j-6.0.0.rc.2 lib/neo4j/shared.rb
neo4j-6.0.0.rc.1 lib/neo4j/shared.rb
neo4j-6.0.0.alpha.12 lib/neo4j/shared.rb
neo4j-6.0.0.alpha.11 lib/neo4j/shared.rb
neo4j-6.0.0.alpha.9 lib/neo4j/shared.rb
neo4j-6.0.0.alpha.8 lib/neo4j/shared.rb
neo4j-6.0.0.alpha.7 lib/neo4j/shared.rb
neo4j-6.0.0.alpha.5 lib/neo4j/shared.rb
neo4j-6.0.0.alpha.4 lib/neo4j/shared.rb
neo4j-6.0.0.alpha.3 lib/neo4j/shared.rb