mince_dynamo_db 2.0.0.pre.3 → 2.0.0.pre.4

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.
@@ -8,7 +8,7 @@ module MinceDynamoDb # :nodoc:
8
8
  module Interface
9
9
  # Not yet implemented
10
10
  def self.update_field_with_value(collection_name, primary_key_value, field_name, new_value)
11
- item = find(collection_name, primary_key_identifier, primary_key_value)
11
+ item = find(collection_name, primary_key, primary_key_value)
12
12
  item.set(field_name => new_value)
13
13
  end
14
14
 
@@ -36,7 +36,7 @@ module MinceDynamoDb # :nodoc:
36
36
  # primary key.
37
37
  #
38
38
  # @return [String] the name of the primary key field.
39
- def self.primary_key_identifier
39
+ def self.primary_key
40
40
  Config.primary_key
41
41
  end
42
42
 
@@ -9,7 +9,7 @@ module MinceDynamoDb
9
9
  end
10
10
 
11
11
  def self.patch
12
- "0.pre.3"
12
+ "0.pre.4"
13
13
  end
14
14
  end
15
15
 
@@ -35,7 +35,7 @@ describe MinceDynamoDb::Interface do
35
35
  primary_key_value = mock("id of record")
36
36
  field_name = mock 'field name'
37
37
  new_value = mock 'new value'
38
- items.stub(:where).with(described_class.primary_key_identifier.to_s => primary_key_value).and_return([return_data])
38
+ items.stub(:where).with(described_class.primary_key.to_s => primary_key_value).and_return([return_data])
39
39
 
40
40
  attributes.should_receive(:set).with(field_name => new_value)
41
41
 
@@ -47,7 +47,7 @@ describe MinceDynamoDb::Interface do
47
47
  primary_key_value = mock("id of record")
48
48
  field_name = mock 'field name'
49
49
  new_value = mock 'new value'
50
- items.stub(:where).with(described_class.primary_key_identifier.to_s => primary_key_value).and_return([return_data])
50
+ items.stub(:where).with(described_class.primary_key.to_s => primary_key_value).and_return([return_data])
51
51
 
52
52
  attributes.should_receive(:set).with(field_name => new_value)
53
53
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mince_dynamo_db
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.pre.3
4
+ version: 2.0.0.pre.4
5
5
  prerelease: 6
6
6
  platform: ruby
7
7
  authors:
@@ -173,7 +173,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
173
173
  version: '0'
174
174
  segments:
175
175
  - 0
176
- hash: -2546190668435705286
176
+ hash: 3357786729933259845
177
177
  required_rubygems_version: !ruby/object:Gem::Requirement
178
178
  none: false
179
179
  requirements: