neo4j 6.1.3 → 6.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: dcdf7a5298b8798b054658fcd85c9788e12bf7de
4
- data.tar.gz: a1c3c11a99a1756ba322ef69f62ff5e1823bf56e
3
+ metadata.gz: 33a1085d5e78ca458ea06f2d2c9d5be259bde96a
4
+ data.tar.gz: d9da156704e3c1cc9800a0df614f5a211e4d2e5e
5
5
  SHA512:
6
- metadata.gz: dba85ea4f388c39a43dcec28dcd16b1a0792db62ce9acea8ec8b918922ecec6fc3870ec5e480b8a152c68676f2a7727712549abaa7997afbbedc509b56bc9d9a
7
- data.tar.gz: cd013be7dbc76bd64aa76ad2e60ea1c2b3060ea4a6a2794d6cfb23bc28da1bf403842f8457d0382100f14ceb95b31e6662f618537f92e5be626709d05769619c
6
+ metadata.gz: eb10e657b8e0dc076cc93a4e897bf3a9b489ebe47cc174ab26102b5ecdc03ea491d3cbf2704f2cb9155384053c0f024946f8d5e05903f9941219158b1c7f938c
7
+ data.tar.gz: c5fa088f4dbf74b7164475a1d507a09b014fe32cc581e031f948c3976880462fa4e8b12a1fff9d0a5ca56c7085c631256390931377dd4648960e2f19373ee7d0
@@ -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
+ ## [6.1.4] - 2016-01-26
7
+
8
+ ### Fixed
9
+
10
+ - Model generators now respect module namespaces (thanks to michaeldelorenzo in #1119)
11
+
6
12
  ## [6.1.3] - 2016-01-20
7
13
 
8
14
  ### Fixed
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '6.1.3'
2
+ VERSION = '6.1.4'
3
3
  end
@@ -12,7 +12,7 @@ class Neo4j::Generators::ModelGenerator < Neo4j::Generators::Base #:nodoc:
12
12
  class_option :has_many, type: :array, desc: 'A list of has_many relationships'
13
13
 
14
14
  def create_model_file
15
- template 'model.erb', File.join('app/models', "#{singular_name}.rb")
15
+ template 'model.erb', File.join('app/models', class_path, "#{singular_name}.rb")
16
16
  end
17
17
 
18
18
  protected
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.3
4
+ version: 6.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-01-20 00:00:00.000000000 Z
11
+ date: 2016-01-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: orm_adapter