ocean-dynamo 0.3.7 → 0.3.8
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 +4 -4
- data/lib/ocean-dynamo/version.rb +1 -1
- metadata +20 -19
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a8d0a72119872cc64002656244d0340796eac76b
|
|
4
|
+
data.tar.gz: febbde29e54a570653a6ada2f55a92c272491335
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b7f8dd862bfa88185538352545016d18345fe7eb160338a16dd959b0290c7be9ccdd255742886e69ebd2556b53bb4cd7bf9595d4f97cf583e9770bc087b23243
|
|
7
|
+
data.tar.gz: c1aa7ec59bbe3990e9c2ee981ebea6d4742e95b750128227e05d10f897330f172a131e5400cede0d82ce71ff300423bf49d032991032b0b8422c81e952029b54
|
data/lib/ocean-dynamo/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ocean-dynamo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Bengtson
|
|
@@ -136,23 +136,23 @@ dependencies:
|
|
|
136
136
|
- - ~>
|
|
137
137
|
- !ruby/object:Gem::Version
|
|
138
138
|
version: 0.1.3
|
|
139
|
-
description: "== OceanDynamo\n\
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
models
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
+
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
139
|
+
description: "== OceanDynamo\n\nOceanDynamo is a massively scalable Amazon DynamoDB
|
|
140
|
+
near drop-in replacement for \nActiveRecord.\n\nAs one important use case for OceanDynamo
|
|
141
|
+
is to facilitate the conversion of SQL based\nActiveRecord models to DynamoDB based
|
|
142
|
+
models, it is important that the syntax and semantics\nof OceanDynamo's operations
|
|
143
|
+
are as close as possible to those of ActiveRecord, including\ncallbacks, exceptions
|
|
144
|
+
and support methods. Ocean-dynamo follows this pattern closely and\nis of course
|
|
145
|
+
based on ActiveModel.\n\nThe attribute and persistence layer of OceanDynamo is modeled
|
|
146
|
+
on that of ActiveRecord:\nthere's +save+, +save!+, +create+, +update+, +update!+,
|
|
147
|
+
+update_attributes+ and all the other\nmethods you're used to. The design goal is
|
|
148
|
+
always to implement as much as possible of the\nActiveRecord interface, without
|
|
149
|
+
sacrificing scalability. This makes the task of switching from\nSQL to no-SQL much
|
|
150
|
+
easier.\n\nOceanDynamo will use secondary indices to retrieve related table items,
|
|
151
|
+
\nwhich means OceanDynamo tables will scale without limits.\n\nThanks to its structural
|
|
152
|
+
similarity to ActiveRecord, OceanDynamo works with FactoryGirl.\nTo facilitate testing,
|
|
153
|
+
future versions will keep track of and delete instances after tests.\n\nSee also
|
|
154
|
+
Ocean, a Rails framework for creating highly scalable SOAs in the cloud, in which\nocean-dynamo
|
|
155
|
+
is used as a central component: http://wiki.oceanframework.net"
|
|
156
156
|
email:
|
|
157
157
|
- peter@peterbengtson.com
|
|
158
158
|
executables: []
|
|
@@ -200,5 +200,6 @@ rubyforge_project:
|
|
|
200
200
|
rubygems_version: 2.0.7
|
|
201
201
|
signing_key:
|
|
202
202
|
specification_version: 4
|
|
203
|
-
summary:
|
|
203
|
+
summary: OceanDynamo is a massively scalable Amazon DynamoDB near drop-in replacement
|
|
204
|
+
for ActiveRecord.
|
|
204
205
|
test_files: []
|