embulk-output-redisWithExpires 0.1.0 → 0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2b1b3184af855efde7c4b6065a80d1721d42a5e6c0d53ddea275eef1e199ca41
4
- data.tar.gz: 0ade5c9580c014a100e9f306c070140f407d3346458f3d6298a231d6fe1f9dba
3
+ metadata.gz: bdd0eb25698fa2171a6c8b6eb33f5443374365caf14bb2bf58a52f0c3376bae5
4
+ data.tar.gz: 7f61b8900326b4ffd766702cd40e568324af428d0b3214f303ce6459461831d1
5
5
  SHA512:
6
- metadata.gz: c590e9e39c64bb9ea952328aeecc5a165fabb54447d0a5cbd8f7d153f1fd53491b18068367ed2334dfb72f948a6c6f088ed04fcb1b3b5dfb220bfbe4ef64b423
7
- data.tar.gz: 0ff389a79a4da38fe2cc1015764eab3d3c8cf82c2bb7fde856b50ea09f551cc06446c65fbdf560261a43cc46044a0de8a29350e5eba07c8dbc85eeb1f7f12018
6
+ metadata.gz: 9f06dd92e1d24d885817b4d72e0390d546cd090dc1ff88d360c47320debc02993290269668ce8e53e76d4b3c52948942f5b65c627de0f8daba57996dc3b90481
7
+ data.tar.gz: d1161bfcb506bac139f5b71fd9777f5a7677b6749b63693cc91f3b89e82248d0a29484f67490c909cabe5af452dc67180b85b4aaf557571de39e4ce87bdddcf3
@@ -0,0 +1 @@
1
+ *.gem
data/README.md CHANGED
@@ -25,7 +25,7 @@ Thanks for komamitsu, origin version: https://github.com/komamitsu/embulk-output
25
25
 
26
26
  ```yaml
27
27
  out:
28
- type: redis
28
+ type: redisWithExpires
29
29
  host: localhost
30
30
  port: 6379
31
31
  db: 0
@@ -1,12 +1,12 @@
1
1
 
2
2
  Gem::Specification.new do |gem|
3
3
  gem.name = "embulk-output-redisWithExpires"
4
- gem.version = "0.1.0"
4
+ gem.version = "0.1.1"
5
5
 
6
6
  gem.summary = %q{Embulk output plugins for Redis with expires}
7
7
  gem.description = gem.summary
8
- gem.authors = ["sangbae kang"]
9
- gem.email = ["sb.kang@purple.io"]
8
+ gem.authors = ["sangbae kang", "inmo Hwang"]
9
+ gem.email = ["sb.kang@purple.io", "im.hwang@purple.io"]
10
10
  gem.license = "Apache 2.0"
11
11
  gem.homepage = "https://github.com/typeon/embulk-output-redisWithExpires"
12
12
 
@@ -5,7 +5,7 @@ module Embulk
5
5
  require 'json'
6
6
  require 'set'
7
7
 
8
- Plugin.register_output('redis', self)
8
+ Plugin.register_output('redisWithExpires', self)
9
9
 
10
10
  def self.transaction(config, schema, processor_count, &control)
11
11
  task = {
metadata CHANGED
@@ -1,10 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: embulk-output-redisWithExpires
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - sangbae kang
8
+ - inmo Hwang
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
@@ -55,10 +56,12 @@ dependencies:
55
56
  description: Embulk output plugins for Redis with expires
56
57
  email:
57
58
  - sb.kang@purple.io
59
+ - im.hwang@purple.io
58
60
  executables: []
59
61
  extensions: []
60
62
  extra_rdoc_files: []
61
63
  files:
64
+ - ".gitignore"
62
65
  - Gemfile
63
66
  - LICENSE
64
67
  - README.md