embulk-output-vertica 0.2.0 → 0.2.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
  SHA1:
3
- metadata.gz: 4f73299beb951f703ae4b6cab3dee30f85ac7314
4
- data.tar.gz: 720bc9331a6dba8460f0053563592fd9e3be5071
3
+ metadata.gz: 029f79ff3745eb91ab2c0264ff790d68085b5d87
4
+ data.tar.gz: 0c99619a1e3cfb88512c4532fa4267c17d685754
5
5
  SHA512:
6
- metadata.gz: 1ec6d31b3b118e1697aa4e6ead1750f44ce2e1c15fc8be33d3c61fa2b476d991124a32c9a14e4f27cc8f8a674028c172d22a9149c2eddff2ba53a33ac83a58a5
7
- data.tar.gz: ede9307074e8d52d932614d0d0c9338dae8abbbc829fe7754ddf4a88074b7475f2d83384f36e1ea4c29ef8f8506f595302ca28996566779555607510b831d842
6
+ metadata.gz: d74d79bd1e344d7f6c740c7f53e8c783ed52125bfe4340fa77e522714a6e15731d6ef77345a063dd15658cb7feb8fffa6b1fa4f471495c9202228dec43d1dff8
7
+ data.tar.gz: 891858f038acc6ef7d9155b2532c88a598377c52aa899219474c9091056d1374afac9a306197b2c7438c399b7dab06ce9ebaa6d68ab3510b8d45f4bb8da167af
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # 0.2.1 (2015/07/24)
2
+
3
+ Fixes:
4
+
5
+ * Fix to support timezone 'UTC'
6
+
1
7
  # 0.2.0 (2015/07/24)
2
8
 
3
9
  Enhancements:
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "embulk-output-vertica"
3
- spec.version = "0.2.0"
3
+ spec.version = "0.2.1"
4
4
  spec.authors = ["eiji.sekiya", "Naotoshi Seo"]
5
5
  spec.email = ["eiji.sekiya.0326@gmail.com", "sonots@gmail.com"]
6
6
  spec.summary = "Vertica output plugin for Embulk"
@@ -113,7 +113,7 @@ module Embulk
113
113
  def get_zone_offset(timezone)
114
114
  if NUMERIC_PATTERN === timezone
115
115
  Time.zone_offset(timezone)
116
- elsif NAME_PATTERN === timezone
116
+ elsif NAME_PATTERN === timezone || 'UTC' == timezone
117
117
  tz = TZInfo::Timezone.get(timezone)
118
118
  tz.period_for_utc(Time.now).utc_total_offset
119
119
  else
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: embulk-output-vertica
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - eiji.sekiya