embulk-plugin-redis-url 0.2.0 → 0.3.0

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
  SHA1:
3
- metadata.gz: bb328779e704f4e33b0411e31c82853c4638f707
4
- data.tar.gz: 9348bb1c7a323d783679a2141a41ba8d393b239d
3
+ metadata.gz: b97423b367fe9075e8cc5deb5089dc46d2c1d3dd
4
+ data.tar.gz: 2bbf54cec6d6e3bbf51da0c54a2cb545201ec446
5
5
  SHA512:
6
- metadata.gz: 65e36ae751469c2e37199c091f29c8e2d05d1fc5645d3d1c9f68c3b4fa86fd787fdee4b35800d2bad9bf9b3b6cca55cfe48a075e86e796368da1c61aca08a135
7
- data.tar.gz: bbf9df820775e7ba898320f667a75060fec1ff5bc4af5400fe83e72b1a63135e24a2e6dbef3fb66bb1c6a50e5d94291a4e2e9dbc26c2bd3229d71cdd45f63d3b
6
+ metadata.gz: 1dc05a7f11392afbcd6839503c91e0471cfb07f525d3f51ac97bef31a5b30f18bd8086275a4004254efc561a8ce710fb7f6773ab4c64c81f6292f1dd7cb4234b
7
+ data.tar.gz: 7f12b8f2759a9b5727e1775280910eade19a6dc87a72dd66fa29cdb79e1f30ba5639deca20a8debc50f0bdec4e8e8f6acb8e51896bca6dbd57d16e1588273015
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- embulk-plugin-redis-url (0.1.0)
4
+ embulk-plugin-redis-url (0.3.0)
5
5
  redis (>= 3.0.5)
6
6
 
7
7
  GEM
@@ -1,7 +1,7 @@
1
1
 
2
2
  Gem::Specification.new do |gem|
3
3
  gem.name = "embulk-plugin-redis-url"
4
- gem.version = "0.2.0"
4
+ gem.version = "0.3.0"
5
5
 
6
6
  gem.summary = %q{Embulk plugin for Redis (with URL connection string support)}
7
7
  gem.description = gem.summary
@@ -8,8 +8,8 @@ module Embulk
8
8
  def self.transaction(config, schema, processor_count, &control)
9
9
  task = {
10
10
  'host' => config.param('host', :string, :default => 'localhost'),
11
- 'port' => config.param('port', :int, :default => 6379),
12
- 'db' => config.param('db', :int, :default => 0),
11
+ 'port' => config.param('port', :integer, :default => 6379),
12
+ 'db' => config.param('db', :integer, :default => 0),
13
13
  'key' => config.param('key', :string),
14
14
  'url' => config.param('url', :string),
15
15
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: embulk-plugin-redis-url
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mitsunori Komatsu
@@ -66,8 +66,8 @@ files:
66
66
  - README.md
67
67
  - Rakefile
68
68
  - embulk-plugin-redis.gemspec
69
- - lib/embulk/input_redis.rb
70
- - lib/embulk/output_redis.rb
69
+ - lib/embulk/input/redis.rb
70
+ - lib/embulk/output/redis.rb
71
71
  homepage: https://github.com/FunnelEnvy/embulk-plugin-redis
72
72
  licenses:
73
73
  - Apache 2.0