neo4j 7.1.3 → 7.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/Gemfile +3 -4
- data/bin/rake +17 -0
- data/lib/neo4j/active_node/query/query_proxy_link.rb +5 -1
- data/lib/neo4j/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 59a1f4ff6343398b192ac132595f0165fc65fec2
|
4
|
+
data.tar.gz: e08ab0b4e2cf7716cf7b0ed085082a052360de77
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd2af749c6b804e50ab8ca138124a570802f7eafbb75583a3487e3748af238d86c0bd3517fbe424aa99ed83b2e635e190bcfb90b93917e59c2b4ba45dec4fe12
|
7
|
+
data.tar.gz: 0e75718feea9d08f69322c69c3989c8b0d367f423910f8ff8b701386cb146fbada6a00ce9da80f79fee11cee484b8887e90132c83834edbd9cdd0c5c477a425e
|
data/CHANGELOG.md
CHANGED
@@ -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
|
data/bin/rake
ADDED
@@ -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')
|
data/lib/neo4j/version.rb
CHANGED
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.
|
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-
|
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
|