senro 0.5.0 → 0.5.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: d94e75ecd5f2b2c7b2afac024d95237591d787fd38b9755e12a61f6e98ff02f1
4
- data.tar.gz: 0af5eab5d16b90f97e081748a659815a6f784b3e71ce1672fa8b7ffc789fb9a1
3
+ metadata.gz: 1dafead71a8fef9c24f9fb7958d039ddfab04b562a13f18aebcfd09272b494ec
4
+ data.tar.gz: 612637562f4240514d3cf3ab662654f9bf154f3f3d84b46a3ffa4f9b834d31a4
5
5
  SHA512:
6
- metadata.gz: 6a142cbce0765904db4216d756f300c30c8f8dcd6665f190fa2a89aeefbe7d090973e09d5e782507b3537968ad93bb2ba01f6c2be3f403d0b311d50bacbc8d07
7
- data.tar.gz: 8a360ec178d62a07aa095fd88e97287036e2f8756303bd968d805a6cdc0f829081a8f3132510bc74e33534f9e78aaf2ad03bd4b989930eb9e24be2e34ac548df
6
+ metadata.gz: 9b0f64261e6d93bc3453fff4be06419ce73fcb06c94f8b67b4fd907e77b33971b496af8cc8c2dd5b1f4317b0780fe1a7060e17e7fe9381140224b9d508ca742e
7
+ data.tar.gz: 2dccd19959f44c0a4c45ef4fa02448ba9e81e243a308e15b63f8877ee12229c83658ccab10440f66894031e67c8912b5f25096e4af84dcd59ec28d1f14514e6d
@@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
 
9
9
  ---
10
10
 
11
+ ## [0.5.1] - 2020-04-16
12
+ ### Fixed
13
+ - [#8](https://github.com/walkersumida/senro/pull/8) Fix a datetime status bug
14
+
11
15
  ## [0.5.0] - 2020-04-16
12
16
  ### Changed
13
17
  - [#7](https://github.com/walkersumida/senro/pull/7) Change return values from string to hash
@@ -33,7 +33,7 @@ module Senro
33
33
  elements = param.split(' ')
34
34
  elements.each_with_object(data) do |ele, h|
35
35
  if ele.include? ':'
36
- ary = ele.split(':')
36
+ ary = ele.split(':', 2)
37
37
  h[:status][ary[0].underscore.to_sym] =
38
38
  Array(h[:status][ary[0].underscore.to_sym]) << ary[1]
39
39
  else
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Senro
4
- VERSION = '0.5.0'
4
+ VERSION = '0.5.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: senro
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - WalkerSumida