neo4j-advanced 1.8.M07-java → 1.8.RC1-java

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -3,20 +3,25 @@ JAR files for the neo4j Graph Database
3
3
 
4
4
  This gem provides a set of jar files of the Neo4j Graph Database.
5
5
 
6
- To use it: `require 'neo4j-jars'`
6
+ To use it: `require 'neo4j-advanced'`
7
7
 
8
8
  It can be used directly but the intention is to use it with [neo4j.rb](https://github.com/andreasronge/neo4j).
9
9
 
10
- Versioning
10
+ How to Release
11
11
  ==================================================
12
12
 
13
- The major and minor versions of the gem correspond to the version of the database.
14
- The patch version is different.
13
+ 1. cd neo4j-advanced
14
+ 2. git clean -df # make sure there are no local file
15
+ 3. rm -rf tmp # make sure old tar file is deleted
16
+ 4. mkdir tmp
17
+ 5. Download tar/gz file from http://neo4j.org/download
18
+ 6. cp ~/Download/neo4j-advanced-VERSION to tmp
19
+ 7. rake upgrade
20
+ 8. edit the lib/neo4j-advanced/version file
15
21
 
16
- That means:
22
+ There should now be a gem file available in the pkg folder.
23
+ gem install pkg/neo4j-advanced-VERSION-java.gem
17
24
 
18
- - if you need `1.6`, use `~> 1.6.0` in the Gemfile. It will always update to the latest version of 1.6 of the database.
19
- - if you need `1.6.M02`, then you will need to find the appropriate gem version on the [RubyGems](http://rubygems.org) and lock it (using `= 1.6.25` for example). But it will always be `1.6.xxx`.
20
25
 
21
26
  License
22
27
  ==================================================
@@ -1,6 +1,6 @@
1
1
  module Neo4j
2
2
  module Advanced
3
- VERSION = "1.8.M07"
4
- NEO_VERSION = "1.8.M07"
3
+ VERSION = "1.8.RC1"
4
+ NEO_VERSION = "1.8.RC1"
5
5
  end
6
6
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: neo4j-advanced
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease: 4
5
- version: 1.8.M07
5
+ version: 1.8.RC1
6
6
  platform: java
7
7
  authors:
8
8
  - Dmytrii Nagirniak
@@ -11,7 +11,7 @@ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
13
 
14
- date: 2012-08-13 00:00:00 Z
14
+ date: 2012-09-21 00:00:00 Z
15
15
  dependencies: []
16
16
 
17
17
  description: "The Java Jar files for the Neo4j Advanced edition, adding advanced monitoring \xE2\x80\x93 licensed under the AGPL, see http://neo4j.org/licensing-guide/ "
@@ -30,7 +30,7 @@ files:
30
30
  - README.md
31
31
  - Rakefile
32
32
  - lib/neo4j-advanced.rb
33
- - lib/neo4j-advanced/jars/neo4j-management-1.8.M07.jar
33
+ - lib/neo4j-advanced/jars/neo4j-management-1.8.RC1.jar
34
34
  - lib/neo4j-advanced/version.rb
35
35
  - neo4j-advanced.gemspec
36
36
  - spec/neo4j_spec.rb
@@ -61,7 +61,7 @@ rubyforge_project: neo4j-advanced
61
61
  rubygems_version: 1.8.15
62
62
  signing_key:
63
63
  specification_version: 3
64
- summary: The neo4j Advanced edition v1.8.M07 JAR files
64
+ summary: The neo4j Advanced edition v1.8.RC1 JAR files
65
65
  test_files:
66
66
  - spec/neo4j_spec.rb
67
67
  - spec/spec_helper.rb