neo4j 7.2.0 → 7.2.1
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 +4 -4
- data/CHANGELOG.md +6 -0
- data/bin/rake +17 -0
- data/lib/neo4j/shared/query_factory.rb +2 -1
- data/lib/neo4j/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 91e47692140fbc42f1ea66a6c85668588413b66a
|
|
4
|
+
data.tar.gz: d1861bd332dda7948b46d2e9b0778375bfaeb57c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a14812665bd191291167714cd3e732afc8b19a855f34d9e836c31cd7eefc4e963bab0f808fecec35d389df2d41c7d2574440366d655c555acc740096a7b8ce85
|
|
7
|
+
data.tar.gz: 295a298bbf3c81ca578cb2339e4f3be70555d42359f0b2d69b9837e02c7fa633b7b24d0875aaa2507065d148a44a4fd4b80bef4ae47006662abfb2887b107ccf
|
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.2.1] - 09-19-2016
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
|
|
10
|
+
- During ActiveRel create, node and rel property values formatted like Cypher props (`{val}`) were interpreted as props, causing errors.
|
|
11
|
+
|
|
6
12
|
## [7.2.0] - 08-23-2016
|
|
7
13
|
|
|
8
14
|
### Added
|
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')
|
|
@@ -69,7 +69,8 @@ module Neo4j::Shared
|
|
|
69
69
|
|
|
70
70
|
def create_query
|
|
71
71
|
return match_query if graph_object.persisted?
|
|
72
|
-
|
|
72
|
+
labels = graph_object.labels_for_create.map { |l| ":`#{l}`" }.join
|
|
73
|
+
base_query.create("(#{identifier}#{labels} {#{identifier}_params})").params(identifier_params => graph_object.props_for_create)
|
|
73
74
|
end
|
|
74
75
|
end
|
|
75
76
|
|
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.2.
|
|
4
|
+
version: 7.2.1
|
|
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-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: orm_adapter
|
|
@@ -216,10 +216,8 @@ dependencies:
|
|
|
216
216
|
- - "~>"
|
|
217
217
|
- !ruby/object:Gem::Version
|
|
218
218
|
version: 0.34.0
|
|
219
|
-
description:
|
|
220
|
-
frameworks heavily inspired by ActiveRecord.
|
|
221
|
-
|
|
222
|
-
'
|
|
219
|
+
description: |
|
|
220
|
+
A Neo4j OGM (Object-Graph-Mapper) for use in Ruby on Rails and Rack frameworks heavily inspired by ActiveRecord.
|
|
223
221
|
email: andreas.ronge@gmail.com, brian@brian-underwood.codes, chris@subvertallmedia.com
|
|
224
222
|
executables:
|
|
225
223
|
- neo4j-jars
|
|
@@ -232,6 +230,7 @@ files:
|
|
|
232
230
|
- Gemfile
|
|
233
231
|
- README.md
|
|
234
232
|
- bin/neo4j-jars
|
|
233
|
+
- bin/rake
|
|
235
234
|
- config/locales/en.yml
|
|
236
235
|
- config/neo4j/add_classnames.yml
|
|
237
236
|
- config/neo4j/config.yml
|
|
@@ -351,8 +350,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
351
350
|
version: '0'
|
|
352
351
|
requirements: []
|
|
353
352
|
rubyforge_project: neo4j
|
|
354
|
-
rubygems_version: 2.5.1
|
|
353
|
+
rubygems_version: 2.4.5.1
|
|
355
354
|
signing_key:
|
|
356
355
|
specification_version: 4
|
|
357
356
|
summary: A graph database for Ruby
|
|
358
357
|
test_files: []
|
|
358
|
+
has_rdoc: true
|