neo4j 7.1.3 → 7.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 26b7ce1277e787c8e4e3587c6533611b88f9ff91
4
- data.tar.gz: d583a0d749c3ecee79de5db704cd6111b70c4fc9
3
+ metadata.gz: 59a1f4ff6343398b192ac132595f0165fc65fec2
4
+ data.tar.gz: e08ab0b4e2cf7716cf7b0ed085082a052360de77
5
5
  SHA512:
6
- metadata.gz: 4f2ee2471012baf883b91109e9c599216910e60b13c2c143626498381c5e9d10cc202477f55eebf661fd2d6500d10738d597ac7d63183efc97d5b46a6a041cf5
7
- data.tar.gz: 55ebf35bf70594ed8b74a37fa0d64227d983cb7fa60f5ce03563ecd24d6471a31d48e8ef81f544b5a80d5bc29aa303f284d35b36a6bca4b4e559d4aaacf7b40d
6
+ metadata.gz: bd2af749c6b804e50ab8ca138124a570802f7eafbb75583a3487e3748af238d86c0bd3517fbe424aa99ed83b2e635e190bcfb90b93917e59c2b4ba45dec4fe12
7
+ data.tar.gz: 0e75718feea9d08f69322c69c3989c8b0d367f423910f8ff8b701386cb146fbada6a00ce9da80f79fee11cee484b8887e90132c83834edbd9cdd0c5c477a425e
@@ -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.1.4] - 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.1.3] - 08-18-2016
7
13
 
8
14
  ### Changed
@@ -28,6 +34,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
28
34
  - Gemspec dependency requirements were modified where ActiveModel, ActiveSupport, and Railties are concerned. The gem now requires >= 4.0, < 5.1.
29
35
  - `ActiveModel::Serializers::Xml` is only included if supported if available.
30
36
 
37
+ ## [7.0.16] - 09-20-2016
38
+
39
+ ### Fixed
40
+
41
+ - `where` clause with question mark parameter and array values only using the first element (see #1247 #1290)
42
+
31
43
  ## [7.0.15] - 08-18-2016
32
44
 
33
45
  ### Changed
data/Gemfile CHANGED
@@ -13,9 +13,9 @@ gemspec
13
13
  gem 'listen', '< 3.1'
14
14
 
15
15
  if RUBY_VERSION.to_f < 2.2
16
- gem 'activemodel', '~> 4'
17
- gem 'activesupport', '~> 4'
18
- gem 'railties', '~> 4'
16
+ gem 'activemodel', '~> 4.2'
17
+ gem 'activesupport', '~> 4.2'
18
+ gem 'railties', '~> 4.2'
19
19
  end
20
20
 
21
21
  group 'test' do
@@ -25,7 +25,6 @@ group 'test' do
25
25
  gem 'overcommit', '< 0.35.0'
26
26
  else
27
27
  gem 'overcommit'
28
- gem 'activesupport', '>= 4.2'
29
28
  end
30
29
  gem 'codecov', require: false
31
30
  gem 'simplecov', require: false
@@ -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.1.3'
2
+ VERSION = '7.1.4'
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.1.3
4
+ version: 7.1.4
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
@@ -232,6 +232,7 @@ files:
232
232
  - Gemfile
233
233
  - README.md
234
234
  - bin/neo4j-jars
235
+ - bin/rake
235
236
  - config/locales/en.yml
236
237
  - config/neo4j/add_classnames.yml
237
238
  - config/neo4j/config.yml
@@ -355,4 +356,3 @@ signing_key:
355
356
  specification_version: 4
356
357
  summary: A graph database for Ruby
357
358
  test_files: []
358
- has_rdoc: true