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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/ocean-dynamo/version.rb +1 -1
  3. metadata +20 -19
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 975084c605432891920cbc7b920bc1df7bffb478
4
- data.tar.gz: c4983e9a9153f911540c6744961e3e8cdc2869aa
3
+ metadata.gz: a8d0a72119872cc64002656244d0340796eac76b
4
+ data.tar.gz: febbde29e54a570653a6ada2f55a92c272491335
5
5
  SHA512:
6
- metadata.gz: 734b7fb300b02e21ffecbbd50b968af710c29ed2a12b0f7f14e45e3e2c8d85f4542e39b25a5927ff3e8bb972ba28e00aa81e1ec405d140693ea97dd4190d6a53
7
- data.tar.gz: 8d5f39359afed90fd1ef6f6b4a7d5ee7f20d45a2fcf8e981ea586b2ed1c8a2fc590817e24c3ae2f8173351729a358c489a6545e441f04bc92834ab3d7eac4be4
6
+ metadata.gz: b7f8dd862bfa88185538352545016d18345fe7eb160338a16dd959b0290c7be9ccdd255742886e69ebd2556b53bb4cd7bf9595d4f97cf583e9770bc087b23243
7
+ data.tar.gz: c1aa7ec59bbe3990e9c2ee981ebea6d4742e95b750128227e05d10f897330f172a131e5400cede0d82ce71ff300423bf49d032991032b0b8422c81e952029b54
@@ -1,3 +1,3 @@
1
1
  module OceanDynamo
2
- VERSION = "0.3.7"
2
+ VERSION = "0.3.8"
3
3
  end
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.7
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\nThis is the OceanDynamo ruby gem, implementing a highly
140
- scalable Amazon DynamoDB near drop-in \nreplacement for ActiveRecord.\n\nAs one
141
- important use case for OceanDynamo is to facilitate the conversion of SQL based\nActiveRecord
142
- models to DynamoDB based models, it is important that the syntax and semantics\nof
143
- OceanDynamo's operations are as close as possible to those of ActiveRecord, including\ncallbacks,
144
- exceptions and support methods. Ocean-dynamo follows this pattern closely and\nis
145
- of course based on ActiveModel.\n\nThe attribute and persistence layer of OceanDynamo
146
- is modeled on that of ActiveRecord:\nthere's +save+, +save!+, +create+, +update+,
147
- +update!+, +update_attributes+ and all the other\nmethods you're used to. The design
148
- goal is always to implement as much as possible of the\nActiveRecord interface,
149
- without sacrificing scalability. This makes the task of switching from\nSQL to no-SQL
150
- much easier.\n\nOceanDynamo will use secondary indices to retrieve related table
151
- items, \nwhich means OceanDynamo tables will scale without limits.\n\nThanks to
152
- its structural similarity to ActiveRecord, OceanDynamo works with FactoryGirl.\nTo
153
- facilitate testing, future versions will keep track of and delete instances after
154
- tests.\n\nSee also Ocean, a Rails framework for creating highly scalable SOAs in
155
- the cloud, in which\nocean-dynamo is used as a central component: http://wiki.oceanframework.net"
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: This gem implements an ActiveRecord-like DynamoDB ORM class.
203
+ summary: OceanDynamo is a massively scalable Amazon DynamoDB near drop-in replacement
204
+ for ActiveRecord.
204
205
  test_files: []