neo4j 6.1.8 → 6.1.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b65f9411fbf1531dae1b15581c8679f14bec490e
4
- data.tar.gz: 5eb9fe63a7623b1597cbafa8b0bfd754780ab56b
3
+ metadata.gz: 679656392441ae5e6d59d86d42b7c11ea6bcfab0
4
+ data.tar.gz: 0b5ffa1eb006b9c29001591edeab99793c44d5d9
5
5
  SHA512:
6
- metadata.gz: 12d00dc87fce1483d04cb08b3dd04902336696c5663976f34615770b505b6a18af39eaeed0fdc32d378965b85347e4eca030947695a5556c310b9f35f2cb6565
7
- data.tar.gz: b1de3d322a4ab7fbf4c3c99e1fb2f3af4512d6d9355bc04800355d88fce05553a2a98439ab9cc09101f88de250205e5d54e75d1dc38c68ae8e21e50f80c866d2
6
+ metadata.gz: 1a265480a388e338260c6ffeee67e08afc705f664af9db37a57296dc62e1e02b5492e315d963e2745265d715ed04113a0abba82b311a3c048e82e39354d1ba01
7
+ data.tar.gz: f9ba0b1c3ac2ca0b8d5b68e496a5c50d11196e7dedf35824fed2fac516f1f2d341fd92aebc14753c1755afbf8a319fb917c072ad7f5ebcc29055cbf75f73e145
@@ -93,7 +93,7 @@ module Neo4j
93
93
  "#{var}.#{association_id_key} = {other_node_id}"
94
94
  end
95
95
  node_id = other.respond_to?(:neo_id) ? other.neo_id : other
96
- self.where(where_filter).params(other_node_id: node_id).query.return("count(#{var}) as count").first.count > 0
96
+ self.where(where_filter).params(other_node_id: node_id).query.reorder.return("count(#{var}) as count").first.count > 0
97
97
  end
98
98
  end
99
99
 
@@ -27,7 +27,7 @@ module Neo4j::Shared
27
27
  # It calls an init method in active_attr that has a very negative impact on performance.
28
28
  def initialize(attributes = nil)
29
29
  attributes = process_attributes(attributes)
30
- @relationship_props = self.class.extract_association_attributes!(attributes)
30
+ @relationship_props = {} # self.class.extract_association_attributes!(attributes)
31
31
  modded_attributes = inject_defaults!(attributes)
32
32
  validate_attributes!(modded_attributes)
33
33
  writer_method_props = extract_writer_methods!(modded_attributes)
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '6.1.8'
2
+ VERSION = '6.1.9'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neo4j
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.1.8
4
+ version: 6.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andreas Ronge, Brian Underwood, Chris Grigg
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-02 00:00:00.000000000 Z
11
+ date: 2016-03-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: orm_adapter