dynamodb_framework 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +10 -0
- data/.idea/.name +1 -0
- data/.idea/.rakeTasks +7 -0
- data/.idea/dynamodb_framework.iml +35 -0
- data/.idea/encodings.xml +6 -0
- data/.idea/misc.xml +33 -0
- data/.idea/modules.xml +8 -0
- data/.idea/vcs.xml +6 -0
- data/.idea/workspace.xml +540 -0
- data/.rspec +3 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +12 -0
- data/LICENSE.txt +21 -0
- data/README.md +41 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/dynamodb_framework.gemspec +28 -0
- data/lib/dynamodb_framework/dynamodb_attributes_builder.rb +20 -0
- data/lib/dynamodb_framework/dynamodb_migration_manager.rb +75 -0
- data/lib/dynamodb_framework/dynamodb_migration_script.rb +16 -0
- data/lib/dynamodb_framework/dynamodb_repository.rb +185 -0
- data/lib/dynamodb_framework/dynamodb_store.rb +16 -0
- data/lib/dynamodb_framework/dynamodb_table_manager.rb +283 -0
- data/lib/dynamodb_framework/version.rb +3 -0
- data/lib/dynamodb_framework.rb +7 -0
- metadata +129 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 2e9e95252df3ef6139a53607ef7c4f081cca9361
|
4
|
+
data.tar.gz: 728101534d9dc54b3af16ce344932bfd9a16c6d2
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: d3d7cc9b5db6f18ded157acab9c8b136170a710ebcdd0288d06f02284bf5ba097940e82a6ad6d6a27059fc297220842d57ce9dfd2e08a5d37edb22ebdbec2d1e
|
7
|
+
data.tar.gz: ab40d678b2c080fa83cd8796837e99e86c9da5a94fb13f2088e4f4de66f368927670f7e00bc5d1bbdbb8cf7f10f8288bec621b2c7f41a9c8a1d707a85c03b1c3
|
data/.gitignore
ADDED
data/.idea/.name
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
dynamodb_framework
|
data/.idea/.rakeTasks
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<Settings><!--This file was automatically generated by Ruby plugin.
|
3
|
+
You are allowed to:
|
4
|
+
1. Remove rake task
|
5
|
+
2. Add existing rake tasks
|
6
|
+
To add existing rake tasks automatically delete this file and reload the project.
|
7
|
+
--><RakeGroup description="" fullCmd="" taksId="rake"><RakeTask description="Build dynamodb_framework-0.1.0.gem into the pkg directory" fullCmd="build" taksId="build" /><RakeTask description="Remove any temporary products" fullCmd="clean" taksId="clean" /><RakeTask description="Remove any generated files" fullCmd="clobber" taksId="clobber" /><RakeTask description="Build and install dynamodb_framework-0.1.0.gem into system gems" fullCmd="install" taksId="install" /><RakeGroup description="" fullCmd="" taksId="install"><RakeTask description="Build and install dynamodb_framework-0.1.0.gem into system gems without network access" fullCmd="install:local" taksId="local" /></RakeGroup><RakeTask description="Create tag v0.1.0 and build and push dynamodb_framework-0.1.0.gem to Rubygems" fullCmd="release[remote]" taksId="release[remote]" /><RakeTask description="" fullCmd="default" taksId="default" /><RakeTask description="" fullCmd="release" taksId="release" /><RakeGroup description="" fullCmd="" taksId="release"><RakeTask description="" fullCmd="release:guard_clean" taksId="guard_clean" /><RakeTask description="" fullCmd="release:rubygem_push" taksId="rubygem_push" /><RakeTask description="" fullCmd="release:source_control_push" taksId="source_control_push" /></RakeGroup></RakeGroup></Settings>
|
@@ -0,0 +1,35 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
3
|
+
<component name="FacetManager">
|
4
|
+
<facet type="gem" name="Ruby Gem">
|
5
|
+
<configuration>
|
6
|
+
<option name="GEM_APP_ROOT_PATH" value="$MODULE_DIR$" />
|
7
|
+
<option name="GEM_APP_TEST_PATH" value="" />
|
8
|
+
<option name="GEM_APP_LIB_PATH" value="$MODULE_DIR$/lib" />
|
9
|
+
</configuration>
|
10
|
+
</facet>
|
11
|
+
</component>
|
12
|
+
<component name="NewModuleRootManager">
|
13
|
+
<content url="file://$MODULE_DIR$" />
|
14
|
+
<orderEntry type="inheritedJdk" />
|
15
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
16
|
+
<orderEntry type="library" scope="PROVIDED" name="activesupport (v4.2.5.2, rbenv: 2.1.5) [gem]" level="application" />
|
17
|
+
<orderEntry type="library" scope="PROVIDED" name="aws-sdk-core (v2.2.28, rbenv: 2.1.5) [gem]" level="application" />
|
18
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.11.2, rbenv: 2.1.5) [gem]" level="application" />
|
19
|
+
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.2.5, rbenv: 2.1.5) [gem]" level="application" />
|
20
|
+
<orderEntry type="library" scope="PROVIDED" name="i18n (v0.7.0, rbenv: 2.1.5) [gem]" level="application" />
|
21
|
+
<orderEntry type="library" scope="PROVIDED" name="jmespath (v1.1.3, rbenv: 2.1.5) [gem]" level="application" />
|
22
|
+
<orderEntry type="library" scope="PROVIDED" name="json (v1.8.3, rbenv: 2.1.5) [gem]" level="application" />
|
23
|
+
<orderEntry type="library" scope="PROVIDED" name="minitest (v5.8.4, rbenv: 2.1.5) [gem]" level="application" />
|
24
|
+
<orderEntry type="library" scope="PROVIDED" name="rack (v1.6.4, rbenv: 2.1.5) [gem]" level="application" />
|
25
|
+
<orderEntry type="library" scope="PROVIDED" name="rack-test (v0.6.3, rbenv: 2.1.5) [gem]" level="application" />
|
26
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v10.5.0, rbenv: 2.1.5) [gem]" level="application" />
|
27
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec (v3.4.0, rbenv: 2.1.5) [gem]" level="application" />
|
28
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.4.4, rbenv: 2.1.5) [gem]" level="application" />
|
29
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.4.0, rbenv: 2.1.5) [gem]" level="application" />
|
30
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.4.1, rbenv: 2.1.5) [gem]" level="application" />
|
31
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.4.1, rbenv: 2.1.5) [gem]" level="application" />
|
32
|
+
<orderEntry type="library" scope="PROVIDED" name="thread_safe (v0.3.5, rbenv: 2.1.5) [gem]" level="application" />
|
33
|
+
<orderEntry type="library" scope="PROVIDED" name="tzinfo (v1.2.2, rbenv: 2.1.5) [gem]" level="application" />
|
34
|
+
</component>
|
35
|
+
</module>
|
data/.idea/encodings.xml
ADDED
data/.idea/misc.xml
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ProjectInspectionProfilesVisibleTreeState">
|
4
|
+
<entry key="Project Default">
|
5
|
+
<profile-state>
|
6
|
+
<expanded-state>
|
7
|
+
<State>
|
8
|
+
<id />
|
9
|
+
</State>
|
10
|
+
<State>
|
11
|
+
<id>Ruby</id>
|
12
|
+
</State>
|
13
|
+
</expanded-state>
|
14
|
+
<selected-state>
|
15
|
+
<State>
|
16
|
+
<id>RubyConvertAllHashesInFileInspections</id>
|
17
|
+
</State>
|
18
|
+
</selected-state>
|
19
|
+
</profile-state>
|
20
|
+
</entry>
|
21
|
+
</component>
|
22
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
23
|
+
<OptionsSetting value="true" id="Add" />
|
24
|
+
<OptionsSetting value="true" id="Remove" />
|
25
|
+
<OptionsSetting value="true" id="Checkout" />
|
26
|
+
<OptionsSetting value="true" id="Update" />
|
27
|
+
<OptionsSetting value="true" id="Status" />
|
28
|
+
<OptionsSetting value="true" id="Edit" />
|
29
|
+
<ConfirmationsSetting value="0" id="Add" />
|
30
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
31
|
+
</component>
|
32
|
+
<component name="ProjectRootManager" version="2" project-jdk-name="rbenv: 2.1.5" project-jdk-type="RUBY_SDK" />
|
33
|
+
</project>
|
data/.idea/modules.xml
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ProjectModuleManager">
|
4
|
+
<modules>
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/dynamodb_framework.iml" filepath="$PROJECT_DIR$/.idea/dynamodb_framework.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
|
+
</project>
|