neo4j 9.1.5 → 9.1.6

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: 81748cbae6abcb05429d2742ba110392fb893d26
4
- data.tar.gz: 82fb3384b3c0878e528209e597dfb17598ae747a
3
+ metadata.gz: 180d3e1b930a1d7b61aa2d89c52e46c36b4a6d68
4
+ data.tar.gz: 43b5fee65bdff8db960b3ecf17221b102977e670
5
5
  SHA512:
6
- metadata.gz: 545ac6839ad192daacf817f9905cb7f673a22725fc7f3c9d8ebdfba28110046938cc114d4258baa4392ca9beb0e2c63c4d8316a8d3e648d7b7190bd784ad542a
7
- data.tar.gz: 5e727f67450c4a5d3d484bd92352f8ede9c60ba14aa19876ec2f35a0e414f9394f72367ebb1c31a1aef76d94fadaef8bf733fcddbcbf91b158b82c38f69954e2
6
+ metadata.gz: a0750c3beae563a0e22e3f43ae0954cb76949cadd0af7d32b2971b8b0bf4b7f526eabc3eab9d933cfb101ffba33b6edfd9eccf8aa2e83aaca6b8d04312aa68a4
7
+ data.tar.gz: f34d0cf5c8274505df5cec82942ddc488e305efd0cd128560457bd328cd690b69c126315053b8d9e14077b088d201cf29bb3e6146c7809596df87e0dde26af1a
@@ -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
+ ## [9.1.6] 2018-03-18
7
+
8
+ ## Fixed
9
+
10
+ - Adding link to `CHANGELOG.md` as shown on https://olivierlacan.com/posts/changelogs-on-rubygems-org/
11
+
6
12
  ## [9.1.5] 2018-03-18
7
13
 
8
14
  ## Fixed
@@ -112,6 +112,8 @@ module Neo4j
112
112
  when @origin
113
113
  origin_type
114
114
  else
115
+ # I think that this line is no longer readed since we require either
116
+ # `type`, `rel_class`, or `origin` in associations
115
117
  (create || exceptional_target_class?) && decorated_rel_type(@name)
116
118
  end
117
119
  end
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '9.1.5'
2
+ VERSION = '9.1.6'
3
3
  end
@@ -26,6 +26,12 @@ A Neo4j OGM (Object-Graph-Mapper) for Ruby heavily inspired by ActiveRecord.
26
26
  s.has_rdoc = true
27
27
  s.extra_rdoc_files = %w( README.md )
28
28
  s.rdoc_options = ['--quiet', '--title', 'Neo4j.rb', '--line-numbers', '--main', 'README.rdoc', '--inline-source']
29
+ s.metadata = {
30
+ "homepage_uri" => "http://neo4jrb.io/",
31
+ "changelog_uri" => "https://github.com/neo4jrb/neo4j/blob/master/CHANGELOG.md",
32
+ "source_code_uri" => "https://github.com/neo4jrb/neo4j/",
33
+ "bug_tracker_uri" => "https://github.com/neo4jrb/neo4j/issues",
34
+ }
29
35
 
30
36
  s.add_dependency('orm_adapter', '~> 0.5.0')
31
37
  s.add_dependency('activemodel', '>= 4.0')
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: 9.1.5
4
+ version: 9.1.6
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: 2018-03-19 00:00:00.000000000 Z
11
+ date: 2018-03-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: orm_adapter
@@ -339,7 +339,11 @@ files:
339
339
  homepage: https://github.com/neo4jrb/neo4j/
340
340
  licenses:
341
341
  - MIT
342
- metadata: {}
342
+ metadata:
343
+ homepage_uri: http://neo4jrb.io/
344
+ changelog_uri: https://github.com/neo4jrb/neo4j/blob/master/CHANGELOG.md
345
+ source_code_uri: https://github.com/neo4jrb/neo4j/
346
+ bug_tracker_uri: https://github.com/neo4jrb/neo4j/issues
343
347
  post_install_message:
344
348
  rdoc_options:
345
349
  - "--quiet"