eurydice 1.1.0.b2-java → 1.1.0.b3-java

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.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- eurydice (1.1.0.b2-java)
4
+ eurydice (1.1.0.b3-java)
5
5
  pelops-jars (>= 1.2.9)
6
6
 
7
7
  GEM
data/lib/cassandra.rb CHANGED
@@ -17,10 +17,14 @@ module Cassandra
17
17
  import 'org.apache.cassandra.thrift.IndexOperator'
18
18
 
19
19
  CONSISTENCY_LEVELS = {
20
- :one => Cassandra::ConsistencyLevel::ONE,
21
- :quorum => Cassandra::ConsistencyLevel::QUORUM,
22
- :all => Cassandra::ConsistencyLevel::ALL,
23
- :any => Cassandra::ConsistencyLevel::ANY
20
+ :any => Cassandra::ConsistencyLevel::ANY,
21
+ :one => Cassandra::ConsistencyLevel::ONE,
22
+ :two => Cassandra::ConsistencyLevel::TWO,
23
+ :three => Cassandra::ConsistencyLevel::THREE,
24
+ :local_quorum => Cassandra::ConsistencyLevel::LOCAL_QUORUM,
25
+ :each_quorum => Cassandra::ConsistencyLevel::EACH_QUORUM,
26
+ :quorum => Cassandra::ConsistencyLevel::QUORUM,
27
+ :all => Cassandra::ConsistencyLevel::ALL
24
28
  }.freeze
25
29
 
26
30
  MARSHAL_TYPES = {
@@ -2,5 +2,5 @@
2
2
 
3
3
 
4
4
  module Eurydice
5
- VERSION = '1.1.0.b2'
5
+ VERSION = '1.1.0.b3'
6
6
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: eurydice
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease: 6
5
- version: 1.1.0.b2
5
+ version: 1.1.0.b3
6
6
  platform: java
7
7
  authors:
8
8
  - Theo Hultberg
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-11-28 00:00:00 Z
13
+ date: 2011-11-29 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: pelops-jars