neo4j 7.0.15 → 7.0.16

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: 92d43ae1a09aea6252ca9b1ee6c7148e96e4456a
4
- data.tar.gz: 8767c8a92efa689ae7afec6a97cc0e4cd47e39ac
3
+ metadata.gz: c519c8df13d5f5cbb5a82596b394ae421ab36eb4
4
+ data.tar.gz: 4646b6989dc25cdb11fb0372b0513ebe96cef302
5
5
  SHA512:
6
- metadata.gz: dbc745a08247ad376ac4cde429622839b963fe39bb7f8277bb0a42fbc7a80b741fd7c4ddcf0d085ae83b772b952419436a215d8a71cb057e496914742f201f35
7
- data.tar.gz: db5240ea93ff1dc3c71f44d050746c8fd1a3500f837950cc3b893737dbd4b0984869a3202d60dcee050d4ff16b7d17b8113c5a0fd3574e62d2cc15b8471071dd
6
+ metadata.gz: 77819a19c9a8fc298769758769a818983f92ba3d0560d1fdb3ab8c1f2d7bbcfab4b2fe1bd2d6c937851659648fcced3e3bd0fc9b64fb1abbe2992ac277ec7047
7
+ data.tar.gz: 2bb1ce43554404df1e49680586fd70b43580a919eb7930f91e5288ab25b90b549ed3d482b146d5ae90d593d95804ba24baee1cc4e8f9c71853205dae8cf0636f
@@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file.
3
3
  This file should follow the standards specified on [http://keepachangelog.com/]
4
4
  This project adheres to [Semantic Versioning](http://semver.org/).
5
5
 
6
+ ## [7.0.16] - 09-20-2016
7
+
8
+ ### Fixed
9
+
10
+ - `where` clause with question mark parameter and array values only using the first element (see #1247 #1290)
11
+
6
12
  ## [7.0.15] - 08-18-2016
7
13
 
8
14
  ### Changed
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+ #
4
+ # This file was generated by Bundler.
5
+ #
6
+ # The application 'rake' is installed as part of a gem, and
7
+ # this file is here to facilitate running it.
8
+ #
9
+
10
+ require 'pathname'
11
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile',
12
+ Pathname.new(__FILE__).realpath)
13
+
14
+ require 'rubygems'
15
+ require 'bundler/setup'
16
+
17
+ load Gem.bin_path('rake', 'rake')
@@ -12,7 +12,11 @@ module Neo4j
12
12
  end
13
13
 
14
14
  def args(var, rel_var)
15
- @arg.respond_to?(:call) ? @arg.call(var, rel_var) : [@arg, @args].flatten
15
+ if @arg.respond_to?(:call)
16
+ @arg.call(var, rel_var)
17
+ else
18
+ [@arg] + @args
19
+ end
16
20
  end
17
21
 
18
22
  class << self
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '7.0.15'
2
+ VERSION = '7.0.16'
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: 7.0.15
4
+ version: 7.0.16
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-08-18 00:00:00.000000000 Z
11
+ date: 2016-09-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: orm_adapter
@@ -214,6 +214,7 @@ files:
214
214
  - Gemfile
215
215
  - README.md
216
216
  - bin/neo4j-jars
217
+ - bin/rake
217
218
  - config/locales/en.yml
218
219
  - config/neo4j/add_classnames.yml
219
220
  - config/neo4j/config.yml
@@ -337,4 +338,3 @@ signing_key:
337
338
  specification_version: 4
338
339
  summary: A graph database for Ruby
339
340
  test_files: []
340
- has_rdoc: true