ocean-dynamo 0.3.5 → 0.3.6
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/README.rdoc +22 -0
- 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: 0cd2359b3446bc58b49b54a7a474b3f56448e521
|
4
|
+
data.tar.gz: b86f321aaedd45fed169a1ac3800e783bc1f091f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3cbadc18e2ceb5938ff2e61812deb64bd26a1758046f0e77265d193dde86046d074b700884ebeca2947473c86976026f64806103e1435aa7cd679a319989cb14
|
7
|
+
data.tar.gz: 1de5f1b939ef72ed95047ed039f1edd86387ab51a501ec7d5b62b29b1d9c0ed5c0a2af22c06caa1d2efc2c03dc0862a492a54a93fb33f88ab490e94e6e32c5ef
|
data/README.rdoc
CHANGED
@@ -12,6 +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
|
16
|
+
|
17
|
+
spec/dummy/config/initializers/aws.rb
|
18
|
+
|
19
|
+
to
|
20
|
+
|
21
|
+
config/initializers/aws.rb
|
22
|
+
|
23
|
+
and
|
24
|
+
|
25
|
+
spec/dummy/config/aws.yml.example
|
26
|
+
|
27
|
+
to both the following locations:
|
28
|
+
|
29
|
+
config/aws.yml.example
|
30
|
+
config/aws.ym
|
31
|
+
|
32
|
+
Enter your AWS credentials in the ''latter'' file. Eventually, there
|
33
|
+
will be a generator to copy these files for you, but for now you need to do it manually.
|
34
|
+
|
35
|
+
You also need fake_dynamo to run DynamoDB locally: see below for installation instructions.
|
36
|
+
|
15
37
|
|
16
38
|
==== Features
|
17
39
|
|
data/lib/ocean-dynamo/version.rb
CHANGED