quandl_cassandra 1.2.4 → 1.2.5

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b04729bd3d3e3675a93e9bbc6f0fef5cadd7c8c9
4
- data.tar.gz: be46b8678c94354e2c6e6fa0afdd659ae18db3e9
3
+ metadata.gz: c319ff5871759196f1adf8215b1ae107c0dec74d
4
+ data.tar.gz: e61540a56c984e9a335f4d8c2f2111b4aa369ac2
5
5
  SHA512:
6
- metadata.gz: 91c13e7f33ff01a8b0356c06fb40dbf3a960e896e2fca59108a75acc162c6283d763ca5622ac9b5417bf81584052660712e2f569be40693a9f2250a9bd3e25a2
7
- data.tar.gz: b2c0492d2a9314c73911442843ea8d7dce3099823efc04167e04f5768e0e5b0c213f748847d68d595a21642d2319f7b41eb74b8b2a2d0499700e9a879b6a25a4
6
+ metadata.gz: 4165cd8d11de76e7282788e3a2748ca28f63217656987c832b17ab44a958cb403f12bc7ec570019c20d01d1a14eff88801fbe4f294181e11cd197354102a0a5c
7
+ data.tar.gz: c4b6924ceda177ea27504e705bf004bf2103ded0f060a0c6e8861f696dd0594f361854034b2da4da2d6b4d6e7fe00f9cf7b9a304cc127b64cd34797ba4b0f622
data/UPGRADE.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 1.2.5
2
+
3
+ * add read and write consistency as separate configuration values
4
+
5
+
6
+
1
7
  ## 1.2.3
2
8
 
3
9
  * bump quandl_data for babelfish
@@ -16,11 +16,13 @@ module Cassandra
16
16
 
17
17
  class Configuration
18
18
 
19
- attr_accessor :hosts, :consistency, :keyspace, :batch_size
19
+ attr_accessor :hosts, :consistency, :keyspace, :batch_size, :read_consistency, :write_consistency
20
20
 
21
21
  def initialize
22
22
  @hosts = ['localhost']
23
23
  @consistency = :all
24
+ @read_consistency = :one
25
+ @write_consistency = :one
24
26
  @batch_size = 35 * 4
25
27
  end
26
28
 
@@ -1,5 +1,5 @@
1
1
  module Quandl
2
2
  module Cassandra
3
- VERSION = '1.2.4'
3
+ VERSION = '1.2.5'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quandl_cassandra
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.4
4
+ version: 1.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Blake Hilscher