appfuel 0.6.4 → 0.6.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/appfuel/storage/dynamodb/adapter.rb +30 -0
- data/lib/appfuel/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f74bbf3635efafded1ca260d1281ba756b1eee15
|
4
|
+
data.tar.gz: 25ed32bc0ddaf5b13338a600433bbb916cf3fcfd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ee094890d79beb03dca5b6c4e1d6876d658424386d1afd190729bdf3e836f97306505a0d04f3eff9fcc08ab1fa59e7a83bb865c7cf33a963ca30c6a6befceb3
|
7
|
+
data.tar.gz: 0363de28ffd4385cc8cd490f35f9567d972ca1cc945a139d7bd6895d26b69e4425ff1a4b877c9914bfe4a21eb60f2c6536b0ecd3f364c5b84c9bde0695ada289
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. (Pending ap
|
|
5
5
|
|
6
6
|
|
7
7
|
# Releases
|
8
|
+
## [[0.6.5]](https://github.com/rsb/appfuel/releases/tag/0.6.5) 2017-08-21
|
9
|
+
### Added
|
10
|
+
- basic table query interface for dynamodb nosql adapter
|
11
|
+
|
8
12
|
## [[0.6.4]](https://github.com/rsb/appfuel/releases/tag/0.6.4) 2017-08-18
|
9
13
|
### Fixed
|
10
14
|
- invalid reference to `feature_name` in action's `dispatch`
|
@@ -131,6 +131,24 @@ module Appfuel
|
|
131
131
|
|
132
132
|
def select_index(key, select, key_expr, values = {})
|
133
133
|
params = select_index_params(key, select, key_expr, values)
|
134
|
+
manual_query(params)
|
135
|
+
end
|
136
|
+
|
137
|
+
def basic_table_query_params(attrs_returned, key_expr, values = {})
|
138
|
+
create_table_hash(
|
139
|
+
table_name: table_name,
|
140
|
+
select: query_select_map(attrs_returned),
|
141
|
+
key_condition_expression: key_expr,
|
142
|
+
expression_attribute_values: values
|
143
|
+
)
|
144
|
+
end
|
145
|
+
|
146
|
+
def basic_table_query(attrs_returned, key_expr, values = {})
|
147
|
+
params = basic_table_query_params(attrs_returned, key_expr, values)
|
148
|
+
manual_query(params)
|
149
|
+
end
|
150
|
+
|
151
|
+
def manual_query(params)
|
134
152
|
client.query(params)
|
135
153
|
end
|
136
154
|
|
@@ -139,6 +157,18 @@ module Appfuel
|
|
139
157
|
client.put_item(params)
|
140
158
|
end
|
141
159
|
|
160
|
+
def batch_put(list)
|
161
|
+
cards = list.map do |card|
|
162
|
+
{ put_request: { item: card } }
|
163
|
+
end
|
164
|
+
|
165
|
+
payload = {
|
166
|
+
request_items: { table_name => cards }
|
167
|
+
}
|
168
|
+
|
169
|
+
client.batch_write_item(payload)
|
170
|
+
end
|
171
|
+
|
142
172
|
def get(hash_value, range_value = nil)
|
143
173
|
result = get_item(hash_value, range_value)
|
144
174
|
return false if result.item.nil?
|
data/lib/appfuel/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: appfuel
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robert Scott-Buccleuch
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-08-
|
11
|
+
date: 2017-08-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|