dynamodb-local 0.0.1 → 0.0.2
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.md +3 -0
- data/dynamodb-local.gemspec +1 -2
- data/lib/dynamodb/local/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6113c2211f8b53f0592fa506f780d07d44254f34
|
|
4
|
+
data.tar.gz: df94baa04ad7da8956ac5672e6e4f91c0ab60655
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4d82d0311bf979ae54b99401586fb1feac80e4c72383fb848f756366c328b58fbff99bb1ba4c25ec6cf335adf9d11bcf57d1bfee6e1ff2545aba544d06050a04
|
|
7
|
+
data.tar.gz: 25a4715d2ffef364609464a83d93cb3245958dda61de44ed1d361c37cb302ff0b4da2290d2e80169252595a3d34deb3482371fcb58431c9e9f8290d06b92de3b
|
data/README.md
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
This is a simple helper gem that automaticall installs the [DynamoDB local tool](http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Tools.DynamoDBLocal.html) and provides a simple ruby wrapper binar that allows you start and stop the local DynamoDB server from the command line.
|
|
4
4
|
|
|
5
|
+
*IMPORTANT:* DynamoDB Local supports the Java Runtime Engine (JRE)
|
|
6
|
+
version 6.x or newer; it will not run on older JRE versions.
|
|
7
|
+
|
|
5
8
|
## Installation
|
|
6
9
|
|
|
7
10
|
Add this line to your application's Gemfile:
|
data/dynamodb-local.gemspec
CHANGED
|
@@ -8,8 +8,7 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = Dynamodb::Local::VERSION
|
|
9
9
|
spec.authors = ["Josh Huckabee"]
|
|
10
10
|
spec.email = ["joshhuckabee@gmail.com"]
|
|
11
|
-
spec.summary = %q{
|
|
12
|
-
spec.description = %q{Wrap AWS DynamoDB local tool}
|
|
11
|
+
spec.summary = %q{Wraps installation and usage of the AWS DynamoDB local server tool}
|
|
13
12
|
spec.homepage = "https://github.com/jhuckabee/dynamodb-local"
|
|
14
13
|
spec.license = "MIT"
|
|
15
14
|
spec.extensions = ["Rakefile"]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dynamodb-local
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Josh Huckabee
|
|
@@ -38,7 +38,7 @@ dependencies:
|
|
|
38
38
|
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '0'
|
|
41
|
-
description:
|
|
41
|
+
description:
|
|
42
42
|
email:
|
|
43
43
|
- joshhuckabee@gmail.com
|
|
44
44
|
executables:
|
|
@@ -80,6 +80,6 @@ rubyforge_project:
|
|
|
80
80
|
rubygems_version: 2.2.2
|
|
81
81
|
signing_key:
|
|
82
82
|
specification_version: 4
|
|
83
|
-
summary:
|
|
83
|
+
summary: Wraps installation and usage of the AWS DynamoDB local server tool
|
|
84
84
|
test_files: []
|
|
85
85
|
has_rdoc:
|