Skip to content

Commit

Permalink
release 3.0.0.rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasronge committed Aug 27, 2014
1 parent 427ef82 commit 91ed9bb
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 12 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG
@@ -1,5 +1,11 @@
== 3.0.0.rc.1
* Support for count, size, length, empty, blank? for has_many relationship
* Support for rails logger of cypher queries in development
* Support for distinct count
* Optimized methods: https://github.com/andreasronge/neo4j/wiki/Optimized-Methods
* Queries should respect mapped label names (#421)
* Warn if no session is available
* Fix broken == and equality
* Fix broken == and equality (#424)

== 3.0.0.alpha.11
* Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -3,7 +3,7 @@ source 'http://rubygems.org'
gemspec

#gem 'neo4j-core', path: '../neo4j-core'
gem 'neo4j-core', :git => 'https://github.com/andreasronge/neo4j-core.git'
#gem 'neo4j-core', :git => 'https://github.com/andreasronge/neo4j-core.git'
#gem 'orm_adapter', :path => '../orm_adapter'

gem 'coveralls', require: false
Expand Down
27 changes: 18 additions & 9 deletions README.md
Expand Up @@ -2,22 +2,31 @@

Neo4j.rb is an Active Model compliant Ruby/JRuby wrapper for [the Neo4j graph database](http://www.neo4j.org/). It uses the [neo4j-core](https://github.com/andreasronge/neo4j-core) and [active_attr](https://github.com/cgriego/active_attr) gems.

## Version 3.0.0.alpha.X
## Documentation version 3.0.0.rc

Unstable !
* [Wiki](https://github.com/andreasronge/neo4j/wiki/Neo4j.rb-v3-Introduction)

* [Wiki](https://github.com/andreasronge/neo4j/wiki/Neo4j-v3)
* [Basic Rails 4 Example](https://github.com/andreasronge/neo4j/blob/master/example/blog/README.md)
## Documentation Old stable version 2.x

## Version 2.x
* [README](https://github.com/andreasronge/neo4j/tree/2.x)
* [Wiki](https://github.com/andreasronge/neo4j/wiki/Neo4j%3A%3ARails-Introduction)

## Support

* [Neo4j.rb mailing list](https://groups.google.com/forum/#!forum/neo4jrb)
* Consulting support ? ask any of the developers

## Developers

* [Andreas Ronge](https://github.com/andreasronge)
* [Brian Underwood](https://github.com/cheerfulstoic)
* [Chris Grigg](https://github.com/subvertallchris)

For the stable 2.x version, see [here](https://github.com/andreasronge/neo4j/tree/2.x)

## Contributing

* Have you found a bug, need help, or have a patch ?
* Just clone neo4j.rb and send me a pull request or email me.
* Do you need help - send me an email (andreas.ronge at gmail dot com).
Pull request with high test coverage and good [code climate](https://codeclimate.com/github/andreasronge/neo4j-core) values will be accepted faster.


## License

Expand Down
2 changes: 1 addition & 1 deletion neo4j.gemspec
Expand Up @@ -34,7 +34,7 @@ It comes included with the Apache Lucene document database.
s.add_dependency("activesupport", "~> 4")
s.add_dependency("railties", "~> 4")
s.add_dependency('active_attr', "~> 0.8")
s.add_dependency("neo4j-core", "= 3.0.0.alpha.19")
s.add_dependency("neo4j-core", "= 3.0.0.rc.1")

if RUBY_PLATFORM =~ /java/
s.add_dependency("neo4j-community", '~> 2.0')
Expand Down

0 comments on commit 91ed9bb

Please sign in to comment.