riagent 0.1.0 → 0.1.1

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: 5d1d7a96d9c29d8889bf4a5dcf4203e8356a7f67
4
- data.tar.gz: bec969e749fe0625dc02521c851cf8c5ecbc738d
3
+ metadata.gz: 3335aa270002e1ad83a6d2e3dceefa0a318a62a3
4
+ data.tar.gz: bf32d5ca316e289284395f4a8bb4c5ce7a2a3729
5
5
  SHA512:
6
- metadata.gz: cd088e4272e939b1a01d9ddc5dfcf656f739c31c22af2af59257e427a62886edd7bdb11fdedeb8758f3275a7a8ff1abd7d6f80fe939af193ab3a3d3135b52912
7
- data.tar.gz: 3c051e911034f36d1b546644f6321dbcb05155cb1204ce3e85abb2384953b2247ac34e6e8eb5114714b8afd3d5647c4261d0d9ffb1867a8b986e040f0cf86fe5
6
+ metadata.gz: cec7a8da5cdc8b331bafdb1b842a74bd8bf51366bc7f4efbe2853b97ff37f6d7c37e446e476978f5ee740b05af622f5bebc8690f256289fe4aac830cdb1f0570
7
+ data.tar.gz: d1af03a20d3e0771a8297efdce462b61b2a0d60fedaae1d88909325a6773834a3648952bcf0f43b1c373760036e1b86ea438df68557266a4170c1a40a8bff9bf
@@ -1,11 +1,11 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- riagent (0.0.3)
4
+ riagent (0.1.0)
5
5
  activemodel (~> 4.0)
6
6
  activesupport (~> 4.0)
7
7
  riagent-document (= 0.0.1)
8
- riak-client (~> 2.2.1)
8
+ riak-client (~> 2.2)
9
9
 
10
10
  GEM
11
11
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -70,7 +70,7 @@ Solr queries when necessary.
70
70
  class User
71
71
  include Riagent::ActiveDocument
72
72
 
73
- collection_type :riak_kv
73
+ collection_type :riak_kv, list_keys_using: :riak_dt_set
74
74
 
75
75
  attribute :username, String
76
76
  attribute :email, String
@@ -37,7 +37,6 @@ module Riagent
37
37
  include Riagent::Conversion
38
38
  include Riagent::Persistence
39
39
  include Riagent::Associations
40
- extend Riagent::SearchSchema
41
40
 
42
41
  attr_accessor :source_object
43
42
  end
@@ -19,5 +19,5 @@
19
19
  ## -------------------------------------------------------------------
20
20
 
21
21
  module Riagent
22
- VERSION = "0.1.0"
22
+ VERSION = "0.1.1"
23
23
  end
@@ -24,7 +24,7 @@ require_relative 'blog_post'
24
24
  class User
25
25
  include Riagent::ActiveDocument
26
26
 
27
- collection_type :riak_kv
27
+ collection_type :riak_kv, list_keys_using: :riak_dt_set
28
28
 
29
29
  # Explicit attributes
30
30
  # key is an implied attribute, present in all ActiveDocument instances
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: riagent
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitri Zagidulin