ocean-dynamo 0.3.6 → 0.3.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.rdoc +10 -9
- data/lib/ocean-dynamo/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 975084c605432891920cbc7b920bc1df7bffb478
|
4
|
+
data.tar.gz: c4983e9a9153f911540c6744961e3e8cdc2869aa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 734b7fb300b02e21ffecbbd50b968af710c29ed2a12b0f7f14e45e3e2c8d85f4542e39b25a5927ff3e8bb972ba28e00aa81e1ec405d140693ea97dd4190d6a53
|
7
|
+
data.tar.gz: 8d5f39359afed90fd1ef6f6b4a7d5ee7f20d45a2fcf8e981ea586b2ed1c8a2fc590817e24c3ae2f8173351729a358c489a6545e441f04bc92834ab3d7eac4be4
|
data/README.rdoc
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
== ocean-dynamo
|
2
2
|
|
3
|
-
|
4
|
-
|
3
|
+
OceanDynamo is a massively scalable Amazon DynamoDB near drop-in replacement for
|
4
|
+
ActiveRecord.
|
5
5
|
|
6
6
|
OceanDynamo requires Ruby 2.0 and Ruby on Rails 4.0.0 or later.
|
7
7
|
|
@@ -12,27 +12,28 @@ OceanDynamo requires Ruby 2.0 and Ruby on Rails 4.0.0 or later.
|
|
12
12
|
|
13
13
|
gem install ocean-dynamo
|
14
14
|
|
15
|
-
Then, copy
|
15
|
+
Then, locate the gem's directory and copy
|
16
16
|
|
17
17
|
spec/dummy/config/initializers/aws.rb
|
18
18
|
|
19
|
-
to
|
19
|
+
to your project's
|
20
20
|
|
21
21
|
config/initializers/aws.rb
|
22
22
|
|
23
|
-
|
23
|
+
Also copy
|
24
24
|
|
25
25
|
spec/dummy/config/aws.yml.example
|
26
26
|
|
27
|
-
to both the following locations:
|
27
|
+
to both the following locations in your project:
|
28
28
|
|
29
29
|
config/aws.yml.example
|
30
|
-
config/aws.
|
30
|
+
config/aws.yml
|
31
31
|
|
32
|
-
Enter your AWS credentials in the
|
32
|
+
Enter your AWS credentials in the latter file. Eventually, there
|
33
33
|
will be a generator to copy these files for you, but for now you need to do it manually.
|
34
34
|
|
35
|
-
You also need fake_dynamo to run DynamoDB locally: see below for installation instructions.
|
35
|
+
You also need +fake_dynamo+ to run DynamoDB locally: see below for installation instructions.
|
36
|
+
NB: You do not need an Amazon AWS account to run OceanDynamo locally.
|
36
37
|
|
37
38
|
|
38
39
|
==== Features
|
data/lib/ocean-dynamo/version.rb
CHANGED