minidynamo 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b06b99d8d9966437af6839720b1dab5d9de57dbc
4
- data.tar.gz: 6108350ec6d417410f125db2ba8cf9733c24f7ab
3
+ metadata.gz: 0f4018b504d3c53467410b58dc35f578e4a4863d
4
+ data.tar.gz: 5279c37a942c5e3480789b90cfc08ec66431a7eb
5
5
  SHA512:
6
- metadata.gz: 61c1fc642c72e4249617dbdb922d856fda64ce31d39c6d304f186c7f893a54d5d26ccd3c5aeb861f0d03dc1c17e2f330bd57aa7299434364954eda47c2273eb8
7
- data.tar.gz: 33993078342a9bfc9632121ab4484a670a1966217af25145fc8f9ab0ccc6a9f84faefcfbbbc7700d89a968a8615c78a1fd7f7d867d310ae3cbd5d5398d02c94c
6
+ metadata.gz: c27380a6d16c8a1a2117a88cc4dd7c2bb0668c92cfa8f686d12917bce35b432e21b89d1a9a54ad0422fcf10e38146f317981991fc1f41b94db8b8e4e59a4a060
7
+ data.tar.gz: 73253f1a3a6cd7e78cfcca31b0f71595ee72c1e567a2694f08b295f20d18420dbf25104b969cadcfe066a4921e48ab290452f7c6ca9ee8c0efd98cb9e0934f37
data/README.md CHANGED
@@ -49,7 +49,7 @@ class TestModel < Minidynamo::Model
49
49
  hash_key: {:my_attribute => :string},
50
50
  range_key: {:my_range_name => :string}
51
51
 
52
- initial_througput read_capacity: 5, write_capacity: 5
52
+ initial_throughput read_capacity: 5, write_capacity: 5
53
53
 
54
54
  timestamps
55
55
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.2
1
+ 0.1.3
@@ -22,7 +22,7 @@ module Minidynamo
22
22
  send method_name, key, options
23
23
  end
24
24
 
25
- def initial_througput options = {}
25
+ def initial_throughput options = {}
26
26
  self.read_capacity = options[:read_capacity]
27
27
  self.write_capacity = options[:write_capacity]
28
28
  end
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "minidynamo"
8
- s.version = "0.1.2"
8
+ s.version = "0.1.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["David Pelaez"]
12
- s.date = "2013-06-20"
12
+ s.date = "2013-10-29"
13
13
  s.description = "Monkey patch for AWS ruby SDK HashModel to support model backed by DynamoDB tables with hash-range keys. It also provides some convenience methods to define your model in a more expressive rails style."
14
14
  s.email = "info@vlipco.co"
15
15
  s.extra_rdoc_files = [
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minidynamo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Pelaez
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-06-20 00:00:00.000000000 Z
11
+ date: 2013-10-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk