Skip to content

Commit

Permalink
Release 0.2.0 and use 1.0.0 neo4j-cypher gem
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasronge committed Oct 2, 2012
1 parent 0ebe118 commit 8e57bb1
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
@@ -0,0 +1,3 @@
== 0.2.0 / 2012-10-02

* Upgrade to use neo4j-cypher 1.0.0 gem
2 changes: 1 addition & 1 deletion lib/neo4j-will_paginate.rb
Expand Up @@ -43,7 +43,7 @@ def paginate(options={})
[
Neo4j::Core::Traversal::Traverser,
Neo4j::Core::Index::LuceneQuery,
Neo4j::Core::Cypher::ResultWrapper,
Neo4j::Cypher::ResultWrapper,
Neo4j::Core::Traversal::CypherQuery,
Neo4j::Wrapper::HasN::Nodes,
Neo4j::Rails::Relationships::NodesDSL,
Expand Down
2 changes: 1 addition & 1 deletion lib/neo4j-will_paginate/version.rb
@@ -1,5 +1,5 @@
module Neo4j
module WillPaginate
VERSION = "0.1.2"
VERSION = "0.2.0"
end
end
2 changes: 1 addition & 1 deletion neo4j-will_paginate.gemspec
Expand Up @@ -23,5 +23,5 @@ Gem::Specification.new do |s|
s.add_development_dependency "rspec"
s.add_runtime_dependency "activesupport", "~> 3.0"
s.add_runtime_dependency "will_paginate", "~> 3.0"
s.add_runtime_dependency "neo4j", ">= 2.0.0.alpha.4"
s.add_runtime_dependency "neo4j", "~> 2.2"
end
2 changes: 1 addition & 1 deletion spec/neo4j-will_paginate_spec.rb
Expand Up @@ -25,7 +25,7 @@ def self.should_be_paginated
should_be_paginated
end

context ::Neo4j::Core::Cypher::ResultWrapper do
context ::Neo4j::Cypher::ResultWrapper do
let(:source) { Neo4j._query(Person.all.query.to_s) }
before { 10.times { Person.create(:name => 'x') } }
it do
Expand Down

0 comments on commit 8e57bb1

Please sign in to comment.