ocean-dynamo 0.7.2 → 0.7.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: 49541fd388ca84876d3b905a47f488c1cdc14ec0
4
- data.tar.gz: df596c87bf023fe40ba17db7fe7c6ec5ff1fbe74
3
+ metadata.gz: f418dfa278f8ffe7bf0cb301c225f88c308cefe0
4
+ data.tar.gz: 28ce6d6994c0a7d00853528317f93ddc7696997b
5
5
  SHA512:
6
- metadata.gz: dfec2ca5fc93f3d726acad488aef62a12b624b3c1fa4738cfc09c9138cdd55c6e56aa47a5951c59fee8ddda1303a53ed6c0ededf44f55d1347c128b847217fd1
7
- data.tar.gz: 7f616472765f09c4d82a1b8e512a691e87b22cc7b65ebd0e5dc1e16034b49f93c2a5a51f355e070bbd5af6843d36b873fe8fb409eaac3bd7990aaaa74746315b
6
+ metadata.gz: 5e834a46af4e8d65eeae8d67fa458d38f20c47b457f02c1eb0780d8c9f41b970405e57f6af9b70bd778715f0466f7c52f94102a4c55476fbc464d7644169be90
7
+ data.tar.gz: 9aec3d03f7e3587c768a7bec76048930ee9aa801932cc6ee6a8d0352a80d641a48d2af48c2a0c4856ee28391bf4f93accc1d99ac9830914aae15eb19c8ecc628
@@ -23,7 +23,7 @@ module OceanDynamo
23
23
 
24
24
 
25
25
  def compute_table_name
26
- name.pluralize.underscore
26
+ name.pluralize.underscore.gsub('/', '_')
27
27
  end
28
28
 
29
29
 
@@ -1,3 +1,3 @@
1
1
  module OceanDynamo
2
- VERSION = "0.7.2"
2
+ VERSION = "0.7.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ocean-dynamo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.2
4
+ version: 0.7.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Bengtson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-07 00:00:00.000000000 Z
11
+ date: 2015-02-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk
@@ -143,15 +143,15 @@ description: "== OceanDynamo\n\nOceanDynamo is a massively scalable Amazon Dynam
143
143
  to those of ActiveRecord. This includes\ncallbacks, exceptions and method chaining
144
144
  semantics. OceanDynamo follows this pattern \nclosely and is of course based on
145
145
  ActiveModel.\n\nThe attribute and persistence layer of OceanDynamo is modeled on
146
- that of ActiveRecord:\nthere's +save+, +save!+, +create+, +update+, +update!+, +update_attributes+,
146
+ that of ActiveRecord:\n+save+, +save!+, +create+, +update+, +update!+, +update_attributes+,
147
147
  +find_each+,\n+destroy_all+, +delete_all+ and all the other methods you're used
148
- to. The design goal \nis always to implement as much of the ActiveRecord interface
149
- as possible, without \ncompromising scalability. This makes the task of switching
150
- from SQL to no-SQL much easier.\n\nThanks to its structural similarity to ActiveRecord,
151
- OceanDynamo works with FactoryGirl.\n\nOceanDynamo uses primary indices to retrieve
152
- related table items, meaning it scales without \nlimits.\n\nSee also Ocean, a Rails
153
- framework for creating highly scalable SOAs in the cloud, in which\nocean-dynamo
154
- is used as a central component: http://wiki.oceanframework.net"
148
+ to are available. \nThe design goal is always to implement as much of the ActiveRecord
149
+ interface as possible, \nwithout compromising scalability. This makes the task of
150
+ switching from SQL to no-SQL \nmuch easier.\n\nThanks to its structural similarity
151
+ to ActiveRecord, OceanDynamo works with FactoryGirl.\n\nOceanDynamo uses primary
152
+ indices to retrieve related table items, meaning it scales without \nlimits.\n\nSee
153
+ also Ocean, a Rails framework for creating highly scalable SOAs in the cloud, in
154
+ which\nocean-dynamo is used as a central component: http://wiki.oceanframework.net"
155
155
  email:
156
156
  - peter@peterbengtson.com
157
157
  executables: []