Update ruby-cassandra to 0.22.0.
v0.22.0 - Add new composite API to resolve ambiguity between unpacking a composite and packing a composite with one element (issue #196, courtesy @kevinkehl) - Breaking change: schema change methods no longer catch exceptions internally. They work the same as everything else. v0.21.0 - Add 1.2 libs to gem v0.19.0 - Fixed windows build by disabling native extensions (issue #188, courtesy @jacek99) - Speed improvement to native composite column extension (issue #186, courtesy @muirmanders) - Fix OrderedHash iterator return values (issue #185, courtesy @fester) - Native support for dynamic composite decoding (issue #184, courtesy @muirmanders) v0.18.0 - Cassandra 1.2 support (issue #175, courtesy @brainopia) - drop_keyspace defaults to current keyspace (issue #176, courtesy @brianopia) - Easier flush_batch interface (issue #182, courtesy @brianopia) - Support for removing multiple columns (issue #183, courtesy @brianopia)
This commit is contained in:
parent
ca3eece36b
commit
b96fe646c9
3 changed files with 19 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
||||||
# $NetBSD: Makefile,v 1.9 2012/12/17 12:29:00 taca Exp $
|
# $NetBSD: Makefile,v 1.10 2013/09/13 12:41:25 taca Exp $
|
||||||
|
|
||||||
DISTNAME= cassandra-0.17.0
|
DISTNAME= cassandra-0.22.0
|
||||||
CATEGORIES= databases ruby
|
CATEGORIES= databases ruby
|
||||||
|
|
||||||
MAINTAINER= tonnerre@NetBSD.org
|
MAINTAINER= tonnerre@NetBSD.org
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@comment $NetBSD: PLIST,v 1.5 2012/12/17 12:29:00 taca Exp $
|
@comment $NetBSD: PLIST,v 1.6 2013/09/13 12:41:25 taca Exp $
|
||||||
bin/cassandra_helper
|
bin/cassandra_helper
|
||||||
${GEM_HOME}/cache/${GEM_NAME}.gem
|
${GEM_HOME}/cache/${GEM_NAME}.gem
|
||||||
${GEM_LIBDIR}/CHANGELOG
|
${GEM_LIBDIR}/CHANGELOG
|
||||||
|
@ -33,6 +33,11 @@ ${GEM_LIBDIR}/conf/1.1/cassandra.yaml
|
||||||
${GEM_LIBDIR}/conf/1.1/log4j-server.properties
|
${GEM_LIBDIR}/conf/1.1/log4j-server.properties
|
||||||
${GEM_LIBDIR}/conf/1.1/schema.json
|
${GEM_LIBDIR}/conf/1.1/schema.json
|
||||||
${GEM_LIBDIR}/conf/1.1/schema.txt
|
${GEM_LIBDIR}/conf/1.1/schema.txt
|
||||||
|
${GEM_LIBDIR}/conf/1.2/cassandra.in.sh
|
||||||
|
${GEM_LIBDIR}/conf/1.2/cassandra.yaml
|
||||||
|
${GEM_LIBDIR}/conf/1.2/log4j-server.properties
|
||||||
|
${GEM_LIBDIR}/conf/1.2/schema.json
|
||||||
|
${GEM_LIBDIR}/conf/1.2/schema.txt
|
||||||
${GEM_LIBDIR}/ext/cassandra_native.c
|
${GEM_LIBDIR}/ext/cassandra_native.c
|
||||||
${GEM_LIBDIR}/ext/extconf.rb
|
${GEM_LIBDIR}/ext/extconf.rb
|
||||||
${GEM_LIBDIR}/lib/cassandra.rb
|
${GEM_LIBDIR}/lib/cassandra.rb
|
||||||
|
@ -56,6 +61,10 @@ ${GEM_LIBDIR}/lib/cassandra/1.1.rb
|
||||||
${GEM_LIBDIR}/lib/cassandra/1.1/cassandra.rb
|
${GEM_LIBDIR}/lib/cassandra/1.1/cassandra.rb
|
||||||
${GEM_LIBDIR}/lib/cassandra/1.1/columns.rb
|
${GEM_LIBDIR}/lib/cassandra/1.1/columns.rb
|
||||||
${GEM_LIBDIR}/lib/cassandra/1.1/protocol.rb
|
${GEM_LIBDIR}/lib/cassandra/1.1/protocol.rb
|
||||||
|
${GEM_LIBDIR}/lib/cassandra/1.2.rb
|
||||||
|
${GEM_LIBDIR}/lib/cassandra/1.2/cassandra.rb
|
||||||
|
${GEM_LIBDIR}/lib/cassandra/1.2/columns.rb
|
||||||
|
${GEM_LIBDIR}/lib/cassandra/1.2/protocol.rb
|
||||||
${GEM_LIBDIR}/lib/cassandra/array.rb
|
${GEM_LIBDIR}/lib/cassandra/array.rb
|
||||||
${GEM_LIBDIR}/lib/cassandra/batch.rb
|
${GEM_LIBDIR}/lib/cassandra/batch.rb
|
||||||
${GEM_LIBDIR}/lib/cassandra/cassandra.rb
|
${GEM_LIBDIR}/lib/cassandra/cassandra.rb
|
||||||
|
@ -97,4 +106,7 @@ ${GEM_LIBDIR}/vendor/1.0/gen-rb/cassandra_types.rb
|
||||||
${GEM_LIBDIR}/vendor/1.1/gen-rb/cassandra.rb
|
${GEM_LIBDIR}/vendor/1.1/gen-rb/cassandra.rb
|
||||||
${GEM_LIBDIR}/vendor/1.1/gen-rb/cassandra_constants.rb
|
${GEM_LIBDIR}/vendor/1.1/gen-rb/cassandra_constants.rb
|
||||||
${GEM_LIBDIR}/vendor/1.1/gen-rb/cassandra_types.rb
|
${GEM_LIBDIR}/vendor/1.1/gen-rb/cassandra_types.rb
|
||||||
|
${GEM_LIBDIR}/vendor/1.2/gen-rb/cassandra.rb
|
||||||
|
${GEM_LIBDIR}/vendor/1.2/gen-rb/cassandra_constants.rb
|
||||||
|
${GEM_LIBDIR}/vendor/1.2/gen-rb/cassandra_types.rb
|
||||||
${GEM_HOME}/specifications/${GEM_NAME}.gemspec
|
${GEM_HOME}/specifications/${GEM_NAME}.gemspec
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
$NetBSD: distinfo,v 1.7 2012/12/17 12:29:00 taca Exp $
|
$NetBSD: distinfo,v 1.8 2013/09/13 12:41:25 taca Exp $
|
||||||
|
|
||||||
SHA1 (cassandra-0.17.0.gem) = a62a139a8c5f4c179a6ac638fa072291b741c257
|
SHA1 (cassandra-0.22.0.gem) = a7ec2b0ab46ddedff4f3d80e8d3e83112e6f7d0e
|
||||||
RMD160 (cassandra-0.17.0.gem) = 3c25e00caebd97a4435cc25acd95cfed9bdb7633
|
RMD160 (cassandra-0.22.0.gem) = 7d526ae54bce5fc0de1614d379a2c8b22fd75d85
|
||||||
Size (cassandra-0.17.0.gem) = 133120 bytes
|
Size (cassandra-0.22.0.gem) = 160256 bytes
|
||||||
|
|
Loading…
Reference in a new issue