dynomite 1.1.0 → 1.1.1
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/CHANGELOG.md +3 -0
- data/README.md +2 -0
- data/lib/dynomite/item.rb +7 -0
- data/lib/dynomite/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bfae7abac0c8aa642ef93bde33f936415bbd4b51ee6dde84585e3cae63bef118
|
|
4
|
+
data.tar.gz: 37160a6a7e0b36463fa4702c491ad177c10aa45c19bb474b5533d2e96c24b8e4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c228bf5f39aca9fa1efbb889bbdf6f339c8874efe7b8669f94f11291219659dc7f8ff194bb3ff6b93b3513b5f67f04d9e9aa3d7be2ae480f9837378f85e68eab
|
|
7
|
+
data.tar.gz: e78f78984b046fb167a9f0ca6ef8b99be104b1f95648bd03863175b80517b342c4aed2cbaf1f39a5f24b286d299239de10f2e88ca786d70479e0a9899419c763
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
|
5
5
|
|
|
6
|
+
## [1.1.1]
|
|
7
|
+
- #6 from patchkit-net/feature/table-count: add Item.count
|
|
8
|
+
|
|
6
9
|
## [1.1.0]
|
|
7
10
|
- Merge pull request #5 from tongueroo/fix-index-creation
|
|
8
11
|
- fix index creation dsl among other things
|
data/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Dynomite
|
|
2
2
|
|
|
3
|
+
NOTE: Am looking for maintainers to help with this gem. Send me an email! Also [dynamoid](https://github.com/Dynamoid/dynamoid) seems like a good option that should be considered delegating to or straight using. Learning on delegation so we can have better default behavior for a DynamoDB model layer for Jets.
|
|
4
|
+
|
|
3
5
|
A simple wrapper library to make DynamoDB usage a little more friendly. The modeling is ActiveRecord-ish but not exactly because DynamoDB is a different type of database. Examples below explain it best:
|
|
4
6
|
|
|
5
7
|
## Examples
|
data/lib/dynomite/item.rb
CHANGED
data/lib/dynomite/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dynomite
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-01-
|
|
11
|
+
date: 2019-01-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|